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

:root {
    /* Premium Light Theme Color Palette */
    --bg-dark: #f8fafc;
    /* Rebranded: Overall Light background */
    --bg-card: #ffffff;
    /* pure white cards */
    --bg-glass: rgba(255, 255, 255, 0.85);
    /* Frosty white glass */
    --border-glass: rgba(0, 0, 0, 0.08);
    /* subtle dark border */

    --text-main: #0f172a;
    /* Slate 900 for high contrast reading */
    --text-muted: #64748b;
    /* Slate 500 for secondary text */

    --accent-amber: #0ea5e9;
    /* Sky blue accent representing precision */
    --accent-amber-hover: #0284c7;
    --accent-amber-glow: rgba(14, 165, 233, 0.3);

    --whatsapp-green: #25d366;
    --whatsapp-hover: #128c7e;

    --metallic-light: #94a3b8;
    --metallic-mid: #e2e8f0;
    --metallic-dark: #cbd5e1;

    /* Metrics */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-xl: 32px;

    --nav-height: 200px;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
    position: relative;
}

.pt-nav {
    padding-top: calc(var(--nav-height) + 60px);
}

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

.text-amber {
    color: var(--accent-amber);
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 2.5rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--metallic-mid);
}

::-webkit-scrollbar-thumb {
    background: var(--metallic-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--metallic-mid);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: var(--accent-amber);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-amber-glow);
}

.btn-primary:hover:not(.disabled) {
    background: var(--accent-amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-amber);
    color: var(--accent-amber);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover:not(.disabled) {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.btn.disabled,
button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
}

/* Panels */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* ===== Premium Glassmorphism Header ===== */
header.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85); /* Glass base */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

header.premium-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 195px; /* Even larger logo as requested */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

header.premium-header.scrolled .logo-img {
    height: 110px; /* Shrinks cleanly when scrolled */
}

/* Base Footer Logo adjustment */
.footer-logo-img {
    height: 100px;
}

/* Nav Menu */
.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    background: transparent;
    border: none;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 50px;
    transition: var(--transition-fast);
    white-space: nowrap;
    display: inline-flex;
    position: relative;
}

/* Active and Hover States for Links */
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-amber);
    background: rgba(14, 165, 233, 0.08);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent-amber);
    border-radius: 4px;
}

/* Action Area (Right Side) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.header-phone i {
    color: var(--accent-amber);
    font-size: 1.2rem;
}

.header-phone:hover {
    color: var(--accent-amber);
    transform: translateY(-2px);
}

.header-actions .btn-whatsapp {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 50px; /* Pill shaped button */
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Exclusive Menu Items */
.mobile-only-btn {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: #f1f5f9;
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: #e2e8f0;
    color: var(--accent-amber);
}

/* Hero Section - Split Layout completely redesigned for Light Theme */
.hero-modern {
    padding-bottom: 60px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-modern-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    max-width: 1400px;
}

.hero-modern-text {
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 10px 24px 10px 10px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    position: relative;
    transition: transform var(--transition-fast);
}

.hero-trust-badge:hover {
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-amber);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px var(--accent-amber-glow);
}

