/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #172244;
    --accent: #104272;
    --accent-dark: #00326b;
    --accent-light: #4c5482;
    --accent-bright: #5b8cc5;
    --accent-glow: #7eb3e0;
    --gold: #c9a84c;
    --gold-light: #dfc477;
    --text: #172244;
    --text-light: #5a6280;
    --text-muted: #8b92a8;
    --bg: #ffffff;
    --bg-gray: #f4f6fa;
    --bg-dark: #0e1628;
    --border: #dde1ec;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 40px -12px rgba(0,0,0,.15);
    --shadow-xl: 0 32px 64px -16px rgba(0,0,0,.2);
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --transition-slow: .5s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all .4s ease;
}

.header.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(0,0,0,.06);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 34px;
    width: auto;
    transition: opacity var(--transition);
}

.header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.logo-img-footer {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: .8;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}

.header:not(.scrolled) .nav-link {
    color: rgba(255,255,255,.75);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(16,66,114,.06);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all var(--transition);
}

.header-phone:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16,66,114,.3);
    color: #fff;
}

.header-phone svg {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.menu-toggle:active {
    background: rgba(0,0,0,.05);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

.header:not(.scrolled) .menu-toggle span {
    background: #fff;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #172244 0%, #0d2d52 40%, #104272 70%, #0a3a68 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(126,179,224,.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r=".4" fill="rgba(255,255,255,.02)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>'),
        linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 40%, transparent 60%, rgba(0,0,0,.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: .5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.highlight {
    color: var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 72px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.stat {
    position: relative;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-plus, .stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: .88rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    letter-spacing: .2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,66,114,.35);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.25);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
}

.btn-small {
    padding: 10px 22px;
    font-size: .8rem;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
}

.btn-small:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,66,114,.2);
}

.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section {
    padding: 110px 0;
}

.section-gray {
    background: var(--bg-gray);
}

.section-dark {
    background: var(--bg-dark);
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
    background: rgba(16,66,114,.06);
    padding: 8px 18px;
    border-radius: 50px;
}

.section-dark .section-tag {
    color: var(--gold);
    background: rgba(201,168,76,.1);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.8px;
    line-height: 1.2;
    color: var(--text);
}

.section-dark .section-title {
    color: #fff;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-dark .section-desc {
    color: rgba(255,255,255,.5);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.about-feature:hover {
    background: var(--bg-gray);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(16,66,114,.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.about-feature strong {
    display: block;
    margin-bottom: 2px;
    font-size: .95rem;
}

.about-feature p {
    font-size: .88rem !important;
    margin-bottom: 0 !important;
    color: var(--text-muted) !important;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #e8ecf4, #d5dbe8);
    border-radius: var(--radius-lg);
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #a0a8c0;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(16,66,114,.06);
    border-radius: var(--radius-lg);
}

.about-image-placeholder span {
    font-size: .82rem;
    font-weight: 500;
}

/* ===== BRANDS ===== */
.brands-section {
    padding: 72px 0;
    background: var(--bg-gray);
    overflow: hidden;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.brand-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: .88rem;
    color: var(--text);
    transition: all var(--transition);
    cursor: default;
}

.brand-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== VEHICLES ===== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vehicle-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vehicle-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #e8ecf4, #d5dbe8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-placeholder {
    color: #b8c0d4;
    transition: transform .6s ease;
}

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

.vehicle-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.vehicle-info {
    padding: 22px;
}

.vehicle-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vehicle-details {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

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

.vehicle-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 36px 28px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.service-card:hover {
    background: #fff;
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(16,66,114,.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
}

.service-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: .4;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-card > p {
    color: rgba(255,255,255,.75);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    color: #fff;
    font-size: .88rem;
}

.testimonial-author-info span {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    background: #fff;
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(16,66,114,.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--accent);
    color: #fff;
}

.contact-card h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.contact-card p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--accent-dark);
}

/* ===== FORM ===== */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form .form-subtitle {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 14px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: .9rem;
    font-family: inherit;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg-gray);
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16,66,114,.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-privacy {
    font-size: .73rem;
    color: var(--text-muted);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 92px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.55);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: .88rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: .88rem;
    padding: 5px 0;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--accent-glow);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent-glow);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
}

.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 700;
    text-align: center;
}

.mobile-cta-call {
    background: var(--accent);
    color: #fff !important;
}

.mobile-cta-wa {
    background: #25d366;
    color: #fff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .vehicles-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        height: 64px;
    }

    .logo-img {
        height: 28px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all .35s ease;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 28px;
        color: var(--text) !important;
        border-radius: 12px;
    }

    .nav-link:hover, .nav-link.active {
        background: var(--bg-gray) !important;
        color: var(--accent) !important;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span {
        background: var(--text) !important;
    }

    .header-phone {
        display: none;
    }

    /* Hero mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 110px 0 100px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: .7rem;
        padding: 7px 14px;
    }

    .hero-stats {
        gap: 0;
        justify-content: space-between;
    }

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

    .stat-label {
        font-size: .65rem;
        letter-spacing: 1px;
    }

    .hero-actions {
        margin-bottom: 48px;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 0;
        padding: 14px 20px;
        font-size: .85rem;
    }

    /* Sections mobile */
    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .vehicles-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .brand-item {
        padding: 16px 10px;
        font-size: .82rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-card {
        padding: 18px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    /* WhatsApp & scroll top mobile */
    .whatsapp-float {
        bottom: 84px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .scroll-top {
        bottom: 146px;
        right: 20px;
        width: 38px;
        height: 38px;
    }

    .mobile-cta-bar {
        display: flex;
    }

    /* Add bottom padding for fixed bar */
    .footer {
        padding-bottom: 80px;
    }

    .map-container iframe {
        height: 280px !important;
    }

    /* Vehicle cards horizontal on mobile */
    .vehicle-card {
        display: flex;
        flex-direction: row;
    }

    .vehicle-image {
        width: 140px;
        min-width: 140px;
        height: auto;
        min-height: 140px;
    }

    .vehicle-info {
        padding: 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .vehicle-footer {
        padding-top: 12px;
    }

    .vehicle-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        min-width: 80px;
    }

    .about-feature {
        padding: 12px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: .08s; }
.fade-in:nth-child(3) { transition-delay: .16s; }
.fade-in:nth-child(4) { transition-delay: .24s; }
.fade-in:nth-child(5) { transition-delay: .32s; }
.fade-in:nth-child(6) { transition-delay: .4s; }
.fade-in:nth-child(7) { transition-delay: .48s; }
.fade-in:nth-child(8) { transition-delay: .56s; }
.fade-in:nth-child(9) { transition-delay: .64s; }
.fade-in:nth-child(10) { transition-delay: .72s; }
.fade-in:nth-child(11) { transition-delay: .8s; }
.fade-in:nth-child(12) { transition-delay: .88s; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
