/* ============================================
   VVIP RENTCAR — Premium Luxury Design
   Palette: Navy Deep + Gold Accent + Cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --navy:        #0B0F1A;
    --navy-2:      #111827;
    --navy-card:   #161D2E;
    --navy-footer: #080C14;
    --gold:        #C9A84C;
    --gold-light:  #E2C077;
    --gold-dim:    rgba(201,168,76,0.15);
    --white:       #FFFFFF;
    --gray-1:      #9CA3AF;
    --gray-2:      #4B5563;
    --border-dim:  rgba(255,255,255,0.07);
    --border-gold: rgba(201,168,76,0.2);
    --wa-btn:      #25D366;
    --wa-hover:    #1EBE5C;

    /* Spacing & Shape */
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   28px;
    --radius-xl:   40px;

    /* Transitions */
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --transition:  0.35s var(--ease);
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    background-color: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

/* ── HEADER ──────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(11, 15, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 68px;
}

.logo {
    min-width: 0;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
}
.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray-1);
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }

/* Small, clean WA pill in nav */
.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--wa-btn) !important;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 7px 16px;
    border-radius: 100px;
    transition: all var(--transition) !important;
}
.nav-wa:hover {
    color: var(--white) !important;
    background: var(--wa-btn) !important;
    border-color: var(--wa-btn) !important;
}
.nav-wa i { font-size: 14px; }

/* ── HAMBURGER BUTTON ────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    z-index: 301;
    transition: var(--transition);
}
.hamburger:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
/* Animate to X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE OVERLAY ─────────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 299;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mobile-overlay.show {
    display: block;
    opacity: 1;
}

/* ── MOBILE DRAWER ───────────────────────── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--navy-card);
    border-left: 1px solid var(--border-dim);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-dim);
    flex-shrink: 0;
}

.mobile-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--gray-1);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-close:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.mobile-nav-links {
    list-style: none;
    padding: 16px 0;
    flex-grow: 1;
    overflow-y: auto;
}
.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-1);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.mobile-nav-links li a i {
    width: 18px;
    text-align: center;
    font-size: 15px;
    color: var(--gold);
}
.mobile-nav-links li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.04);
    border-left-color: var(--gold);
    padding-left: 28px;
}

.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid var(--border-dim);
    flex-shrink: 0;
    background: var(--navy-card);
}
.mobile-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--wa-btn);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 100px;
    transition: all var(--transition);
    font-family: 'Sora', sans-serif;
}
.mobile-wa-btn:hover {
    background: var(--wa-hover);
    transform: translateY(-1px);
}
.mobile-wa-btn i { font-size: 18px; }

.mobile-nav-info {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── HERO ───────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/img/hero.png');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    transform: scale(1.05);
    animation: slow-zoom 20s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11, 15, 26, 0.90) 0%,
        rgba(11, 15, 26, 0.70) 55%,
        rgba(11, 15, 26, 0.30) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 108px 0 72px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-badge .pulse {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201,168,76,0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* Stat badges */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}
