/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
    /* Colors - Black & White Theme (#2c2c2c, #FEFEFE, #f1f1f1) */
    --primary-color: #FEFEFE;
    --primary-dark: #2c2c2c;
    --primary-light: #FEFEFE;
    --secondary-color: #2c2c2c;
    --accent-color: #2c2c2c;
    --bg-dark: #FEFEFE;
    --bg-darker: #FEFEFE;
    --bg-card: #f1f1f1;
    --bg-card-hover: #eae8de;
    --text-primary: #2c2c2c;
    --text-secondary: rgb(75, 75, 75, 0.7);
    --text-muted: rgb(75, 75, 75, 0.5);
    --gray-600: rgb(75, 75, 75, 0.3);
    --gray-900: #f1f1f1;
    /* 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(2, 3, 5, 0.1);
    --shadow-md: 0 4px 16px rgba(2, 3, 5, 0.15);
    --shadow-lg: 0 8px 32px rgba(2, 3, 5, 0.2);
    --shadow-glow: 0 0 20px rgba(2, 3, 5, 0.15);
}

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(254, 254, 254, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(2, 3, 5, 0.1);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(254, 254, 254, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(2, 3, 5, 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);
}

.logo-text-dark {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    padding: 10px 20px;
    color: rgba(2, 3, 5, 0.7);
    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: rgba(2, 3, 5, 0.08);
}

.nav-link.active {
    color: var(--primary-color);
    background: #2c2c2c;
}

.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.navbar.scrolled .nav-link:hover {
    color: var(--text-primary);
    background: rgba(2, 3, 5, 0.08);
}

.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
    background: #2c2c2c;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.cta-button {
    padding: 12px 24px;
    background: var(--primary-dark);
    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: #f1f1f1;
    color: #2c2c2c;
    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: #2c2c2c;
}


/* ===================================
   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-wrapper-wip {
    position: relative;
    height: 50vh;
    min-height: 1000px;
    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(2, 3, 5, 0.0);
}

.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: #FEFEFE;
}

.hero-main-description {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(254, 254, 254, 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: #FEFEFE;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}


/* Car Display Container - Image + Info Side by Side */

.car-display-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    background: #f1f1f1;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(2, 3, 5, 0.1);
}

.car-image-wrapper {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 3, 5, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(2, 3, 5, 0.1);
}

.car-display-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


/* 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(2, 3, 5, 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;
    margin-top: 10px;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(2, 3, 5, 0.05);
    border: 1px solid rgba(2, 3, 5, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-primary);
    white-space: nowrap;
}

.model-btn:hover {
    background: #f1f1f1;
    border-color: #2c2c2c;
    transform: scale(1.03);
}

.model-btn.active {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: #FEFEFE;
}

.model-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.model-name {
    font-weight: 600;
    font-size: 15px;
}

.model-subtitle {
    font-size: 13px;
}


/* Car Details Info - Centered */

.car-info-display {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.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-dark);
    margin-bottom: 16px;
}

.car-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.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-dark);
}

.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;
    margin-bottom: 40px;
    gap: 10px;
    padding: 16px 32px;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    box-shadow: rgb(0, 0, 0, 0.3) 10px 15px 20px -4px;
}

.btn-customize:hover {
    background: #f1f1f1;
    color: #2c2c2c;
    transform: scale(1.02);
    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: rgba(2, 3, 5, 0.05);
    border: 1px solid #2c2c2c;
    border-radius: 50px;
    color: #2c2c2c;
    text-align: center;
}

.accessories-customize {
    display: flex;
    width: fit-content;
    padding: 15px 30px;
    background: rgba(2, 3, 5, 0.05);
    border: 1px solid #2c2c2c;
    border-radius: 50px;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    margin: auto;
    letter-spacing: 1px;
}

.accessories-customize:hover {
    background: #2c2c2c;
    color: #FEFEFE;
    transform: scale(1.1);
    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(2, 3, 5, 0.2) transparent;
}

.accessories-scroll::-webkit-scrollbar {
    height: 8px;
}

.accessories-scroll::-webkit-scrollbar-track {
    background: rgba(2, 3, 5, 0.05);
    border-radius: 4px;
}

.accessories-scroll::-webkit-scrollbar-thumb {
    background: rgba(2, 3, 5, 0.2);
    border-radius: 4px;
}

.accessories-scroll::-webkit-scrollbar-thumb:hover {
    background: #2c2c2c;
}

.accessory-item {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(2, 3, 5, 0.1);
    overflow: hidden;
    transition: var(--transition-fast);
    cursor: pointer;
}

