/* --- Root Variables & Design System --- */
:root {
    --bg-dark: #07080d;
    --bg-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --bg-card-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-hover: rgba(252, 135, 74, 0.5);

    --neon-cyan: rgb(252, 135, 74);
    --neon-green: #39ff14;
    --neon-purple: #bd00ff;
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #0b0f19;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(252, 135, 74, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(252, 135, 74, 0.6);
}

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

/* --- Futuristic Background Grid & Orbs --- */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(252, 135, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(252, 135, 74, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--neon-cyan);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--neon-purple);
}

/* --- Layout Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(252, 135, 74, 0.5);
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--neon-cyan);
    color: var(--text-dark);
    border: 1px solid var(--neon-cyan);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(252, 135, 74, 0.4);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(252, 135, 74, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: 1px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 8, 13, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(7, 8, 13, 0.95);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
}

.logo-i {
    color: var(--neon-cyan);
}

.logo-car {
    color: var(--text-primary);
}

.logo-tag {
    font-size: 0.75rem;
    background-color: var(--neon-cyan);
    color: var(--text-dark);
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    letter-spacing: 0;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-cyan);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-contact {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --- Mobile Navigation Drawer --- */
.mobile-nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(7, 8, 13, 0.98);
    backdrop-filter: blur(15px);
    z-index: 99;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-link {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(7, 8, 13, 0.5) 0%,
            rgba(7, 8, 13, 0.8) 70%,
            rgba(7, 8, 13, 1) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    margin-top: 50px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(252, 135, 74, 0.05);
    box-shadow: 0 0 15px rgba(252, 135, 74, 0.1);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--text-primary);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background-color: var(--neon-cyan);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* --- Slide Slider Section --- */
.slider-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: 550px;
}

.slider-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slide-caption {
    position: relative;
    z-index: 3;
    background: linear-gradient(to top, rgba(7, 8, 13, 0.9) 0%, rgba(7, 8, 13, 0.4) 70%, transparent 100%);
    padding: 4rem 3rem 3rem 3rem;
    width: 100%;
}

.slide-caption h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.slide-caption p {
    color: var(--text-primary);
    max-width: 700px;
    font-size: 1.05rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(18, 22, 35, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--neon-cyan);
    color: var(--text-dark);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--neon-cyan);
    width: 25px;
    border-radius: 5px;
}

/* --- Highlights Grid --- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 15px 40px rgba(252, 135, 74, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Colors Section --- */
.colors-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 22, 35, 0.4) 50%, var(--bg-dark) 100%);
}

.color-display-container {
    max-width: 800px;
    margin: 4rem auto 0 auto;
}

.color-car-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(10, 11, 16, 0.8);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.car-color-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--neon-cyan);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    transition: background 0.8s ease;
}

#colored-car-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.color-name-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(7, 8, 13, 0.85);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.color-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.color-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.color-dot:hover {
    transform: scale(1.15);
}

.color-dot.active {
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* --- Specifications Section --- */
.specs-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.tab-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.tab-btn.active {
    background: var(--neon-cyan);
    color: var(--text-dark);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.specs-table th,
.specs-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: rgba(10, 11, 16, 0.5);
}

.specs-table tbody tr {
    transition: var(--transition-fast);
}

.specs-table tbody tr:hover {
    background: rgba(0, 243, 255, 0.02);
}

.highlight-column {
    background: rgba(252, 135, 74, 0.04);
    border-left: 1px solid rgba(252, 135, 74, 0.1);
    border-right: 1px solid rgba(252, 135, 74, 0.1);
    font-weight: 700;
}

th.highlight-column {
    background: rgba(252, 135, 74, 0.1) !important;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(252, 135, 74, 0.3);
}

.enabled-feature {
    color: var(--neon-green);
    font-size: 1.1rem;
}

.disabled-feature {
    color: var(--text-muted);
    opacity: 0.5;
}

.brochure-download-container {
    margin-top: 4rem;
}

/* --- Sales Profile Section --- */
.sales-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 22, 35, 0.5) 100%);
}

.sales-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sales-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

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

.sales-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--neon-cyan);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(252, 135, 74, 0.4);
}

.sales-info {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.area-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sales-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.sales-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(252, 135, 74, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.3rem;
}

.contact-details .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.contact-details .value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.sales-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #040508;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
}

.footer-brand p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.footer-disclaimer {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 90;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp .tooltip {
    position: absolute;
    right: 75px;
    background: rgba(7, 8, 13, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Modal Overlay & Box --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-dark);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    width: 90%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    box-shadow: 0 25px 50px rgba(252, 135, 74, 0.25);
    padding: 0;
}

.form-modal-box {
    padding: 3rem 2.5rem;
}

.modal-promo-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.promo-modal-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.promo-modal-action {
    padding: 1.5rem;
    background: rgba(18, 22, 35, 0.95);
    border-top: 1px solid var(--border-color);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 8, 13, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 100;
}

.modal-close:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(252, 135, 74, 0.4);
}

.modal-header {
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(252, 135, 74, 0.2);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* --- Reveal-on-Scroll Animations --- */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Location Section --- */
.location-section {
    background: linear-gradient(180deg, rgba(18, 22, 35, 0.5) 0%, var(--bg-dark) 100%);
}

.map-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.map-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    border-right: 1px solid var(--border-color);
}

.map-info-item {
    display: flex;
    gap: 1rem;
}

.map-info-item .icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 0.25rem;
}

.map-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.map-info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark-theme map filter trick! */
    filter: invert(90%) hue-rotate(180deg) contrast(1.2) saturate(0.6);
    -webkit-filter: invert(90%) hue-rotate(180deg) contrast(1.2) saturate(0.6);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .slider-container {
        height: 450px;
    }

    .sales-card {
        grid-template-columns: 1fr;
    }

    .sales-image-container {
        min-height: 300px;
        height: 350px;
    }

    .map-card {
        grid-template-columns: 1fr;
    }

    .map-info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2.5rem 2rem;
    }

    .map-iframe-container {
        height: 350px;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .slider-container {
        height: 350px;
    }

    .slide-caption {
        padding: 2rem 1.5rem;
    }

    .slide-caption h3 {
        font-size: 1.5rem;
    }

    .slide-caption p {
        font-size: 0.95rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sales-buttons {
        grid-template-columns: 1fr;
    }

    .modal-box {
        max-width: 380px;
    }

    .promo-modal-action {
        padding: 1.25rem 1rem;
    }
}