.trust-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-main {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.trust-sub {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ef4444;
    /* Punchy red for warning */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-modern-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.hero-modern-text .hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 95%;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-modern-actions {
    display: flex;
    gap: 16px;
}

/* Base style overrides to make buttons match reference more closely */
.hero-modern-actions .btn-primary {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 50px;
}

.hero-modern-actions .btn-outline {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hero-modern-actions .btn-outline:hover {
    background: var(--bg-dark);
}

/* Image Wrapper */
.hero-modern-visual {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
}

.hero-modern-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--metallic-mid);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Massive overlay logos */
.hero-huge-logos {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 5;
    border: 1px solid var(--border-glass);
}

.hero-huge-logos img {
    height: 55px;
    object-fit: contain;
}

/* Floating Stats bottom bar */
.hero-modern-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 40px 40px 0 0;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-symbol {
    color: var(--accent-amber);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Filter Panel */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.filter-panel {
    padding: 30px;
    margin-top: 40px;
}

.filter-steps {
    display: flex;
    padding: 10px 0;
    gap: 15px;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-steps::-webkit-scrollbar {
    display: none;
}

.filter-arrow {
    display: flex;
    align-items: center;
    color: var(--metallic-dark);
    font-size: 1.5rem;
}

.filter-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transition: var(--transition-fast);
}

.filter-step.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.step-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.filter-opt-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.filter-opt-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--accent-amber);
}

.filter-opt-btn.active {
    background: var(--accent-amber);
    color: #fff;
    border-color: var(--accent-amber);
    box-shadow: 0 4px 10px var(--accent-amber-glow);
}

.filter-opt-btn img {
    height: 26px;
    width: auto;
    object-fit: contain;
}

.year-btn,
.motor-btn {
    padding: 10px 5px;
    font-size: 0.9rem;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-glass);
}

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

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(14, 165, 233, 0.3);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--accent-amber);
    color: var(--text-main);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: var(--text-main);
}

.card-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-amber);
    font-weight: 700;
    margin-bottom: 5px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--text-main);
}

.card-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spec-tag {
    background: rgba(0, 0, 0, 0.04);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
    grid-column: 1 / -1;
    gap: 15px;
}

.no-results i {
    font-size: 3rem;
}

/* Offer Section */
.offer-section {
    padding: 120px 0;
}

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.4;
}

.offer-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: var(--radius-xl);
}

.offer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.offer-form {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-glass);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-amber);
    background: #ffffff;
    box-shadow: 0 0 0 3px var(--accent-amber-glow);
}

.form-group select option {
    background: #ffffff;
    color: var(--text-main);
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-map {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-glass);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-list-large {
    list-style: none;
    padding: 0;
}

.contact-list-large li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-glass);
}

.contact-list-large .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-amber);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Floating Map Button */
.floating-map-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    color: var(--text-main);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-glass);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-medium);
}

.floating-map-btn i {
    color: #ef4444; /* Standard Google Maps Red */
    font-size: 2rem;
}

.floating-map-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    color: var(--accent-amber);
}

/* Footer */
footer {
    background: #f8fafc;
    padding: 80px 0 0 0;
    border-top: 1px solid var(--metallic-mid);
}

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

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-amber);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    color: var(--metallic-mid);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    max-width: 80vw;
    height: 100%;
    background: #ffffff;
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 80px 24px 24px;
    overflow-y: auto;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-drawer .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-menu-drawer .mobile-nav-links a {
    display: block;
    padding: 14px 16px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-menu-drawer .mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--accent-amber);
}

.mobile-menu-drawer .mobile-menu-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--whatsapp-green);
    color: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
}

body.menu-open {
    overflow: hidden;
}

