@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff3b3b;
    /* For small accents if needed */
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Navbar Styling */
.navbar {
    padding: 1rem 0;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
}

.navbar-search-container {
    position: relative;
    max-width: 250px;
}

.navbar-search {
    border-radius: 50px;
    padding-left: 35px;
    background: #f1f3f5;
    border: none;
    font-size: 0.9rem;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.btn-login-reg {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-register {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('../img/hero_banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
}

.hero-search-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2.5rem;
    max-width: 450px;
}

.hero-search-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-search-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Section Containers */
.section-wrapper {
    background: #f1f3f5;
    padding: 4rem 2rem;
    border-radius: 40px;
    margin-bottom: 4rem;
}

.section-title-white {
    color: white;
    background: #adb5bd;
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Vehicle Cards */
.vehicle-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    color: #999;
}

.vehicle-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.vehicle-info {
    text-align: center;
}

.vehicle-type {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.vehicle-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 5px 0;
}

.vehicle-meta {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}

.vehicle-tags {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.tag-badge {
    background: #f8f9fa;
    color: #666;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.vehicle-price {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.btn-view-details {
    background: #000;
    color: white;
    width: 100%;
    border-radius: 50px;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* How It Works Header */
.how-it-works-section {
    padding: 5rem 0;
    text-align: center;
}

.how-it-works-section h2 {
    font-weight: 700;
    letter-spacing: 1px;
}

/* How It Works Circles */
.step-item {
    text-align: center;
    margin-bottom: 2rem;
}

.step-circle {
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    color: white;
}

.step-circle i {
    font-size: 2.5rem;
}

.step-number-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #000;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: #000;
    color: white;
    border-radius: 30px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    margin-top: 50px;
}

.testimonial-user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid white;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

/* Quote Banner Section */
.quote-banner-section {
    position: relative;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    /* background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover; */
    background: url('../img/Sell\ Your\ Vehicle\ CTA\ Section.png') no-repeat center center/cover;
}

.quote-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.quote-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-banner-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.btn-quote-large {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    text-align: center;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.brand-logo-item img {
    height: 40px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Blog Section */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.blog-img-container {
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    margin: 10px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
}

/* Detailed Footer */
.main-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Newsletter Form Styles */
.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
    margin-top: 1rem;
    /* flex-direction: column; */
    gap: 10px;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 15px;
    width: 100%;
    font-size: 0.85rem;
}

.newsletter-input:focus {
    outline: none;
}

.btn-subscribe {
    background: white;
    color: black;
    border-radius: 50px;
    border: none;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background: #f0f0f0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.payment-methods {
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Hero Section Styles (if needed elsewhere) */
.form-select-custom {
    background: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.btn-hero {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
    border: none;
}

.btn-browse {
    background: #000;
    color: white;
}

.btn-sell {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Carousel Control Styling */
.carousel-control-prev-custom,
.carousel-control-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    color: #000;
    text-decoration: none;
}

.carousel-control-prev-custom {
    left: -20px;
}

.carousel-control-next-custom {
    right: -20px;
}

/* Car Listing Page Styles */
.listing-header {
    background: #fff;
    padding: 2rem 0;
}

.listing-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.listing-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.filter-sidebar {
    background: #fff;
    padding: 1rem;
}

.filter-item {
    background: #f1f3f5;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: none;
    overflow: hidden;
}

.filter-header {
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    text-transform: uppercase;
}

.filter-content {
    padding: 0 15px 15px;
    font-size: 0.9rem;
}

.btn-sort {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: white;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Compare Toggle */
.compare-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.compare-toggle input {
    width: 12px;
    height: 12px;
}

.listing-car-card {
    border: 3px solid #000;
    border-radius: 30px;
}

/* Pagination / Load More */
.load-more-container {
    padding: 3rem 0;
    text-align: center;
}

.dot-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.dot-pagination .dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
}

.dot-pagination .dot.active {
    background: #ccc;
}

.btn-load-more {
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 800px;
    background: url('../img/hero_banner.png') center/cover no-repeat;
    /* Ensure this path is correct or user preference */
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-container {
    background: rgba(80, 80, 80, 0.4);
    /* Darker glass base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Inputs - Glass Pills */
.contact-form-input,
.contact-form-select,
.contact-form-textarea,
.contact-form-file {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    /* Pill shape */
    padding: 12px 25px;
    color: white;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form-textarea {
    border-radius: 20px;
    /* Rounded rect for textarea */
    min-height: 120px;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-select option {
    background: #222;
    color: white;
}

/* File Upload Specifics */
.contact-form-file {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.contact-form-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Checkbox */
.contact-form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-form-checkbox input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: #fff;
    cursor: pointer;
}

/* Submit Button */
.btn-submit-contact {
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Contact Info Section - Floating Pills */
.contact-info-section {
    position: relative;
    padding: 6rem 0;
    background: #fdfdfd;
}

.contact-info-card {
    background: white;
    border-radius: 50px;
    /* Pill shape card */
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-title {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.contact-info-text {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* FAQ Section - Dark Accordion */
.faq-section {
    padding: 6rem 0;
    background: #fff;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 300;
    /* Thin font per design */
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #000;
    border-radius: 40px;
    /* High radius */
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #111;
    color: #ccc;
    padding: 0 2.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Map Section */
.map-section {
    padding: 0;
    margin: 2rem 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Vehicle Details Page */
.vehicle-header {
    background: #000;
    color: white;
    padding: 2rem 0;
}

.vehicle-title-main {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.vehicle-price-main {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

.vehicle-header-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-buy-now {
    background: white;
    color: black;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
}

.btn-icon-action {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Image Gallery */
.vehicle-gallery {
    padding: 2rem 0;
}

.main-vehicle-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
}

.thumbnail-item {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #000;
}

/* Specifications Table */
.specs-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.specs-table {
    background: #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.specs-table h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.spec-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.spec-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.spec-value {
    font-weight: 600;
    margin-left: auto;
}

/* Seller Card */
.seller-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.seller-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.verified-badge {
    color: #28a745;
    font-size: 0.85rem;
}

.seller-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-seller-action {
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.feature-check {
    color: #28a745;
    font-size: 1.2rem;
}

.btn-know-more {
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

/* EMI Calculator */
.emi-calculator {
    background: #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.emi-calculator h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.calculator-field {
    margin-bottom: 1.5rem;
}

.calculator-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.calculator-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    width: 100%;
}

.calculator-slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
}

.btn-calculate {
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.review-author {
    font-weight: 700;
}

.review-date {
    font-size: 0.85rem;
    color: #666;
}

.review-rating {
    margin-left: auto;
    color: #ffc107;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

/* Recommended Cars */
.recommended-section {
    padding: 3rem 0;
}

.recommended-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 2rem;
}

.auth-card {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-left {
    flex: 1;
    background: #000;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon {
    color: white;
    font-size: 8rem;
}

.auth-icon svg,
.auth-icon i {
    width: 200px;
    height: 200px;
}

.auth-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-subtitle {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-input {
    background: #e8e8e8;
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #333;
}

.auth-input::placeholder {
    color: #999;
}

.auth-input:focus {
    outline: none;
    background: #ddd;
}

.auth-checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.auth-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.auth-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.btn-auth-primary {
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-auth-primary:hover {
    background: #333;
}

.btn-auth-secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 14px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-auth-secondary:hover {
    background: #f5f5f5;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: #999;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.google {
    background: #fff;
    border: 1px solid #ddd;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.auth-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.password-strength {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .carousel-control-prev-custom,
    .carousel-control-next-custom {
        display: none;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

/* =========================================
   NEW AUTH PAGES STYLES (Split Design)
   ========================================= */

.auth-container {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid #000;
}

/* Left Side (Black) */
.auth-left {
    width: 45%;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    color: white;
}

.auth-icon {
    font-size: 6rem;
    color: white;
    /* Simulate outline look similar to reference images */
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
    color: #0d0d0d;
    /* Inner color black to match bg */
}

/* Specific icons using FA or Images */
.auth-icon i {
    /* For solid icons you might want to use white color */
    color: transparent;
    -webkit-text-stroke: 2px white;
}

/* Right Side (White) */
.auth-right {
    width: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fdfdfd;
}

.auth-logo {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-logo span {
    font-style: italic;
    font-weight: 900;
}

.auth-page-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-description {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
}

/* Form Elements */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-input {
    background: #e0e0e0;
    /* Light Grey */
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
    color: #333;
}

.auth-input:focus {
    background: #d0d0d0;
    outline: none;
    box-shadow: none;
}

.auth-input::placeholder {
    color: #888;
}

/* Buttons */
.btn-auth-black {
    background: #0d0d0d;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    margin-top: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-auth-black:hover {
    background: #333;
    color: white;
}

.btn-auth-white {
    background: #f0f0f0;
    /* Slightly darker than white to show button area */
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    margin-top: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.btn-auth-white:hover {
    background: #eee;
    color: #000;
}

/* Links & Checkboxes */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.auth-link {
    color: #000;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-back-link {
    text-align: center;
    display: block;
    margin-top: 2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 2px;
}

/* Social Icons */
.social-login-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
    transition: transform 0.2s;
}

.social-icon-btn img {
    width: 24px;
    height: 24px;
}

.social-icon-btn i {
    font-size: 1.5rem;
}

.social-icon-btn.facebook {
    color: #1877F2;
}

/* Verification Strength */
.password-strength-text {
    font-size: 0.75rem;
    color: #888;
    margin-left: 15px;
    margin-top: -5px;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
        max-width: 450px;
    }

    .auth-left {
        width: 100%;
        padding: 4rem 2rem;
        min-height: 250px;
    }

    .auth-right {
        width: 100%;
        padding: 2rem;
    }

    .auth-icon {
        font-size: 5rem;
    }
}

/* Premium Auth Pages Design */
.auth-section {
    min-height: 100vh;
    background: url('../img/hero_banner.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.auth-glass-card {
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.auth-glass-card .auth-logo {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.auth-glass-card .auth-logo span {
    color: #fff;
    /* Keep clean white */
}

.auth-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 14px 25px;
    color: white;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
}

.auth-form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.auth-form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.auth-options a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.auth-options a:hover {
    text-decoration: underline;
}

.btn-auth-premium {
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 800;
    width: 100%;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-auth-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.auth-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.auth-footer-text a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

/* Social Login */
.auth-social-divider {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 1.5rem 0;
    position: relative;
}

.auth-social-divider::before,
.auth-social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-social-divider::before {
    left: 0;
}

.auth-social-divider::after {
    right: 0;
}

.social-login-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon-btn img {
    width: 20px;
}

.social-icon-btn i {
    color: white;
    font-size: 1.2rem;
}

/* Contact Page Redesign */

/* Hero Banner */
/* Hero Banner */
.contact-hero {
    position: relative;
    height: 350px;
    background: url('../img/hero_banner.png') no-repeat center center/cover !important;
    background-color: #000;
}

/* Carousel Controls Fix */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black background */
    border-radius: 50%;
    /* Circular */
    padding: 20px;
    /* Size */
    background-size: 50% 50%;
    /* Adjust icon size inside */
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    /* Narrower hit area */
    opacity: 1;
    /* Always visible */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    /* Gradient for text readability */
    z-index: 1;
}

.contact-hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-top: 0;
    /* Push text down a bit */
}

/* Form Overlap */
.contact-form-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    /* Ensure significant overlap */
    padding-bottom: 50px;
}

.dark-theme-form {
    background: #5c5c5c;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

/* Form Inputs */
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 12px 25px;
    color: #fff;
    width: 100%;
    transition: all 0.3s;
}

.contact-form-textarea {
    border-radius: 20px;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    outline: none;
    color: #fff;
}

.contact-form-file {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 10px 20px;
    position: relative;
}

.contact-form-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Submit Button */
.btn-submit-contact {
    background: #fff;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 50px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit-contact:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Info Icons */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* FAQ Dark */
.dark-faq {
    background-color: #000;
    border-radius: 50px;
    margin-bottom: 15px;
    overflow: hidden;
}

.dark-faq .faq-question {
    background: #000;
    color: #fff;
    padding: 20px 30px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dark-faq .faq-answer {
    background: #111;
    color: #ccc;
    padding: 0 30px 20px;
    display: none;
    border-top: 1px solid #222;
}

.dark-faq.active .faq-answer {
    display: block;
}

.dark-faq.active .faq-icon {
    transform: rotate(180deg);
}