/* MyTripPrime Bus — Coming Soon (brand navy + orange) */
.mtp-bus-page {
    --mtp-navy: #2b305a;
    --mtp-navy-light: #3d4378;
    --mtp-orange: #ff5a3d;
    --mtp-orange-dark: #ec4a2f;
    --mtp-bg: #f6f7fb;
    --mtp-text: #1a1a2e;
    --mtp-text-muted: #6b7280;
    --mtp-border: #e2e8f0;
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--mtp-text);
    background: var(--mtp-bg);
}

body.bus-page header {
    position: relative;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 0 var(--mtp-border);
}

body.bus-page nav.navbar {
    position: relative !important;
    top: 0 !important;
    width: 100%;
    height: auto !important;
    min-height: 70px;
    background: #fff !important;
    box-shadow: none;
    transform: none !important;
    -webkit-transform: none !important;
}

body.bus-page .header_contnt {
    margin-top: 0;
}

.mtp-bus-accent {
    color: var(--mtp-orange);
}

/* Full-bleed hero — single composition */
.mtp-bus-hero {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: flex-end;
    padding: 0 0 64px;
    overflow: hidden;
}

.mtp-bus-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    animation: mtp-bus-kenburns 18s ease-in-out infinite alternate;
}

.mtp-bus-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(43, 48, 90, 0.94) 0%,
        rgba(43, 48, 90, 0.72) 48%,
        rgba(61, 67, 120, 0.55) 100%
    );
}

.mtp-bus-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding-top: 48px;
    color: #fff;
}

.mtp-bus-brand {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.mtp-bus-eyebrow {
    margin: 0 0 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.mtp-bus-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 6vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.mtp-bus-lead {
    margin: 0 0 28px;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.mtp-bus-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mtp-bus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mtp-bus-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.mtp-bus-btn--primary {
    background: linear-gradient(135deg, var(--mtp-orange) 0%, var(--mtp-orange-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 90, 61, 0.35);
}

.mtp-bus-btn--primary:hover {
    color: #fff;
}

.mtp-bus-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.mtp-bus-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Below-fold: what’s next */
.mtp-bus-next {
    padding: 56px 0 72px;
}

.mtp-bus-next h2 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--mtp-navy);
}

.mtp-bus-next__intro {
    margin: 0 0 28px;
    max-width: 36rem;
    color: var(--mtp-text-muted);
    line-height: 1.5;
}

.mtp-bus-next__list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    gap: 14px;
    max-width: 32rem;
}

.mtp-bus-next__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--mtp-text);
}

.mtp-bus-next__list i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 90, 61, 0.12);
    color: var(--mtp-orange-dark);
}

.mtp-bus-next__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.mtp-bus-link {
    font-weight: 600;
    color: var(--mtp-navy);
    text-decoration: none;
    border-bottom: 2px solid var(--mtp-orange);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.mtp-bus-link:hover {
    color: var(--mtp-orange-dark);
    text-decoration: none;
}

@keyframes mtp-bus-kenburns {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

@media (max-width: 767.98px) {
    .mtp-bus-hero {
        min-height: 78vh;
        align-items: center;
        padding-bottom: 48px;
    }

    .mtp-bus-hero__inner {
        padding-top: 24px;
    }

    .mtp-bus-cta {
        width: 100%;
    }

    .mtp-bus-btn {
        flex: 1 1 auto;
    }

    .mtp-bus-next {
        padding: 40px 0 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mtp-bus-hero__bg {
        animation: none;
    }

    .mtp-bus-btn:hover {
        transform: none;
    }
}