.accessory-item:hover {
    border-color: #2c2c2c;
    transform: translateY(-5px);
}

.accessory-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===================================
   ABOUT SECTION (DIV03)
   =================================== */

.about-section {
    padding: var(--section-padding);
    background: #FEFEFE;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(2, 3, 5, 0.05);
    border: 1px solid #2c2c2c;
    border-radius: 50px;
    color: #2c2c2c;
    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;
    color: #2c2c2c;
}

.gradient-text {
    color: #2c2c2c;
}

.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: #f1f1f1;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(2, 3, 5, 0.1);
    transition: var(--transition-normal);
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(2, 3, 5, 0.3);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 3, 5, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-icon svg {
    width: 30px;
    height: 30px;
    color: #2c2c2c;
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.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: #2c2c2c;
    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: #f1f1f1;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(2, 3, 5, 0.1);
    text-align: center;
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(2, 3, 5, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 3, 5, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: #2c2c2c;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.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: #f1f1f1;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(2, 3, 5, 0.1);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(2, 3, 5, 0.3);
}

.stat-number-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #2c2c2c;
    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: #f1f1f1;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: rgba(2, 3, 5, 0.05);
    border: 1px solid rgba(2, 3, 5, 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(2, 3, 5, 0.1);
    border-color: #2c2c2c;
}

.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: rgba(2, 3, 5, 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: #2c2c2c;
    /* Your preferred black 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: #f1f1f1;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: rgba(2, 3, 5, 0.05);
    border: 1px solid rgba(2, 3, 5, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    background: rgba(2, 3, 5, 0.08);
    color: var(--text-primary);
}

.filter-tab.active {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid rgba(2, 3, 5, 0.1);
    background: #f1f1f1;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(2, 3, 5, 0.3);
}

.gallery-item.selected {
    border-color: #2c2c2c;
    box-shadow: 0 0 20px rgba(2, 3, 5, 0.2);
}

.gallery-image {
    position: relative;
    height: 220px;
    display: block;
    overflow: hidden;
    cursor: pointer;
    background: #f1f1f1 !important;
    user-select: none;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    opacity: 0;
    z-index: 15;
    cursor: pointer;
    pointer-events: auto;
}

.gallery-checkbox:checked~.gallery-image {
    border: 3px solid #2c2c2c;
}

.selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(254, 254, 254, 0.6);
    border: 2px solid rgba(2, 3, 5, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 10;
    pointer-events: none;
}

.selection-indicator svg {
    width: 18px;
    height: 18px;
    color: #2c2c2c;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-checkbox:checked~.gallery-image .selection-indicator {
    opacity: 1;
    background: #2c2c2c;
    border-color: #2c2c2c;
}

.gallery-checkbox:checked~.gallery-image .selection-indicator svg {
    opacity: 1;
    color: white;
}

.gallery-item:hover .selection-indicator {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(2, 3, 5, 0.9), transparent);
    z-index: 5;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(254, 254, 254, 0.2);
    border: 1px solid rgba(254, 254, 254, 0.5);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #FEFEFE;
    text-transform: capitalize;
}

.gallery-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #FEFEFE;
}

.gallery-cta {
    text-align: center;
}

.btn-primary {
    padding: 16px 32px;
    background: #2c2c2c;
    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: #f1f1f1;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}


/* ===================================
   CONTACT SECTION (DIV05)
   =================================== */

.contact-section {
    padding: var(--section-padding);
    background: #FEFEFE;
}

.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: #f1f1f1;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(2, 3, 5, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(2, 3, 5, 0.3);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 3, 5, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #2c2c2c;
}

.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;
    color: #2c2c2c;
}

.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(2, 3, 5, 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: #f1f1f1;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(2, 3, 5, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.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(254, 254, 254, 0.5);
    border: 1px solid rgba(2, 3, 5, 0.1);
    border-radius: 10px;
    color: #2c2c2c;
    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: #2c2c2c;
    background: rgba(254, 254, 254, 0.8);
}

.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: #FEFEFE;
    border-color: #2c2c2c;
}


/* Focus Effect */

#subject:focus {
    outline: none;
    border-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(2, 3, 5, 0.3);
}


/* Dropdown Options */

#subject option {
    background-color: #FEFEFE;
    color: #2c2c2c;
    border-radius: 10px;
}


