* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: radial-gradient(circle at top right, #fff2cc, #fff5e6 35%, #fff 100%);
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 78px;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
    background: rgba(18, 18, 18, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 30;
}

.nav-toggle {
    display: none;
}

.nav-toggle-btn {
    display: none;
}

.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-brand {
    color: #ffcf4d;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.92;
}

.nav-links a:hover {
    opacity: 1;
    color: #ffcf4d;
}

.nav-cta {
    background: #ffcf4d;
    color: #241100;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ffd96a;
}

/* HERO */
.hero {
    min-height: 86vh;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 240, 150, 0.5) 0 22%, transparent 23%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.2) 0 18%, transparent 19%),
        linear-gradient(130deg,#ffcc00 0%, #ff7a00 45%, #ff3300 100%);
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr);
    align-items: center;
    gap: 28px;
    padding: 48px 26px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(2px);
    pointer-events: none;
}

.hero-content,
.hero-panel,
.route-card,
.feature,
.fleet-card,
.info-item,
.map-card,
.highlight-card,
.step-card,
.testimonial-card {
    animation: fadeUp 0.55s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(34px, 6vw, 54px);
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.hero-content {
    max-width: 680px;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 14px;
    color: #2b1400;
    background: rgba(255, 230, 163, 0.95);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.tagline {
    font-size: clamp(18px, 2.8vw, 24px);
    margin: 12px 0 22px;
    color: white;
}

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

.btn-primary {
    background: black;
    color: white;
    padding: 15px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #222;
    transform: scale(1.05);
}

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 13px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.25s ease;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    color: #fff;
    background: rgba(0,0,0,0.26);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 14px;
}

.hero-panel {
    background: rgba(20, 20, 20, 0.72);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-panel h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.hero-panel ul {
    margin-left: 18px;
    margin-bottom: 18px;
}

.hero-panel li {
    margin-bottom: 8px;
}

.btn-panel {
    display: inline-block;
    background: #ffcc00;
    color: #241100;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
}

/* HIGHLIGHTS */
.highlights {
    margin: -24px auto 10px;
    padding: 0 20px;
    max-width: 1120px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 3;
}

.highlight-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ffdcb5;
    box-shadow: 0 10px 22px rgba(0,0,0,0.09);
    padding: 16px;
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #ca2500;
    line-height: 1;
    margin-bottom: 6px;
}

.highlight-card p {
    font-weight: 600;
    color: #454545;
}

/* ROUTES */
.routes {
    padding: 70px 20px;
    text-align: center;
}

.routes h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 40px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(170px,1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.route-card {
    background: linear-gradient(135deg,#ff3300,#cc0000);
    color: white;
    padding: 25px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* FEATURES */
.features {
    background: #fff;
    padding: 70px 20px;
    text-align: center;
}

.features h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.feature {
    background: #fff5e6;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ffe0b3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.feature h3 {
    color: #ff3300;
    margin-bottom: 10px;
}

/* HOW TO BOOK */
.how-to-book {
    padding: 20px 20px 70px;
    background: linear-gradient(180deg, #fffefb, #fff4e8);
}

.how-to-book h2,
.testimonials h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 10px;
}

.steps-grid {
    max-width: 1040px;
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    background: #fff;
    border: 1px solid #ffd9b0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    font-weight: 800;
    color: #c52600;
    background: #ffe7ca;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.step-card h3 {
    margin-bottom: 8px;
    color: #242424;
}

.step-card p {
    color: #505050;
}

/* TESTIMONIALS */
.testimonials {
    padding: 70px 20px;
    background: #ffffff;
}

.testimonial-grid {
    max-width: 1040px;
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    background: linear-gradient(160deg, #fff9ef, #ffffff);
    border: 1px solid #ffd8a7;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.quote {
    color: #343434;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-card h3 {
    color: #1f1f1f;
    font-size: 18px;
}

.testimonial-card span {
    font-size: 14px;
    color: #6a6a6a;
}

/* FLEET */
.fleet {
    padding: 75px 20px;
    background: linear-gradient(180deg, #fff, #fff7ed);
}

.fleet h2,
.service-info h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
    color: #5a5a5a;
}

.fleet-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.fleet-summary {
    max-width: 820px;
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fleet-count {
    background: #fff;
    border: 1px solid #ffdcb3;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.fleet-count.total {
    background: linear-gradient(135deg, #ffefd1, #fff);
}

.fleet-number {
    display: block;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    color: #cc1f00;
    margin-bottom: 6px;
}

.fleet-count p {
    font-weight: 600;
    color: #3d3d3d;
}

.fleet-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    border: 1px solid #ffe4c2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.fleet-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: linear-gradient(180deg, #f7f7f7, #ececec);
    padding: 10px;
}

.fleet-body {
    padding: 18px 18px 20px;
}

.fleet-body h3 {
    color: #cc1f00;
    margin-bottom: 8px;
}

.fleet-body p {
    margin-bottom: 12px;
    color: #444;
}

.fleet-body ul {
    margin-left: 18px;
    color: #333;
}

.fleet-body li {
    margin-bottom: 6px;
}

/* SERVICE INFO */
.service-info {
    padding: 70px 20px;
}

.info-grid {
    max-width: 1040px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-item {
    background: #fff;
    border-left: 6px solid #ff3300;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-item h3 {
    color: #202020;
    margin-bottom: 8px;
}

/* OFFICE MAP */
.office-map {
    padding: 20px 20px 70px;
}

.map-card {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(140deg, #fff7dc, #ffffff);
    border: 2px solid #ffd27f;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.map-card h2 {
    font-size: clamp(26px, 3.8vw, 34px);
    margin-bottom: 8px;
}

.map-card p {
    color: #444;
    margin-bottom: 16px;
}

.map-frame-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ffd08b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 16px;
    background: #eee;
}

.map-frame-wrap iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

.btn-map {
    display: inline-block;
    background: #1f6feb;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
}

.btn-map:hover {
    background: #185ac0;
}

/* CTA */
.cta {
    background: linear-gradient(135deg,#cc0000,#990000);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    background: #ffcc00;
    color: black;
    padding: 15px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}

/* FOOTER */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    body {
        padding-top: 84px;
    }

    .top-nav {
        height: 84px;
        padding: 0 14px;
        gap: 10px;
    }

    .nav-brand {
        flex: 1;
        width: auto;
        text-align: left;
        font-size: 15px;
    }

    .nav-toggle-btn {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.25);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: rgba(255,255,255,0.08);
    }

    .nav-toggle-btn span {
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-menu {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
        border-radius: 12px;
        background: rgba(16, 16, 16, 0.96);
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: 0 14px 28px rgba(0,0,0,0.28);
    }

    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .nav-links a {
        padding: 8px 10px;
        border-radius: 8px;
        background: rgba(255,255,255,0.06);
        font-size: 14px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 74vh;
        grid-template-columns: 1fr;
        text-align: left;
        padding: 32px 18px;
        gap: 18px;
    }

    .hero-content h1 {
        line-height: 1.1;
    }

    .hero-kicker {
        font-size: 13px;
    }

    .hero-badges span {
        font-size: 12px;
    }

    .routes,
    .features,
    .how-to-book,
    .testimonials,
    .fleet,
    .service-info,
    .office-map,
    .cta {
        padding-left: 16px;
        padding-right: 16px;
    }

    .routes,
    .features,
    .how-to-book,
    .testimonials,
    .fleet,
    .service-info,
    .cta {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .hero-panel {
        padding: 18px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .fleet-card img {
        height: 190px;
    }

    .fleet-summary {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .highlights {
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .map-frame-wrap iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 24px 14px;
        min-height: auto;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: clamp(30px, 8vw, 38px);
    }

    .tagline {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badges span {
        width: 100%;
        text-align: center;
        padding: 8px 10px;
    }

    .hero-panel {
        border-radius: 12px;
        padding: 14px;
    }

    .hero-panel h2 {
        font-size: 20px;
    }

    .hero-panel ul {
        margin-left: 16px;
    }

    .route-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .fleet-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .highlights {
        padding-left: 14px;
        padding-right: 14px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .route-card,
    .feature {
        font-size: 14px;
        padding: 14px;
    }

    .fleet-body,
    .info-item,
    .map-card {
        padding: 16px;
    }

    .section-subtitle {
        margin-bottom: 18px;
    }

    .fleet-card img {
        height: 180px;
        padding: 8px;
    }

    .map-frame-wrap iframe {
        height: 230px;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary,
    .btn-map,
    .btn-panel {
        width: 100%;
        text-align: center;
    }
}