.stat-item span {
    font-size: 13px;
    color: var(--gray-1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── SECTION COMMONS ─────────────────────── */
.section {
    padding: 100px 0;
}

.tag-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.tag-line::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-sub {
    font-size: 16px;
    color: var(--gray-1);
    max-width: 500px;
    line-height: 1.75;
}

/* ── ABOUT SECTION ───────────────────────── */
.about-section {
    background: var(--navy-2);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.about-inner {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 80px;
    align-items: center;
}

.about-left .section-sub {
    max-width: 100%;
    margin-top: 16px;
}

.about-heading {
    font-size: 34px;
    margin-bottom: 24px;
}
.about-sub-1 {
    margin-bottom: 16px;
}
.about-sub-2 {
    margin-bottom: 32px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
}
.pill:hover {
    background: rgba(201,168,76,0.25);
    transform: translateY(-2px);
}
.pill i { font-size: 12px; }

/* Stat grid on the right */
.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-stat-card {
    background: var(--navy-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
}
.about-stat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.about-stat-card strong {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.about-stat-card span {
    font-size: 13px;
    color: var(--gray-1);
    font-weight: 500;
    line-height: 1.4;
}
/* Wide top card spanning full width */
.about-stat-card.full {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
    border-color: rgba(201,168,76,0.22);
}

/* ── KEUNGGULAN ──────────────────────────── */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.adv-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.adv-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transition: width var(--transition);
}
.adv-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.adv-card:hover::after { width: 100%; }

.adv-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 28px;
    transition: all var(--transition);
}
.adv-card:hover .adv-icon-wrap {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(5deg) scale(1.1);
}

.adv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.adv-card p {
    font-size: 14px;
    color: var(--gray-1);
    line-height: 1.75;
}

/* ── ARMADA ──────────────────────────────── */
.armada-section { background: var(--navy-2); }

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.car-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.car-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}

.car-img-wrap {
    width: 100%;
    height: 220px;
    background: #0d1424;
    overflow: hidden;
    position: relative;
}
.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}
.car-card:hover .car-img-wrap img {
    transform: scale(1.07);
}

.car-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.car-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.car-body p {
    font-size: 14px;
    color: var(--gray-1);
    margin-bottom: 28px;
    flex-grow: 1;
}

.car-price-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.car-note {
    font-size: 12px;
    color: var(--gray-1);
    margin-bottom: 18px;
    max-width: 220px;
    line-height: 1.4;
    font-style: italic;
}

.armada-note {
    font-size: 13px;
    color: var(--gray-1);
    margin-top: 18px;
    font-style: italic;
}

.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--wa-btn);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 100px;
    transition: all var(--transition);
    font-family: 'Sora', sans-serif;
}
.btn-wa:hover {
    background: var(--wa-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ── CONTACT / CTA ───────────────────────── */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: var(--navy-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 80px 80px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -160px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-box h2 span { color: var(--gold); }

.cta-box > p {
    font-size: 17px;
    color: var(--gray-1);
    max-width: 500px;
    margin: 0 auto 48px;
}

/* 4-column contact info grid */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-dim);
}
.c-info-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition);
}
.c-info-item:hover {
    border-color: var(--border-gold);
    background: var(--gold-dim);
}
.c-info-item .icon {
    width: 44px; height: 44px;
    background: var(--gold-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--gold);
    margin: 0 auto 14px;
}
.c-info-item .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-1);
    margin-bottom: 6px;
}
.c-info-item .value {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    word-break: break-word;
}

/* ── FOOTER ──────────────────────────────── */
footer {
    background: var(--navy-footer);
    border-top: 1px solid var(--border-dim);
    padding: 0;
}

.footer-top {
    padding: 64px 0 56px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid var(--border-dim);
}

.footer-brand .logo {
    margin-bottom: 16px;
    font-size: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-1);
    line-height: 1.8;
    max-width: 280px;
}

.footer-brand .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-1);
    font-size: 15px;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--gold-dim);
    border-color: var(--border-gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray-1);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 13px;
    color: var(--gray-2);
}
.footer-seo {
    font-size: 12px;
    color: var(--gray-2);
    text-align: right;
}

/* ── FLOATING WA BUTTON ──────────────────── */
.floating-wa {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 64px; height: 64px;
    background: var(--wa-btn);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.35);
    z-index: 199;
    transition: all var(--transition);
    animation: wa-pulse 3s ease-in-out infinite;
}
.floating-wa:hover {
    background: var(--wa-hover);
    transform: scale(1.1) rotate(-5deg);
    animation: none;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.35); }
    50%       { box-shadow: 0 10px 50px rgba(37,211,102,0.6); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile-First Breakpoints
   ══════════════════════════════════════════════ */

/* ── Tablet Landscape: ≤ 1100px ─────────────── */
@media (max-width: 1100px) {
    .hero h1 { font-size: 50px; }
    .cars-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }
}

