@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    color: #171717;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button,
input,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #111;
    border-bottom: 1px solid #292929;
    transition: .3s;
}

.site-header.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,.25);
}

.header-inner {
    width: min(1180px, 92%);
    min-height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
}

.logo span {
    color: #ffd400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .25s;
}

.main-nav a:hover {
    color: #ffd400;
}

.header-call {
    background: #ffd400;
    color: #111;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
}

.header-call i {
    margin-right: 6px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #ffd400;
    font-size: 28px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(255,212,0,.15), transparent 35%),
        linear-gradient(135deg, #090909, #1b1b1b);
    color: #fff;
    padding: 70px 0 85px;
    overflow: hidden;
}

.hero-container {
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,212,0,.12);
    color: #ffd400;
    border: 1px solid rgba(255,212,0,.3);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    color: #ffd400;
}

.hero p {
    color: #d0d0d0;
    max-width: 650px;
    font-size: 16px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.hero-features span {
    padding: 9px 13px;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 13px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 700;
}

.btn-primary {
    background: #ffd400;
    color: #111;
}

.btn-secondary {
    border: 1px solid #555;
    color: #fff;
}


/* =========================
   BOOKING CARD
========================= */

.booking-card {
    background: #fff;
    color: #111;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.booking-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.booking-title > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: #ffd400;
    border-radius: 12px;
    font-size: 22px;
}

.booking-title h2 {
    font-size: 22px;
}

.booking-title p {
    color: #777;
    font-size: 12px;
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 47px;
    border: 1px solid #ddd;
    border-radius: 9px;
    padding: 0 13px;
    outline: none;
    background: #fff;
    color: #222;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ffd400;
    box-shadow: 0 0 0 3px rgba(255,212,0,.15);
}

.trip-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.trip-option {
    cursor: pointer;
}

.trip-option input {
    display: none;
}

.trip-option span {
    display: block;
    text-align: center;
    border: 1px solid #ddd;
    padding: 11px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
}

.trip-option input:checked + span {
    background: #ffd400;
    border-color: #ffd400;
    color: #111;
}

.search-btn {
    width: 100%;
    border: 0;
    background: #111;
    color: #ffd400;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.search-btn:hover {
    background: #ffd400;
    color: #111;
    transform: translateY(-1px);
}

.booking-help {
    text-align: center;
    color: #777;
    font-size: 12px;
    margin-top: 14px;
}

.booking-help a {
    color: #111;
    font-weight: 700;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
}

.section-title p {
    color: #777;
    max-width: 650px;
    margin: 10px auto 0;
}


/* =========================
   SERVICES
========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 28px;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.service-card i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: #ffd400;
    border-radius: 13px;
    font-size: 21px;
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.service-card p {
    color: #777;
    font-size: 14px;
}


/* =========================
   WHY CHOOSE
========================= */

.why-section {
    background: #111;
    color: #fff;
}

.why-section .section-title p {
    color: #aaa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: #1d1d1d;
    border: 1px solid #2c2c2c;
    border-radius: 17px;
    padding: 25px;
}

.why-card i {
    color: #ffd400;
    font-size: 25px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.why-card p {
    color: #aaa;
    font-size: 13px;
}


/* =========================
   TARIFF
========================= */

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.tariff-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 22px 15px;
    text-align: center;
}

.tariff-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.tariff-card .price {
    font-size: 25px;
    font-weight: 800;
}

.tariff-card .price span {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

.tariff-note {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 20px;
}


/* =========================
   ROUTES
========================= */

.route-section {
    background: #f0f0f0;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.route-card {
    background: #fff;
    padding: 17px;
    border-radius: 13px;
    border: 1px solid #e3e3e3;
    font-weight: 600;
    font-size: 14px;
    transition: .25s;
}

.route-card:hover {
    background: #ffd400;
    transform: translateY(-3px);
}

.route-card i {
    margin-right: 7px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-box {
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 35px;
}

.about-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-box p {
    color: #c7c7c7;
    font-size: 14px;
    margin-bottom: 14px;
}


/* =========================
   FAQ
========================= */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.faq-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 13px;
    padding: 20px;
    cursor: pointer;
}

.faq-card h3 {
    font-size: 15px;
}

.faq-card p {
    color: #777;
    font-size: 13px;
    margin-top: 10px;
    display: none;
}

.faq-card.active p {
    display: block;
}


/* =========================
   CTA
========================= */

.cta-section {
    background: #ffd400;
    padding: 65px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
}

.cta-section p {
    margin: 10px auto 22px;
    max-width: 650px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-buttons a {
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700;
}

.cta-call {
    background: #111;
    color: #ffd400;
}

.cta-whatsapp {
    background: #fff;
    color: #111;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0c0c0c;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px;
}

.site-footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.site-footer h4 {
    color: #ffd400;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-about p,
.footer-services p,
.footer-contact p {
    color: #aaa;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #aaa;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffd400;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-contact a {
    color: #ccc;
    font-size: 13px;
}

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

.footer-contact i {
    color: #ffd400;
    margin-right: 7px;
}

.footer-bottom {
    border-top: 1px solid #292929;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    color: #777;
    font-size: 12px;
}

.footer-bottom a:hover {
    color: #ffd400;
}


/* =========================
   FLOATING BUTTONS
========================= */

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 21px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: .25s;
}

.floating-contact a:hover {
    transform: scale(1.08);
}

.floating-call {
    background: #111;
    color: #ffd400;
}

.floating-whatsapp {
    background: #25d366;
    color: #fff;
}


/* =========================
   BACK TO TOP
========================= */

#backToTop {
    position: fixed;
    right: 18px;
    bottom: 145px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffd400;
    color: #111;
    cursor: pointer;
    display: none;
    z-index: 9998;
}

#backToTop.show {
    display: grid;
    place-items: center;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .main-nav {
        gap: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

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

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

    .tariff-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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


@media (max-width: 700px) {

    .header-inner {
        min-height: 65px;
    }

    .logo {
        font-size: 18px;
    }

    .header-call {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #111;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 5%;
        border-top: 1px solid #292929;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 13px 5px;
        border-bottom: 1px solid #292929;
    }

    .hero {
        padding: 50px 0 55px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero h1 {
        font-size: 38px;
    }

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

    .booking-card {
        padding: 20px;
        border-radius: 17px;
    }

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

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
    }

    .floating-contact {
        right: 12px;
        bottom: 15px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }
}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .booking-card {
        padding: 17px;
    }

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

    .trip-buttons {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
        width: 100%;
    }
}