/* ============================================
   EXPLORE & DRIVE PTY — Main Stylesheet
   Brand: #121312 + #fd7501 · Bold · App-feel
   ============================================ */

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

:root {
    /* Brand — exact */
    --black: #121312;
    --orange: #fd7501;
    --orange-hover: #e66a00;
    --orange-light: rgba(253,117,1,0.08);
    --orange-glow: rgba(253,117,1,0.25);

    /* Surfaces */
    --bg: #FAFAF8;
    --bg-alt: #FFFFFF;
    --bg-card: #FFFFFF;
    --border: #E5E5E0;
    --border-light: #F0F0EC;

    /* Text */
    --text: #121312;
    --text-sec: #555;
    --text-muted: #999;
    --white: #FFFFFF;

    /* Semantic */
    --wa: #25D366;
    --wa-dark: #1DA851;
    --star: #F59E0B;
    --turquoise: #0891B2;

    /* Gradient */
    --grad-orange: linear-gradient(135deg, #fd7501, #ff9a3c);

    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-d: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-py: clamp(64px, 10vw, 120px);
    --px: clamp(18px, 5vw, 72px);
    --max-w: 1200px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* Shadows */
    --sh-xs: 0 1px 3px rgba(0,0,0,0.04);
    --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
    --sh-md: 0 8px 30px rgba(0,0,0,0.08);
    --sh-lg: 0 20px 60px rgba(0,0,0,0.12);
    --sh-hover: 0 12px 40px rgba(0,0,0,0.12);

    /* Ease */
    --ease: cubic-bezier(0.16,1,0.3,1);
    --dur: 0.35s;

    /* Z */
    --z-nav: 1000;
    --z-menu: 999;
    --z-bottom: 950;
    --z-wa: 900;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section { padding: var(--section-py) 0; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto clamp(40px,6vw,64px); }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: var(--orange-light);
    border-radius: var(--r-full); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-d); font-size: clamp(1.6rem,4vw,2.6rem);
    font-weight: 700; line-height: 1.15; color: var(--black); margin-bottom: 12px;
}
.section-subtitle { font-size: clamp(0.88rem,1.4vw,1rem); color: var(--text-sec); line-height: 1.65; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--r-full); font-weight: 600; font-size: 0.9rem;
    transition: all var(--dur) var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--grad-orange); color: #fff; box-shadow: 0 4px 16px var(--orange-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(253,117,1,0.35); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #1e1f1e; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════
   NAVBAR — Desktop
   Default (over hero): transparent + white text
   .scrolled: solid light + dark text
   ══════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
    padding: 14px 0; transition: all var(--dur) var(--ease);
    background: transparent;
}
.navbar.scrolled {
    padding: 8px 0;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav-container {
    max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 11px; z-index: 10; }
.logo-img {
    width: 50px; height: 50px; display: block;
    border-radius: 50%;
    transition: transform var(--dur) var(--ease);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.18));
}
.nav-logo:hover .logo-img { transform: scale(1.06); }

/* Wordmark next to the badge */
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-d); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.06em; color: #fff; white-space: nowrap;
    transition: color var(--dur) var(--ease);
}
.logo-amp { color: var(--orange); }
.logo-sub {
    font-size: 0.55rem; font-weight: 600; letter-spacing: 0.28em;
    color: rgba(255,255,255,0.6); margin-top: 3px;
    transition: color var(--dur) var(--ease);
}

@media (max-width: 1023px) {
    .logo-img { width: 44px; height: 44px; }
    .logo-name { font-size: 0.74rem; }
    .logo-sub { font-size: 0.48rem; letter-spacing: 0.22em; }
}
@media (max-width: 380px) {
    .logo-text { display: none; }
}

/* Nav Links — default (over hero): light */
.nav-links { display: none; list-style: none; gap: 2px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
    padding: 8px 14px; font-size: 0.82rem; font-weight: 500;
    color: rgba(255,255,255,0.85); border-radius: var(--r-full);
    transition: all 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--orange); background: rgba(253,117,1,0.18); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; z-index: 10; }
.nav-cta {
    display: none; align-items: center; gap: 8px; padding: 10px 20px;
    background: var(--grad-orange); border-radius: var(--r-full);
    font-size: 0.8rem; font-weight: 600; color: #fff;
    box-shadow: 0 4px 16px var(--orange-glow);
    transition: all var(--dur) var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(253,117,1,0.35); }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* ── SCROLLED STATE: dark text on light bg ── */
