    /* ===================================
   RESET & BASE STYLES
   =================================== */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
     :root {
        /* Colors - Blue Accent Theme */
        --primary-color: #ffffff;
        --primary-dark: #F67011;
        --primary-light: #ffffff;
        --secondary-color: #16151A;
        --accent-color: #F67011;
        --bg-dark: #16151A;
        --bg-darker: #0a0a0a;
        --bg-card: #16151A;
        --bg-card-hover: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #a3a3a3;
        --text-muted: #737373;
        --gray-600: #4b5563;
        --gray-900: #16151A;
        /* Spacing */
        --container-width: 1400px;
        --section-padding: 100px 20px;
        /* Transitions */
        --transition-fast: 0.2s ease;
        --transition-normal: 0.3s ease;
        --transition-slow: 0.5s ease;
        /* Shadows */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
        --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    
    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: var(--bg-darker);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px;
    }
    /* ===================================
   NAVIGATION BAR
   =================================== */
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-normal);
    }
    
    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.4);
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        text-decoration: none;
        color: var(--text-primary);
    }
    
    .logo-icon {
        width: 45px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        color: white;
    }
    
    .logo-text {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--text-primary);
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 8px;
        margin-left: auto;
    }
    
    .nav-link {
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        border-radius: 8px;
        transition: var(--transition-fast);
        position: relative;
    }
    
    .nav-link:hover {
        color: var(--text-primary);
        background: rgb(246, 112, 17, 0.4);
    }
    
    .nav-link.active {
        color: var(--primary-color);
        background: #F67011;
    }
    
    .navbar.scrolled .nav-link {
        color: var(--text-primary);
    }
    
    .navbar.scrolled .nav-link:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled .nav-link.active {
        color: var(--primary-color);
        background: rgb(246, 112, 17, 0.4);
    }
    
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 20px;
        right: 20px;
        height: 2px;
        background: var(--primary-c);
        border-radius: 2px;
    }
    
    .cta-button {
        padding: 12px 24px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: var(--transition-fast);
        white-space: nowrap;
    }
    
    .cta-button:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }
    
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: var(--transition-fast);
    }
    
    .navbar.scrolled .mobile-menu-toggle span {
        background: var(--gray-900);
    }
    /* ===================================
   HERO SHOWROOM SECTION (NEW DIV02)
   =================================== */
    
    .hero-showroom-section {
        display: flex;
        flex-direction: column;
        background: var(--bg-darker);
    }
    /* Top 50%: Video Background */
    
    .hero-video-wrapper {
        position: relative;
        height: 50vh;
        min-height: 400px;
        overflow: hidden;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .hero-text-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 1;
        width: 90%;
        max-width: 900px;
        padding: 0 20px;
    }
    
    .hero-main-title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -1px;
        color: var(--text-primary);
    }
    
    .hero-main-description {
        font-size: clamp(16px, 2vw, 18px);
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto;
    }
    /* Bottom 50%: Car Selection & Info */
    
    .hero-bottom-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
        background: var(--bg-darker);
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }
    /* Model Selector - Desktop: Horizontal centered */
    
    .model-selector-wrapper {
        margin-bottom: 30px;
    }
    
    .selector-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 20px;
        text-align: center;
        text-transform: uppercase;
    }
    
    .model-buttons-container {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .model-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 24px;
        background: rgb(246, 112, 17, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        cursor: pointer;
        transition: var(--transition-fast);
        color: var(--text-primary);
        white-space: nowrap;
    }
    
    .model-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgb(246, 112, 17);
        transform: translateY(-2px);
    }
    
    .model-btn.active {
        background: rgb(246, 112, 17, 0.4);
        border-color: rgb(246, 112, 17);
    }
    
    .model-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .model-name {
        font-weight: 600;
        font-size: 15px;
    }
    
    .model-subtitle {
        font-size: 13px;
        color: #878787;
    }
    /* Car Details Info - Centered */
    
    .car-info-display {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 36px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .car-title {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .car-price {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 16px;
    }
    
    .car-description {
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .car-specs {
        display: flex;
        gap: 40px;
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .spec-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .spec-item svg {
        width: 24px;
        height: 24px;
        color: var(--primary-color);
    }
    
    .spec-label {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-secondary);
    }
    
    .btn-customize {
        display: flex; /* Changed from inline to flex */
        width: fit-content;
        align-items: center;
        justify-content: center; /* Ensures content inside the button is centered */
        margin-left: auto;
        margin-right: auto;
        gap: 10px;
        padding: 16px 32px;
        background: var(--primary-dark);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        transition: var(--transition-fast);
        border: none;
        cursor: pointer;
    }
    
    .btn-customize:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }
    
    .btn-customize svg {
        width: 20px;
        height: 20px;
    }
    /* Accessories Section */
    
    .accessories-section {
        margin-top: 40px;
        width: 100%;
    }
    
    .accessories-title {
        width: fit-content;
        margin-left: auto;
        /* Added */
        margin-right: auto;
        /* Added */
        margin-top: 20px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 8px 20px;
        background: rgb(111, 125, 160, 0.1);
        border: 1px solid rgb(246, 112, 17);
        border-radius: 50px;
        color: #F67011;
        text-align: center;
    }
    
    .accessories-customize {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: var(--primary-dark);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        transition: var(--transition-fast);
        border: none;
        cursor: pointer;
    }
    
    .accessories-customize:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }
    
    .accessories-customize svg {
        width: 20px;
        height: 20px;
    }
    
    .accessories-scroll {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 10px 0;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    }
    
    .accessories-scroll::-webkit-scrollbar {
        height: 8px;
    }
    
    .accessories-scroll::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    
    .accessories-scroll::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }
    
    .accessories-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }
    
    .accessory-item {
        flex-shrink: 0;
        width: 150px;
        height: 150px;
        background: var(--bg-card);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        transition: var(--transition-fast);
        cursor: pointer;
    }
    
    .accessory-item:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }
    
    .accessory-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* ===================================
   ABOUT SECTION (DIV03)
   =================================== */
    
    .about-section {
        padding: var(--section-padding);
        background: var(--bg-darker);
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-subtitle {
        display: inline-block;
        padding: 8px 20px;
        background: rgb(111, 125, 160, 0.1);
        border: 1px solid rgb(246, 112, 17);
        border-radius: 50px;
        color: #F67011;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }
    
    .gradient-text {
        color: var(--primary-color);
    }
    
    .section-header p {
        font-size: 18px;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto;
    }
    /* Vision & Mission Grid */
    
    .vision-mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }
    
    .vm-card {
        background: var(--bg-card);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-normal);
    }
    
    .vm-card:hover {
        transform: translateY(-5px);
        border-color: rgba(246, 112, 17, 0.3);
        box-shadow: var(--shadow-lg);
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
        background: rgba(246, 112, 17, 0.3);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .vm-icon svg {
        width: 30px;
        height: 30px;
        color: var(--primary-color);
    }
    
    .vm-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
    }
    
    .vm-card p {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .vm-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .vm-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: var(--text-secondary);
    }
    
    .vm-list svg {
        width: 20px;
        height: 20px;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    /* Core Values */
    
    .core-values {
        margin-bottom: 80px;
    }
    
    .core-values .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .value-card {
        background: var(--bg-card);
        border-radius: 16px;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: var(--transition-normal);
    }
    
    .value-card:hover {
        transform: translateY(-5px);
        border-color: rgba(246, 112, 17, 0.3);
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        background: rgba(246, 112, 17, 0.3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .value-icon svg {
        width: 28px;
        height: 28px;
        color: var(--primary-color);
    }
    
    .value-card h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .value-card p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
    }
    /* Stats Section */
    
    .stats-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-card {
        background: var(--bg-card);
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-normal);
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(246, 112, 17, 0.3);
    }
    
    .stat-number-large {
        display: block;
        font-size: 48px;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 8px;
    }
    
    .stat-card .stat-label {
        font-size: 14px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    /* ===================================
   INSTAGRAM SECTION (DIV04)
   =================================== */
    
    .instagram-section {
        padding: var(--section-padding);
        background: var(--bg-dark);
    }
    
    .instagram-handle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: var(--transition-fast);
    }
    
    .instagram-handle:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
    }
    
    .instagram-handle svg {
        width: 20px;
        height: 20px;
    }
    
    .instagram-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .instagram-post {
        position: relative;
        aspect-ratio: 1;
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        transition: var(--transition-normal);
    }
    
    .instagram-post:hover {
        transform: translateY(-5px);
    }
    
    .instagram-post img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .instagram-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(246, 112, 17, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition-normal);
    }
    
    .instagram-post:hover .instagram-overlay {
        opacity: 1;
    }
    
    .instagram-icon {
        width: 48px;
        height: 48px;
        color: white;
    }
    
    .instagram-cta {
        text-align: center;
    }
    
    .btn-instagram {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        transition: var(--transition-fast);
        border: none;
        cursor: pointer;
    }
    
    .btn-instagram:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
    }
    
    .btn-instagram svg {
        width: 20px;
        height: 20px;
    }
    
    .instagram-icon {
        fill: #F67011;
        /* Your preferred orange hex code */
        vertical-align: middle;
        margin-right: 8px;
    }
    
    .instagram-handle {
        text-decoration: none;
        color: inherit;
        display: inline-flex;
        align-items: center;
    }
    /* ===================================
   GALLERY SECTION (DIV04)
   =================================== */
    
    .gallery-section {
        padding: var(--section-padding);
        background: var(--bg-dark);
    }
    
    .filter-tabs {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
    
    .filter-tab {
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: var(--text-secondary);
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .filter-tab:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-primary);
    }
    
    .filter-tab.active {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: white;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .gallery-item {
        border-radius: 20px;
        overflow: hidden;
        transition: var(--transition-normal);
        border: 2px solid rgba(255, 255, 255, 0.1);
        background: var(--bg-card);
    }
    
    .gallery-item:hover {
        transform: scale(1.05);
        border-color: rgba(246, 112, 17, 0.5);
    }
    
    .gallery-item.selected {
        border-color: var(--primary-dark);
        box-shadow: 0 0 20px rgba(246, 112, 17, 0.4);
    }
    
    .gallery-image {
        position: relative;
        height: 220px;
        display: flex;
        align-items: flex-end;
        padding: 30px;
        overflow: hidden;
        background: var(--bg-card) !important;
    }
    
    .gallery-checkbox {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .gallery-checkbox:checked+.gallery-image {
        border: 3px solid var(--primary-dark);
        border-radius: 20px;
    }
    
    .gallery-checkbox:checked+.gallery-image::after {
        content: '✓';
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        background: var(--primary-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 16px;
        z-index: 10;
    }
    
    .gallery-overlay {
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(20px);
        transition: var(--transition-normal);
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .gallery-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        opacity: 0;
        transition: var(--transition-normal);
    }
    
    .gallery-item:hover .gallery-image::before {
        opacity: 1;
    }
    
    .gallery-badge {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(59, 130, 246, 0.15);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--primary-color);
    }
    
    .gallery-overlay h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .gallery-overlay p {
        font-size: 14px;
        color: var(--text-secondary);
        margin-bottom: 16px;
    }
    
    .btn-view {
        padding: 10px 20px;
        background: white;
        color: var(--bg-dark);
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .btn-view:hover {
        transform: scale(1.05);
    }
    
    .gallery-cta {
        text-align: center;
    }
    
    .btn-primary {
        padding: 16px 32px;
        background: var(--primary-dark);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition-fast);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }
    /* ===================================
   CONTACT SECTION (DIV05)
   =================================== */
    
    .contact-section {
        padding: var(--section-padding);
        background: var(--bg-darker);
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        align-items: start;
    }
    /* Contact Info */
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .info-card {
        background: var(--bg-card);
        border-radius: 16px;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: var(--transition-normal);
    }
    
    .info-card:hover {
        border-color: rgba(246, 112, 17, 0.3);
        transform: translateX(5px);
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        background: rgba(246, 112, 17, 0.3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .info-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary-color);
    }
    
    .info-card>div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .info-label {
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .info-value {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .hours-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hours-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 16px;
    }
    
    .hours-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hours-item {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
    }
    
    .hours-item:last-child {
        border-bottom: none;
    }
    
    .hours-item span:first-child {
        color: var(--text-secondary);
    }
    
    .hours-item span:last-child {
        color: var(--text-primary);
        font-weight: 600;
    }
    /* Contact Form */
    
    .contact-form-wrapper {
        background: var(--bg-card);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-form-wrapper h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-secondary);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: var(--primary-color);
        font-size: 15px;
        font-family: inherit;
        transition: var(--transition-fast);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-dark);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .btn-full {
        width: 100%;
        justify-content: center;
    }
    
    .icon {
        width: 18px;
        height: 18px;
    }
    /* ===================================
   CONTACT FORM DROPDOWN
   =================================== */
    /* Hover Effect */
    
    #subject:hover {
        background-color: #1a1a1a;
        border-color: #555;
    }
    /* Focus Effect */
    
    #subject:focus {
        outline: none;
        border-color: #007bff;
        border-radius: 10px;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
    /* Dropdown Options */
    
    #subject option {
        background-color: var(--primary-dark);
        color: #fff;
        border-radius: 10px;
    }
    /* ===================================
   FOOTER
   =================================== */
    
    .footer {
        background: var(--bg-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 60px 20px 30px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-brand p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.7;
    }
    
    .social-links {
        display: flex;
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: var(--transition-fast);
    }
    
    .social-link:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-links h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        transition: var(--transition-fast);
    }
    
    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-bottom p {
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .heart {
        color: var(--primary-dark);
        animation: heartbeat 1.5s infinite;
    }
    
    @keyframes heartbeat {
        0%,
        100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }
    /* ===================================
   RESPONSIVE DESIGN
   =================================== */
    /* Mobile: Vertical left-aligned minimized buttons */
    
    @media (max-width: 768px) {
         :root {
            --section-padding: 60px 20px;
        }
        .nav-links,
        .cta-button {
            display: none;
        }
        .mobile-menu-toggle {
            display: flex;
        }
        .nav-links.mobile-active {
            display: flex;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* Mobile Hero Showroom Layout */
        .hero-video-wrapper {
            height: 50vh;
            min-height: 300px;
        }
        .hero-main-title {
            font-size: 28px;
        }
        .hero-main-description {
            font-size: 14px;
        }
        .hero-bottom-content {
            padding: 20px;
        }
        .model-selector-wrapper {
            margin-bottom: 20px;
        }
        .selector-title {
            text-align: left;
            margin-bottom: 15px;
        }
        /* Mobile: Keep buttons horizontal like desktop */
        .model-buttons-container {
            justify-content: center;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .model-btn {
            padding: 10px 16px;
            font-size: 14px;
            flex-shrink: 0;
        }
        .model-name {
            font-size: 14px;
        }
        .model-subtitle {
            font-size: 12px;
        }
        .car-info-display {
            padding: 24px;
            text-align: left;
        }
        .car-title {
            font-size: 24px;
        }
        .car-price {
            font-size: 22px;
        }
        .car-description {
            font-size: 14px;
        }
        .car-specs {
            justify-content: center;
            gap: 30px;
        }
        .accessories-scroll {
            gap: 15px;
        }
        .accessory-item {
            width: 150px;
            height: 150px;
        }
        .form-row {
            grid-template-columns: 1fr;
        }
        .instagram-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        .values-grid {
            grid-template-columns: 1fr;
        }
        .vision-mission-grid {
            grid-template-columns: 1fr;
        }
        .stats-section {
            grid-template-columns: repeat(2, 1fr);
        }
        .contact-grid {
            grid-template-columns: 1fr;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .stats-section {
            grid-template-columns: 1fr;
        }
        .section-title {
            font-size: 28px;
        }
    }
    /* Tablet */
    /*@media (min-width: 769px) and (max-width: 1024px) {
        .hero-bottom-content {
            padding: 30px;
        }
        .contact-grid {
            grid-template-columns: 1fr;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }*/
    /* ===================================
   UTILITY CLASSES
   =================================== */
    
    .hidden {
        display: none !important;
    }
    
    .fade-in {
        animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    /* Custom scrollbar */
    
     ::-webkit-scrollbar {
        width: 10px;
    }
    
     ::-webkit-scrollbar-track {
        background: var(--bg-darker);
    }
    
     ::-webkit-scrollbar-thumb {
        background: var(--bg-card);
        border-radius: 5px;
    }
    
     ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }
    /* Selection */
    
     ::selection {
        background: var(--primary-dark);
        color: white;
    }
    
     ::-moz-selection {
        background: var(--primary-dark);
        color: white;
    }
    /* ===================================
   STICKY FLOATING SELECTION BAR
   =================================== */
    
    .sticky-selection-bar {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        background: rgba(22, 21, 26, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(246, 112, 17, 0.3);
        border-radius: 50px;
        padding: 12px 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        transition: var(--transition-normal);
    }
    
    .sticky-selection-bar.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(100px);
    }
    
    .selection-bar-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .selection-count {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        white-space: nowrap;
    }
    
    .selection-actions {
        display: flex;
        gap: 10px;
    }
    
    .selection-btn {
        padding: 8px 16px;
        background: rgba(246, 112, 17, 0.1);
        border: 1px solid rgba(246, 112, 17, 0.3);
        border-radius: 25px;
        color: var(--text-primary);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-fast);
        white-space: nowrap;
    }
    
    .selection-btn:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: scale(1.05);
    }
    
    .btn-primary-quote {
        padding: 8px 16px;
        background: var(--primary-dark);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-fast);
        white-space: nowrap;
    }
    
    .btn-primary-quote:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: scale(1.05);
    }
    /* ===================================
   QUOTE POPUP MODAL
   =================================== */
    
    .quote-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
    }
    
    .quote-modal-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .quote-modal {
        background: var(--bg-card);
        border-radius: 24px;
        padding: 40px;
        max-width: 500px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-lg);
        transform: scale(0.9);
        transition: var(--transition-normal);
        position: relative;
    }
    
    .quote-modal-overlay.active .quote-modal {
        transform: scale(1);
    }
    
    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--text-secondary);
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-fast);
    }
    
    .modal-close:hover {
        background: rgba(246, 112, 17, 0.2);
        border-color: var(--primary-dark);
        color: var(--text-primary);
        transform: rotate(90deg);
    }
    
    .modal-title {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .modal-subtitle {
        font-size: 14px;
        color: var(--text-secondary);
        text-align: center;
        margin-bottom: 30px;
    }
    
    .quote-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .quote-form .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .quote-form label {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-secondary);
    }
    
    .quote-form input,
    .quote-form select {
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: var(--text-primary);
        font-size: 15px;
        font-family: inherit;
        transition: var(--transition-fast);
    }
    
    .quote-form input:focus,
    .quote-form select:focus {
        outline: none;
        border-color: var(--primary-dark);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .phone-input-wrapper {
        display: flex;
        gap: 10px;
    }
    
    .country-code {
        flex-shrink: 0;
        width: auto;
        min-width: 140px;
        cursor: pointer;
    }
    
    #customerPhone {
        flex: 1;
    }
    
    .selected-items-preview {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 16px;
    }
    
    .selected-items-preview label {
        display: block;
        margin-bottom: 12px;
        font-size: 14px;
        color: var(--text-secondary);
    }
    
    .preview-images {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        max-height: 100px;
        overflow-y: auto;
    }
    
    .preview-thumb {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        object-fit: cover;
        border: 2px solid var(--primary-dark);
    }
    
    .btn-submit-quote {
        padding: 16px 32px;
        background: var(--primary-dark);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition-fast);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
    
    .btn-submit-quote:hover {
        background: #e56510;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(246, 112, 17, 0.3);
    }
    /* ===================================
   RESPONSIVE STYLES FOR NEW ELEMENTS
   =================================== */
    
    @media (max-width: 768px) {
        .sticky-selection-bar {
            bottom: 10px;
            padding: 10px 16px;
            width: 95%;
            max-width: 400px;
        }
        .selection-bar-content {
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }
        .selection-count {
            font-size: 13px;
        }
        .selection-actions {
            width: 100%;
            justify-content: center;
        }
        .selection-btn {
            padding: 6px 12px;
            font-size: 12px;
            flex: 1;
            max-width: 120px;
        }
        .quote-modal {
            padding: 30px 20px;
            width: 95%;
        }
        .modal-title {
            font-size: 24px;
        }
        .phone-input-wrapper {
            flex-direction: column;
        }
        .country-code {
            width: 100%;
        }
    }