/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #191A1B;
    border-top: 1px solid rgba(254, 254, 254, 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: rgba(254, 254, 254, 0.7);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(254, 254, 254, 0.05);
    border: 1px solid rgba(254, 254, 254, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(254, 254, 254, 0.7);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: #FEFEFE;
    border-color: #FEFEFE;
    color: #2c2c2c;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FEFEFE;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(254, 254, 254, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #FEFEFE;
    border-style: solid;
    border-width: 2px 0 2px 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(254, 254, 254, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(254, 254, 254, 0.5);
}

.heart {
    color: #FEFEFE;
    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(254, 254, 254, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-top: 1px solid rgba(2, 3, 5, 0.1);
    }
    /* Mobile Hero Showroom Layout */
    .hero-video-wrapper {
        height: 50vh;
        min-height: 300px;
    }

    .hero-video-wrapper-wip {
        height: 50vh;
        min-height: 1000px;
    }
    .hero-main-title {
        font-size: 28px;
    }
    .hero-main-description {
        font-size: 14px;
    }
    .hero-bottom-content {
        padding: 20px;
    }
    .model-selector-wrapper {
        margin-bottom: 30px;
    }
    .selector-title {
        text-align: center;
        margin-bottom: 30px;
    }
    /* Mobile: Keep buttons horizontal like desktop */
    .model-buttons-container {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .model-btn {
        padding: 10px 16px;
        margin-top: 10px;
        font-size: 14px;
        flex-shrink: 0;
    }
    .model-name {
        font-size: 14px;
    }
    .model-subtitle {
        font-size: 12px;
    }
    .car-info-display {
        padding: 24px;
        text-align: center;
    }
    .car-title {
        font-size: 24px;
    }
    .car-price {
        font-size: 22px;
    }
    .car-description {
        font-size: 14px;
    }
    .car-specs {
        justify-content: center;
        gap: 30px;
    }
    /* Mobile: Stack car display vertically */
    .car-display-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .car-image-wrapper {
        height: 250px;
        width: 100%;
        display: flex;
    }
    .car-display-image {
        width: 100%;
        height: auto;
    }
    .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: repeat(auto-fill, minmax(150px, 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: #FEFEFE;
}

 ::-webkit-scrollbar-thumb {
    background: #f1f1f1;
    border-radius: 5px;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #2c2c2c;
}


/* Selection */

 ::selection {
    background: #2c2c2c;
    color: white;
}

 ::-moz-selection {
    background: #2c2c2c;
    color: white;
}


/* ===================================
   STICKY FLOATING SELECTION BAR
   =================================== */

.sticky-selection-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(2, 3, 5, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #2c2c2c;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 8px 32px rgba(2, 3, 5, 0.3);
    transition: all 0.3s ease;
    display: flex;
    opacity: 1;
    visibility: visible;
}

.sticky-selection-bar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(100px);
    visibility: hidden;
}

.selection-bar-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.selection-count {
    font-size: 14px;
    font-weight: 600;
    color: #FEFEFE;
    white-space: nowrap;
}

.selection-actions {
    display: flex;
    gap: 10px;
}

.selection-btn {
    padding: 8px 16px;
    background: rgba(254, 254, 254, 0.15);
    border: 1px solid rgba(254, 254, 254, 0.3);
    border-radius: 25px;
    color: #FEFEFE;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.selection-btn:hover {
    background: #FEFEFE;
    border-color: #FEFEFE;
    color: #2c2c2c;
    transform: scale(1.05);
}

.btn-primary-quote {
    padding: 8px 16px;
    background: #FEFEFE;
    border: 2px solid #FEFEFE;
    border-radius: 12px;
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-primary-quote:hover {
    background: #f1f1f1;
    border-color: #f1f1f1;
    color: #2c2c2c;
    transform: scale(1.05);
}


/* ===================================
   QUOTE POPUP MODAL
   =================================== */

.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 3, 5, 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: #FEFEFE;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(2, 3, 5, 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(2, 3, 5, 0.05);
    border: 1px solid rgba(2, 3, 5, 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(2, 3, 5, 0.1);
    border-color: #2c2c2c;
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: #2c2c2c;
}

.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(2, 3, 5, 0.03);
    border: 1px solid rgba(2, 3, 5, 0.1);
    border-radius: 12px;
    color: #2c2c2c;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: #2c2c2c;
    background: rgba(2, 3, 5, 0.05);
}

.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(2, 3, 5, 0.03);
    border: 1px solid rgba(2, 3, 5, 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 #2c2c2c;
}

.btn-submit-quote {
    padding: 16px 32px;
    background: #2c2c2c;
    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: #f1f1f1;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(2, 3, 5, 0.2);
}


/* ===================================
   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%;
    }
}