.navbar.scrolled .logo-name { color: var(--black); }
.navbar.scrolled .logo-sub { color: var(--text-muted); }
.navbar.scrolled .nav-link { color: var(--text-sec); }
.navbar.scrolled .nav-link:hover { color: var(--black); background: rgba(0,0,0,0.04); }
.navbar.scrolled .nav-link.active { color: var(--orange); background: var(--orange-light); }
.navbar.scrolled .nav-cta { background: var(--black); color: #fff; box-shadow: none; }
.navbar.scrolled .nav-cta:hover { background: #1e1f1e; box-shadow: var(--sh-sm); }
.navbar.scrolled .hamburger span { background: var(--black); }

/* Lang */
.lang-switcher { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: 4px; padding: 6px 10px;
    border-radius: var(--r-sm); font-size: 0.7rem; font-weight: 600;
    color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
}
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.navbar.scrolled .lang-btn { color: var(--text-muted); border-color: var(--border); }
.navbar.scrolled .lang-btn:hover { color: var(--black); border-color: var(--text-muted); }
.lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 6px; min-width: 130px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.2s var(--ease); box-shadow: var(--sh-md);
}
.lang-switcher:hover .lang-dropdown, .lang-switcher.open .lang-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-option { display: block; padding: 8px 12px; font-size: 0.82rem; color: var(--text-sec); border-radius: var(--r-sm); transition: background 0.2s; }
.lang-option:hover { background: var(--bg); }
.lang-option.active { color: var(--orange); font-weight: 600; }

/* Hamburger — default (over hero): light */
.nav-toggle { display: flex; padding: 8px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all var(--dur) var(--ease); transform-origin: center; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* When mobile menu is open the overlay is light → force dark icon */
body.menu-open .navbar .hamburger span { background: var(--black); }
body.menu-open .navbar .logo-name { color: var(--black); }
body.menu-open .navbar .logo-sub { color: var(--text-muted); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed; inset: 0; z-index: var(--z-menu);
    background: rgba(250,250,248,0.97); backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; transition: all var(--dur) var(--ease);
    display: flex; align-items: center; justify-content: center;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; padding: 40px; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-link {
    display: block; padding: 14px 24px; font-family: var(--font-d);
    font-size: 1.2rem; font-weight: 600; color: var(--text-sec);
    border-radius: var(--r-md); transition: all 0.2s;
}
.mobile-link:hover, .mobile-link.active { color: var(--black); background: rgba(0,0,0,0.03); }
.mobile-menu-cta { max-width: 260px; margin: 0 auto; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ══════════════════════════════════════
   BOTTOM NAV — Mobile App-Style
   ══════════════════════════════════════ */
.bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: var(--z-bottom);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid var(--border);
    padding: 6px 0 env(safe-area-inset-bottom, 8px);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

@media (min-width: 1024px) { .bottom-nav { display: none; } }

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 0;
    font-size: 0.58rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item.active { color: var(--orange); }
.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 0 0 2px 2px;
}

.bottom-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-item svg { width: 20px; height: 20px; stroke-width: 1.8; }

.bottom-nav-item--cta {
    position: relative;
}

.bottom-nav-item--cta .bottom-nav-icon {
    width: 44px;
    height: 44px;
    background: var(--grad-orange);
    border-radius: 50%;
    margin-top: -18px;
    box-shadow: 0 4px 16px var(--orange-glow);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-item--cta { color: var(--orange); font-weight: 600; }

/* Spacer to prevent content from hiding behind bottom nav */
@media (max-width: 1023px) {
    body { padding-bottom: 72px; }
}

/* ══════════════════════════════════════
   HERO — Full-screen BG + Overlay
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Fallback shown if the photo fails to load */
.hero-bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a2540 0%, #121312 50%, #1a1a2e 100%);
}

.hero-bg-img {
    position: absolute;
    inset: -2%;
    background: url('/assets/img/hero-bg.jpg') center 35%/cover no-repeat;
    will-change: transform;
    animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18,19,18,0.55) 0%,
            rgba(18,19,18,0.25) 25%,
            rgba(18,19,18,0.55) 55%,
            rgba(18,19,18,0.92) 88%,
            #121312 100%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,19,18,0.7) 0%, rgba(18,19,18,0.2) 55%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    padding-top: 120px;
    padding-bottom: clamp(90px, 12vh, 130px);
    width: 100%;
}

@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.7); } }