/* ── Tablet Portrait: ≤ 900px ───────────────── */
@media (max-width: 900px) {
    .container { padding: 0 20px; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { min-height: 90vh; }
    .hero h1 { font-size: 44px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { gap: 0; margin-top: 40px; padding-top: 28px; }
    .stat-item { padding-right: 20px; margin-right: 20px; }
    .stat-item strong { font-size: 24px; }

    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-right { grid-template-columns: repeat(2, 1fr); }
    .about-stat-card.full { grid-column: 1 / -1; }

    .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .contact-info-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cta-box { padding: 60px 40px; }
    .cta-box h2 { font-size: 36px; }
}

/* ── Mobile: ≤ 640px ────────────────────────── */
@media (max-width: 640px) {
    .container { padding: 0 16px; }

    .navbar { height: 60px; justify-content: space-between; }
    .logo { font-size: 18px; }
    .logo img { height: 38px; }
    .hamburger { width: 36px; height: 36px; }

    .hero { min-height: 100svh; align-items: flex-end; }
    .hero-overlay {
        background: linear-gradient(
            to top,
            rgba(11,15,26,0.98) 0%,
            rgba(11,15,26,0.7) 50%,
            rgba(11,15,26,0.2) 100%
        );
    }
    .hero-content {
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 48px;
        text-align: left;
    }
    .hero-badge { font-size: 11px; padding: 5px 14px; margin-bottom: 20px; }
    .hero h1 { font-size: 34px; margin-bottom: 16px; }
    .hero-desc { font-size: 15px; margin-bottom: 28px; }
    .btn-group { flex-direction: column; align-items: flex-start; gap: 10px; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; font-size: 14px; padding: 13px 20px; }
    .hero-stats {
        margin-top: 28px;
        padding-top: 24px;
        flex-wrap: wrap;
        gap: 16px 24px;
    }
    .stat-item { min-width: auto; }
    .stat-item strong { font-size: 22px; }
    .stat-item span { font-size: 11px; }

    .section { padding: 64px 0; }
    .section-heading { font-size: 28px; }
    .section-sub { font-size: 15px; }
    .tag-line { font-size: 10px; }

    .about-heading { font-size: 28px; margin-bottom: 16px; }
    .about-sub-1 { margin-bottom: 12px; }
    .about-sub-2 { margin-bottom: 24px; }
    .about-inner { gap: 36px; }
    .about-right { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-stat-card { padding: 20px 14px; }
    .about-stat-card strong { font-size: 26px; }
    .about-pills { gap: 8px; }
    .pill { font-size: 12px; padding: 7px 14px; }

    .adv-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
    .adv-card { padding: 28px 24px; }

    .cars-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
    .car-img-wrap { height: 200px; }
    .car-body { padding: 24px 20px; }
    .car-body h3 { font-size: 18px; }

    /* CTA / Contact Mobile Safe */
    .cta-box { padding: 40px 20px; border-radius: 20px; }
    .cta-box h2 { font-size: 26px; }
    .cta-box > p { font-size: 15px; margin-bottom: 32px; }
    .contact-info-row { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; padding-bottom: 32px; }
    .c-info-item { padding: 16px 10px; }
    .c-info-item .icon { width: 36px; height: 36px; font-size: 14px; margin-bottom: 10px; }
    .c-info-item .value { font-size: 13px; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
    .footer-brand { grid-column: auto; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-seo { text-align: left; }

    .floating-wa { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 26px; }
}

/* ── Tiny Mobile: ≤ 380px ───────────────────── */
@media (max-width: 380px) {
    .hero h1 { font-size: 30px; }
    .about-right { grid-template-columns: 1fr; }
    .contact-info-row { grid-template-columns: 1fr; }
}

.logo {
    display: flex;
    align-items: center;
    max-height: 50px;
}

.navbar > .logo + .logo,
.mobile-nav-header .logo + .logo {
    margin-left: 10px;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
