@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --primary: #0A1128; /* Deep Navy */
    --secondary: #1C2541; /* Graphite */
    --accent-gold: #C5A880; /* Elegant subtle gold */
    --accent-red: #D62828; /* Urgent CTAs, badging */
    --bg-light: #F8F9FA;
    --bg-silver: #EAEAEA;
    --text-dark: #0A1128;
    --text-muted: #6c757d;
    --border-color: #E2E8F0;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* BrandVelocity Badge */
.bv-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(10, 17, 40, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    z-index: 10000;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
    pointer-events: none;
}

/* Top Utility Header */
.top-header {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .left-utils, .top-header .right-utils {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header a:hover {
    color: var(--white);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-red);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent-red);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--secondary);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--accent-red);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.desktop-only {
    display: block;
}

/* Hamburger Btn */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-gold:hover {
    background: #b5986f;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero.active .hero-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Advanced Search Module (Hero) */
.search-module {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.search-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent-red);
}

.search-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.search-tab {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
}

.search-tab.active {
    color: var(--primary);
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-red);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
}

.form-select, .form-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: #fdfdfd;
    transition: var(--transition);
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 17, 40, 0.1);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Vehicle Cards */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vehicle-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-img {
    transform: scale(1.05);
}

.vehicle-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    color: var(--white);
    background: var(--primary);
}

.badge-red {
    background: var(--accent-red);
}

.badge-gold {
    background: var(--accent-gold);
}

.fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.fav-btn:hover {
    color: var(--accent-red);
}

.vehicle-info {
    padding: 25px;
}

.vehicle-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.vehicle-title a {
    color: var(--primary);
}

.vehicle-title a:hover {
    color: var(--accent-red);
}

.vehicle-trim {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.vehicle-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.price-main {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.price-emi {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
    text-align: right;
}

.price-emi span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.vehicle-specs {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Trust Section */
.trust-block {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item i {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Split Section (Sell/Finance) */
.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.split-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.split-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.split-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,17,40,0.9) 0%, rgba(10,17,40,0.4) 100%);
    z-index: 2;
}

.split-card-content {
    position: relative;
    z-index: 3;
    padding: 50px;
    color: var(--white);
    max-width: 80%;
}

.split-card-content h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.split-card-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.8);
}

/* Footer */
footer {
    background: #050914;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent-red);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--accent-red);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Page Headers */
.page-header {
    background: var(--primary);
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: var(--accent-gold);
}

/* Inventory Page Layout */
.inventory-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Vehicle Detail Page */
.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.detail-gallery {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.thumb-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.thumb-img:hover, .thumb-img.active {
    opacity: 1;
}

.sticky-inquiry {
    position: sticky;
    top: 100px;
}

.inquiry-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary);
}

.detail-price {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.spec-grid-lg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.spec-item-lg {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item-lg i {
    font-size: 24px;
    color: var(--accent-red);
}

.spec-item-lg div span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.spec-item-lg div strong {
    font-size: 15px;
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .inventory-layout, .detail-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .main-header .container {
        padding: 0 5%;
    }
    .logo {
        font-size: 22px;
    }
    .header-actions {
        gap: 15px;
    }
    .icon-btn {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .top-header .container {
        justify-content: center;
    }
    .top-header .right-utils {
        gap: 15px;
    }
    .phone-link {
        font-size: 11px;
    }
    .lang-link {
        border-left: 1px solid rgba(255,255,255,0.2);
        padding-left: 15px;
        font-size: 11px;
    }
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 42px;
    }
    .search-module {
        margin-top: -30px;
    }
    .split-cards {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-nav {
        display: none; /* Mobile menu needed */
    }
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 2100;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-logo span {
    color: var(--accent-red);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary);
}

.mobile-nav a.active {
    color: var(--accent-red);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
}

/* --- Sell Page & Multi-step Form --- */
.sell-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.benefit-card i {
    font-size: 32px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
}

.step.active {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.step.completed {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
}

.sell-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* --- Team Page --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-img-wrapper {
    height: 320px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info span {
    display: block;
    color: var(--accent-red);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: var(--text-muted);
    font-size: 16px;
}

.team-social a:hover {
    color: var(--primary);
}

/* --- News Page --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
}

.news-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 12px;
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.news-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

/* --- Client Portal --- */
.portal-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.8)), url('assets/general/portal-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 20px;
    color: var(--accent-red);
}

.map-container {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

/* --- About Page --- */
.about-image-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.story-content {
    padding: 10% 15%;
}

.story-image {
    height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Favorites --- */
.fav-empty {
    text-align: center;
    padding: 100px 0;
}

.fav-empty i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .sell-benefits, .about-image-story, .contact-layout {
        grid-template-columns: 1fr;
    }
    .story-image {
        height: 300px;
    }
}

/* MOBILE DRAWER FIXES */
@media (max-width: 992px) {
    .desktop-only { display: none !important; }
    .hamburger-btn { display: flex !important; }
    .main-header .container { padding: 0 5%; }
    .logo { font-size: 22px; }
    .header-actions { gap: 15px; }
    .icon-btn { font-size: 18px; }
}

@media (max-width: 768px) {
    .top-header .container { justify-content: center; }
    .top-header .right-utils { gap: 15px; }
    .phone-link { font-size: 11px; }
    .lang-link { border-left: 1px solid rgba(255,255,255,0.2); padding-left: 15px; font-size: 11px; }
    .hero { padding-top: 100px; height: auto; min-height: 70vh; }
    .hero h1 { font-size: 42px; }
    .search-module { margin-top: -30px; }
    .split-cards { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #fff; z-index: 2100; padding: 80px 30px; display: flex;
    flex-direction: column; gap: 30px; transition: all 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu.active { right: 0; }
.mobile-logo { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 900; text-transform: uppercase; }
.mobile-logo span { color: #D62828; }
.mobile-nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a { font-weight: 600; font-size: 16px; text-transform: uppercase; color: #0A1128; }
.mobile-nav a.active { color: #D62828; }
.close-btn { position: absolute; top: 25px; right: 25px; background: none; border: none; color: #0A1128; font-size: 24px; cursor: pointer; }

/* Hamburger Btn */
.hamburger-btn {
    display: none; flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px; background: none; border: none; cursor: pointer; z-index: 1001;
}
.hamburger-btn span { width: 100%; height: 2px; background: #0A1128; transition: all 0.3s ease; }