.hero-title {
    font-family: var(--font-d);
    margin-bottom: 18px;
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800; line-height: 0.98;
    letter-spacing: -0.035em;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-title-accent {
    color: var(--orange);
    text-shadow: 0 4px 50px rgba(253,117,1,0.45);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}

.hero-stats {
    display: flex; align-items: center; gap: clamp(16px,4vw,40px);
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat { text-align: center; }
.hero-stat-num {
    display: block; font-family: var(--font-d);
    font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; color: #fff;
}
.hero-stat-plus { font-family: var(--font-d); font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; color: var(--orange); }
.hero-stat-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Scroll hint */
.hero-scroll {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
    display: none; flex-direction: column; align-items: center; gap: 8px;
    animation: floatY 3s ease-in-out infinite;
}
@media (min-width: 1024px) { .hero-scroll { display: flex; } }
.scroll-line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--orange), transparent); }
.hero-scroll span { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; }
@keyframes floatY { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ══════════════════════════════════════
   SECTIONS — Bold, No Pastels
   ══════════════════════════════════════ */

/* Services */
.services { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width:640px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
    position: relative; padding: 26px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); transition: all var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); border-color: transparent; }
.service-card--featured { border-color: rgba(253,117,1,0.3); }
.service-badge-hot {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px; background: var(--grad-orange);
    border-radius: var(--r-full); font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.08em; color: #fff;
}

.service-icon {
    width: 48px; height: 48px; border-radius: var(--r-md);
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; color: #fff; transition: all var(--dur) var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.05) rotate(-3deg); box-shadow: 0 4px 16px var(--orange-glow); }

.service-title { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.service-desc { font-size: 0.85rem; color: var(--text-sec); line-height: 1.6; margin-bottom: 14px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--orange); transition: all 0.2s; }
.service-link:hover { gap: 10px; }

/* Tours */
.tours { background: var(--bg); }
.tours-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
@media (min-width:768px) { .tours-grid { grid-template-columns: repeat(3,1fr); } }

.tour-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--dur) var(--ease);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); }
.tour-card--featured { border-color: rgba(253,117,1,0.3); }
.tour-badge-hot {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    padding: 6px 14px; background: var(--grad-orange);
    border-radius: var(--r-full); font-size: 0.6rem; font-weight: 700; color: #fff;
    box-shadow: 0 4px 14px var(--orange-glow);
}

.tour-image { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, #F2F2EE, #E4E4DE); }
.tour-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.42) 100%);
    pointer-events: none;
}
.tour-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.tour-card:hover .tour-img { transform: scale(1.07); }

.tour-tag {
    position: absolute; bottom: 10px; left: 10px; z-index: 2;
    padding: 5px 12px; background: rgba(18,19,18,0.65); backdrop-filter: blur(8px);
    border-radius: var(--r-full); font-size: 0.64rem; font-weight: 600; color: #fff;
    display: inline-flex; align-items: center; gap: 6px;
}
.tour-tag svg { width: 12px; height: 12px; color: var(--orange); }

/* Body — flex column so CTAs align at the bottom */
.tour-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tour-name { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.tour-desc { font-size: 0.85rem; color: var(--text-sec); line-height: 1.6; margin-bottom: 14px; }
.tour-includes {
    display: flex; align-items: flex-start; gap: 8px; font-size: 0.75rem;
    color: var(--text-sec); margin-bottom: 16px; padding: 11px 12px;
    background: var(--bg); border-radius: var(--r-sm);
    margin-top: auto;   /* push includes + button to the bottom */
    min-height: 56px;
}
.tour-includes svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.tour-body .btn { margin-top: 0; }

/* Fleet */
.fleet { background: var(--bg-alt); }
.fleet-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
@media (min-width:640px) { .fleet-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .fleet-grid { grid-template-columns: repeat(3,1fr); } }

.fleet-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--dur) var(--ease);
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); border-color: transparent; }

.fleet-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #F2F2EE, #E4E4DE);
}
.fleet-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transition: transform 0.6s var(--ease);
}
.fleet-card:hover .fleet-img { transform: scale(1.05); }

