:root {
    --gold: #c5a059;
    --gold-light: #d4b06a;
    --gold-dark: #a8853e;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, .7);
    --text-muted: rgba(255, 255, 255, .4);
    --border: rgba(255, 255, 255, .08);
    --border-gold: rgba(197, 160, 89, .3);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

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

html {
    scroll-behavior: smooth
}

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

::selection {
    background: var(--gold);
    color: #000
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg-dark)
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity .8s ease, visibility .8s ease
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--text-primary)
}

.loader-logo span {
    color: var(--gold)
}

.loader-sub {
    font-size: .75rem;
    letter-spacing: 8px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase
}

.loader-track {
    width: 200px;
    height: 1px;
    background: var(--border);
    margin-top: 30px;
    position: relative;
    overflow: hidden
}

.loader-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: loaderFill 2s cubic-bezier(.65, 0, .35, 1) forwards
}

@keyframes loaderFill {
    to {
        width: 100%
    }
}

.loader-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 12px;
    letter-spacing: 2px
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    padding: 14px 28px;
    background: rgba(10, 10, 10, .6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition)
}

.nav.scrolled {
    top: 12px;
    background: rgba(10, 10, 10, .9);
    border-color: var(--border-gold)
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-primary);
    white-space: nowrap
}

.nav-logo span {
    color: var(--gold)
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition)
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    padding: 10px 22px;
    background: var(--gold);
    color: #000 !important;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(197, 160, 89, .3)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 1px
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    transition: var(--transition)
}

.mobile-menu a:hover {
    color: var(--gold)
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.4) saturate(1.1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, .3) 0%, rgba(10, 10, 10, .7) 60%, var(--bg-dark) 100%);
    z-index: 1
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .03;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E")
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .8s .5s forwards
}

.hero-badge iconify-icon {
    font-size: .85rem
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -2px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s .7s forwards
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1s .9s forwards
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: .3;
        transform: scaleY(.7)
    }
    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(197, 160, 89, .35)
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border)
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.05)
}

.btn-wa {
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    font-size: .75rem
}

.btn-wa:hover {
    background: #20bd5a;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3)
}

/* ── SECTION SHARED ── */
section {
    padding: 120px 24px;
    position: relative
}

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

.section-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.1
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500
}

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

/* ── STATS BAR ── */
.stats {
    padding: 60px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.stat-item {
    opacity: 0;
    transform: translateY(20px)
}

.stat-item.visible {
    animation: fadeUp .6s forwards
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1
}

.stat-label {
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px
}

/* ── FLEET ── */
.fleet-section {
    background: linear-gradient(180deg, var(--bg-dark), #0d0d0d)
}

/* Changed to 2 columns so 4 cars fit perfectly in a square */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .4)
}

/* ── NEW FLEET TAGS (Replaced old ribbon) ── */
.fleet-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.fleet-img {
    height: 220px;
    overflow: hidden;
    position: relative
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.25, .46, .45, .94);
    filter: brightness(.8)
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.08)
}

.fleet-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card), transparent 60%)
}

.fleet-body {
    padding: 28px
}

.fleet-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 4px
}

.fleet-seats {
    font-size: .7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.fleet-features span {
    font-size: .7rem;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary)
}

.fleet-body .btn-wa {
    width: 100%;
    justify-content: center
}

/* ── ROUTES ── */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.route-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: var(--transition)
}

.route-card:hover {
    transform: scale(1.02)
}

.route-card:hover .route-img img {
    transform: scale(1.1);
    filter: brightness(.5)
}

.route-img {
    position: absolute;
    inset: 0
}

.route-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(.25, .46, .45, .94);
    filter: brightness(.4)
}

.route-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
    z-index: 1
}

.route-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px
}

.route-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 6px
}

.route-content p {
    font-size: .85rem;
    color: var(--text-secondary)
}

.route-tag {
    font-size: .6rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.why-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: var(--transition);
    text-align: center
}

.why-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3)
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, .08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--gold)
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px
}

.why-card p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.7
}

/* ── TESTIMONIAL ── */
.testimonial-section {
    background: linear-gradient(180deg, #0d0d0d, var(--bg-dark));
    position: relative;
    overflow: hidden
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(197, 160, 89, .03);
    line-height: 1;
    pointer-events: none
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px
}

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

.testimonial-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 32px
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold)
}

.testimonial-info h4 {
    font-size: .9rem;
    font-weight: 600
}

.testimonial-info p {
    font-size: .75rem;
    color: var(--text-muted)
}

/* ── CTA ── */
.cta-section {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, .08), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px
}

.cta-section h2 em {
    font-style: italic;
    color: var(--gold)
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 24px 30px
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px
}

.footer-brand h3 span {
    color: var(--gold)
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px
}

.footer-col h4 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    margin-bottom: 10px;
    transition: var(--transition)
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 10px
}

.footer-contact iconify-icon {
    color: var(--gold);
    font-size: 1rem
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    color: var(--text-muted)
}

/* ── FLOATING WA ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    animation: waFloat 3s ease-in-out infinite
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .5)
}

@keyframes waFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px)
    }
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 900;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .4);
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, .3);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 901;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: var(--text-secondary);
    transform: translateX(120%);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4)
}

.toast.show {
    transform: translateX(0)
}

.toast iconify-icon {
    color: var(--gold);
    font-size: 1.1rem
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
    .fleet-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }
}

@media(max-width: 768px) {
    .nav-links {
        display: none
    }
    .hamburger {
        display: flex
    }
    .mobile-menu {
        display: flex
    }
    .fleet-grid, .routes-grid, .why-grid {
        grid-template-columns: 1fr
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .route-card {
        height: 220px
    }
    section {
        padding: 80px 20px
    }
    .hero h1 {
        letter-spacing: -1px
    }
    .testimonial-card blockquote {
        font-size: 1.2rem
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

@media(max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
    .stat-number {
        font-size: 2rem
    }
    .hero-actions {
        flex-direction: column;
        align-items: center
    }
    .btn {
        padding: 14px 28px;
        font-size: .75rem
    }
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        left: 16px;
    }
}/* ===== FLEET GRID — 4 columns, proper alignment ===== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Each card must stretch full height of its cell */
.fleet-card {
    display: flex;
    flex-direction: column;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.fleet-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.fleet-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.fleet-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.fleet-seats {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold, #C9A96E);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    flex: 1;
}

.fleet-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    color: #9ca3af;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 5px 10px;
    border-radius: 6px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background: #25D366;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.btn-wa:hover {
    background: #1fb855;
    transform: translateY(-1px);
}/* ===== FINAL GAP FIX ===== */

section{
    padding-top:60px !important;
    padding-bottom:60px !important;
}

.section-header{
    margin-bottom:30px !important;
}

.fleet-section{
    padding-bottom:50px !important;
}

.routes-section{
    padding-top:50px !important;
    padding-bottom:50px !important;
}

.why-section{
    padding-top:50px !important;
    padding-bottom:50px !important;
}

.testimonial-section{
    padding-top:50px !important;
    padding-bottom:30px !important;
}

.cta-section{
    padding-top:40px !important;
    padding-bottom:50px !important;
}

.why-card{
    padding:24px !important;
}.developer-credit{
    color: rgba(255,255,255,.55);
    font-size: .75rem;
    letter-spacing: 1px;
    transition: .3s ease;
}

.developer-credit:hover{
    color: var(--gold);
}