/* ===== Responsive Media Queries ===== */
@media (max-width: 992px) {
    :root {
        --nav-height: 170px;
    }

    .top-strip-copy {
        gap: 12px;
        font-size: 0.78rem;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .logo-img {
        height: 100px;
    }

    .filter-steps {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .filter-arrow {
        display: none;
    }

    .offer-wrapper {
        flex-direction: column;
    }

    /* Hero Modern - tablet */
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-modern-text {
        padding-right: 0;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .hero-modern-text .hero-desc {
        max-width: 100%;
    }

    .hero-modern-actions {
        justify-content: center;
    }

    .hero-trust-badge {
        margin: 0 auto;
    }

    .hero-modern-visual {
        height: 400px;
    }

    .hero-huge-logos {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        gap: 15px;
    }

    .hero-huge-logos img {
        height: 40px;
    }

    .hero-modern-stats {
        padding: 20px 25px;
    }

    /* Location - tablet */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-map {
        height: 350px;
    }

    /* Section padding */
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 120px;
    }

    /* Top strip hidden on mobile */
    .top-strip {
        display: none;
    }

    /* Logo band smaller */
    .header-logo-band {
        padding: 10px 0;
    }

    .logo-img {
        height: 85px;
    }

    header.scrolled .header-logo-band .logo-img {
        height: 60px;
    }

    /* Nav bar hidden on mobile, replaced by drawer overlay */
    .header-nav {
        display: none;
    }

    .mobile-only-btn {
        display: block;
        padding: 10px 20px;
    }

    .mobile-only-btn a.btn-whatsapp {
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 50px;
        color: white; /* Important override */
        background: var(--whatsapp-green);
    }

    .nav-container .btn-whatsapp {
        display: none;
    }

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

    .footer-logo-img {
        height: 65px;
    }

    /* Hero Modern */
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-modern-text h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-modern-text .hero-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-modern-visual {
        height: 300px;
    }

    .hero-modern-image-wrapper {
        border-radius: 20px;
    }

    .hero-huge-logos {
        top: 12px;
        right: 12px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .hero-huge-logos img {
        height: 30px;
    }

    .hero-modern-stats {
        padding: 15px 12px;
        border-radius: 20px 20px 0 0;
        gap: 5px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-modern-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-modern-actions .btn-primary,
    .hero-modern-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hero-trust-badge {
        padding: 8px 16px 8px 8px;
        gap: 10px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .trust-main {
        font-size: 1.1rem;
    }

    .trust-sub {
        font-size: 0.8rem;
    }

    /* Section padding */
    .section {
        padding: 50px 0;
    }

    .pt-nav {
        padding-top: calc(var(--nav-height) + 30px);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .filter-steps {
        flex-direction: column; /* Stack steps */
        align-items: stretch;
        gap: 15px;
    }

    .filter-arrow {
        display: none; /* Hide horizontal arrows */
    }

    .filter-panel {
        padding: 16px;
        margin-top: 24px;
    }

    .filter-step {
        width: 100%; /* Take full width */
        min-width: unset;
    }

    .filter-actions {
        flex-direction: column;
        gap: 10px;
    }

    .filter-actions .btn {
        width: 100%;
    }

    /* Product grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Offer section */
    .offer-section {
        padding: 60px 0;
    }

    .offer-wrapper {
        padding: 24px;
        gap: 24px;
        border-radius: var(--radius-lg);
    }

    .offer-content .section-title {
        font-size: 1.6rem;
    }

    .offer-benefits li {
        font-size: 0.95rem;
    }

    .offer-form {
        padding: 20px;
    }

    /* Form rows */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grid-auto {
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    }

    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-map {
        height: 280px;
        border-radius: 16px;
    }

    .contact-list-large li {
        padding: 16px;
        gap: 14px;
        margin-bottom: 16px;
    }

    .contact-list-large .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        padding: 50px 0 0 0;
    }

    /* Floating map button */
    .floating-map-btn {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .floating-map-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 110px;
    }

    .logo-img {
        height: 105px;
    }

    header.premium-header.scrolled .logo-img {
        height: 75px;
    }

    header.premium-header {
        padding: 10px 0;
    }
    
    .header-actions {
        gap: 10px;
    }

    .header-phone, 
    .header-actions .btn-whatsapp {
        display: none;
    }

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

    .hero-modern-text h1 {
        font-size: 2rem;
    }

    .hero-modern-visual {
        height: 240px;
    }

    .hero-huge-logos {
        top: 8px;
        right: 8px;
        padding: 8px 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .hero-huge-logos img {
        height: 24px;
    }

    .hero-modern-stats {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .offer-wrapper {
        padding: 16px;
    }

    .offer-form {
        padding: 16px;
    }

    .contact-list-large .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* --- Product Modal --- */
.product-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.product-modal .modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent-amber);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-main-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 15px;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modal-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--bg-light);
    padding: 5px;
}

.modal-thumb:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.modal-thumb.active {
    border-color: var(--accent-amber);
}

@media (max-width: 768px) {
    .product-modal .modal-content {
        padding: 16px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-main-img {
        height: 200px;
    }

    .modal-thumb {
        width: 60px;
        height: 60px;
    }
}