.fleet-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fleet-name { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.fleet-type { display: block; font-size: 0.74rem; font-weight: 600; color: var(--orange); margin-bottom: 9px; letter-spacing: 0.01em; }
.fleet-features { font-size: 0.82rem; color: var(--text-sec); line-height: 1.55; margin-bottom: 16px; }
/* Push CTA to the bottom so all buttons line up */
.fleet-info .btn { margin-top: auto; }

/* Why */
.why { background: var(--bg); position: relative; overflow: hidden; }
.why::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(253,117,1,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width:640px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .why-grid { grid-template-columns: repeat(3,1fr); } }

.why-card {
    position: relative; padding: 26px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--r-lg);
    transition: all var(--dur) var(--ease); overflow: hidden;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.why-number {
    font-family: var(--font-d); font-size: 3rem; font-weight: 800;
    color: rgba(253,117,1,0.06); position: absolute; top: 8px; right: 14px; line-height: 1;
}
.why-title { font-family: var(--font-d); font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 8px; position: relative; }
.why-desc { font-size: 0.82rem; color: var(--text-sec); line-height: 1.6; position: relative; }

/* Gallery */
.gallery { background: var(--bg-alt); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
@media (min-width:768px) { .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 12px; } }
.gallery-item { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (min-width:768px) { .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; } }
.gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 55%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.gallery-item:hover::after { opacity: 1; }

/* Testimonials */
.testimonials { background: var(--bg); }
.testimonials-track { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width:768px) { .testimonials-track { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
    padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); transition: all var(--dur) var(--ease);
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.testimonial-stars { color: var(--star); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.88rem; color: var(--text-sec); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--black); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: var(--orange); flex-shrink: 0;
}
.testimonial-name { display: block; font-size: 0.82rem; font-weight: 600; color: var(--black); }
.testimonial-location { font-size: 0.72rem; color: var(--text-muted); }

/* CTA Banner */
.cta-banner {
    position: relative; padding: clamp(64px,10vw,100px) 0; overflow: hidden;
    background: var(--black);
}
.cta-banner::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(253,117,1,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; text-align: center; max-width: 580px; margin: 0 auto; }
.cta-title { font-family: var(--font-d); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-subtitle { font-size: clamp(0.88rem,1.4vw,1rem); color: rgba(255,255,255,0.5); margin-bottom: 26px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Contact */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
    padding: 26px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.contact-info-card h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-icon {
    width: 36px; height: 36px; border-radius: var(--r-sm);
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
}
.contact-label { display: block; font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.85rem; color: var(--text-sec); }
.contact-item a:hover { color: var(--orange); }
.contact-map { margin-top: 18px; border-radius: var(--r-md); overflow: hidden; }

.contact-form-wrap {
    padding: 26px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.contact-form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 500; color: var(--text-sec); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 13px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--r-sm); font-family: var(--font); font-size: 0.85rem;
    color: var(--text); transition: border-color 0.2s; 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(--orange); box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-loading { display: none; }
.contact-form.sending .btn-text { display: none; }
.contact-form.sending .btn-loading { display: inline; }
.form-success {
    display: none; text-align: center; padding: 12px; background: #ECFDF5;
    border: 1px solid #A7F3D0; border-radius: var(--r-sm);
    color: #16A34A; font-weight: 500; font-size: 0.88rem;
}
.contact-form.submitted .form-success { display: block; }

/* Footer */
.footer { background: var(--black); position: relative; }
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; line-height: 0; }
.footer-wave svg { width: 100%; height: 50px; }
.footer-container { padding: clamp(64px,10vw,100px) var(--px) 32px; max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
@media (min-width:640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-img {
    width: 72px; height: 72px; display: block; border-radius: 50%; flex-shrink: 0;
    transition: transform var(--dur) var(--ease);
}
.footer-logo:hover .footer-logo-img { transform: scale(1.05); }
.footer-logo .logo-name { font-size: 1rem; color: #fff; }
.footer-logo .logo-sub { font-size: 0.62rem; color: rgba(255,255,255,0.5); letter-spacing: 0.28em; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 16px; max-width: 260px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
    width: 36px; height: 36px; border-radius: var(--r-sm);
    background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.social-link:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-heading { font-family: var(--font-d); font-size: 0.78rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 7px; }
.footer-links a, .footer-links span { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.footer-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* WhatsApp Float — hidden on mobile (bottom nav handles it) */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 22px; z-index: var(--z-wa);
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--wa); display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,0.35);
    transition: all var(--dur) var(--ease); animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@media (max-width: 1023px) { .whatsapp-float { display: none; } }
@media (min-width: 768px) { .whatsapp-float { bottom: 28px; right: 28px; width: 58px; height: 58px; } }
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 18px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.06); }
}

/* Reveal */
.reveal-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .reveal-up { opacity: 1; transform: none; }
}
