.muted {
    color: #666;
}

.description {
    max-width: 780px;
    margin: 10px auto 0;
}

.bg-soft {
    background: #f8fbff;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* hero content wider, form smaller */
    gap: 40px;
    align-items: start;
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        /* stack on mobile */
    }

    .search-card {
        margin-top: 30px;
    }
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 48px 20px 80px;
    color: #fff;
}

.hero {}

.hero-content {
    padding: 80px 0 50px;
    text-align: center;
    /* background: linear-gradient(to bottom, #f8fbff, #ffffff); */

}

.hero.header-background {
    position: relative;
    color: #fff;
    /* default text color */
}

.hero.header-background::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay, 50% opacity */
    /* For light overlay, use rgba(255, 255, 255, 0.3) */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    /* make text and form appear above overlay */
}

.hero.header-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    /* optional: blur background slightly */
    z-index: 1;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    max-width: 820px;
    margin: auto;
}

.hero-sub {
    font-size: 1.2rem;
    margin-top: 14px;
    font-weight: 700;
    color: #f3f4f6;
    /* light gray for contrast on dark overlay */
}

.hero-text {
    max-width: 850px;
    margin: 18px auto;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #e5e7eb;
    /* slightly lighter gray for paragraph text */
}

.hero-small {
    margin-top: 16px;
    font-size: 0.95rem;
    color: #d1d5db;
    /* subtle light gray for small text */
    font-weight: 600;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    transition: 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: #25d366;
}

.big-btn {
    font-size: 1.02rem;
    padding: 16px 26px;
}

/* ================= TRUST BAR ================= */
.trust-bar {
    background: #f1f5ff;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
}

/* ================= ROUTES CAROUSEL ================= */
.routes-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 900;
}

.routes-carousel {
    padding-bottom: 36px;
    margin-top: 22px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent);
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

.card-route {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-route .image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.card-route .content {
    padding: 16px;
}

.route-title {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.route-sub {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
}

.pill {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    font-weight: 800;
    font-size: 0.9rem;
    color: #111;
}

/* ================= LIST SECTIONS ================= */
.info-block ul,
.section ul {
    margin-top: 14px;
    padding-left: 18px;
    line-height: 1.7;
    color: #444;
    font-weight: 600;
}

.highlight-list li {
    margin-bottom: 6px;
}

/* ================= DISCOUNT ================= */
.discount-section {
    padding: 60px 0;
    background: linear-gradient(to right, #fff7ed, #ffffff);
}

.discount-box {
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 35px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.discount-box h2 {
    margin-bottom: 10px;
}

/* ================= TESTIMONIALS ================= */
.testimonials-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 900;
}

.testimonials {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.testimonial-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.08);
}

.testimonial-name {
    font-weight: 900;
}

.rating {
    font-size: 1.1rem;
    color: #f59e0b;
    margin: 8px 0;
    letter-spacing: 1px;
}

/* ================= FINAL CTA ================= */
.final-cta {
    padding: 70px 0;
    background: linear-gradient(to bottom, #0b1220, #111827);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.final-cta p {
    max-width: 820px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, 0.85);
}

/* ================= FAQ ================= */
.faq details {
    background: #fff;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

/* ================= POPUP ================= */
.bsd-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 18px;
}

.bsd-popup {
    width: 100%;
    max-width: 900px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.bsd-close {
    position: absolute;
    right: 12px;
    top: 10px;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
}

.bsd-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bsd-popup-right {
    padding: 26px;
}

.bsd-popup-right h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.bsd-popup-right h2 span {
    color: var(--accent);
}

.offer-box {
    margin-top: 16px;
    padding: 16px;
    background: #f8fbff;
    border-radius: 14px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.05rem;
    color: #111;
    text-decoration: none;
    margin-top: 8px;
}

.features {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 700;
    color: #444;
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .bsd-popup {
        grid-template-columns: 1fr;
    }

    .bsd-popup-left {
        display: none;
    }
}

/* ================= HERO RESPONSIVE ================= */
@media(max-width: 1200px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1.15rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-small {
        font-size: 0.9rem;
    }
}

@media(max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .search-card {
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 0.98rem;
        max-width: 100%;
    }

    .hero-small {
        font-size: 0.88rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn.big-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media(max-width: 768px) {
    .hero {
        padding: 60px 15px 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-small {
        font-size: 0.85rem;
    }

    .cta-btn.big-btn {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .bsd-popup {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .bsd-popup-left {
        display: none;
    }

    .bsd-popup-right {
        padding: 18px;
    }

    .cta-btn.big-btn {
        margin-bottom: 20px;
    }

    .trust-grid {
        text-align: left;
    }


}

@media(max-width: 480px) {
    .hero {
        padding: 50px 10px 30px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-small {
        font-size: 0.8rem;
    }

    .cta-btn.big-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .routes-carousel {
        padding-bottom: 20px;
    }

    .card-route .content {
        padding: 12px;
    }

    .testimonial {
        padding: 14px;
    }

    .discount-box {
        padding: 25px 15px;
    }

    .final-cta h2 {
        font-size: 1.7rem;
    }

    .final-cta p {
        font-size: 0.9rem;
    }

    .cta-btn.big-btn {
        margin-bottom: 20px;
    }

    .trust-grid {
        text-align: left;
    }
}