/* ── Booking-steps banner ──────────────── */
.booking-hero {
    background:
        radial-gradient(ellipse at 75% 20%, rgba(41,182,246,.30) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(41,182,246,.20) 0%, transparent 50%),
        linear-gradient(160deg, #071a5e 0%, #0d47a1 60%, #1565c0 100%);
    padding: 3.25rem 0 2.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.booking-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-step {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    flex: 1 1 150px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    transition: background .2s, transform .2s, border-color .2s;
}
.hero-step:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(245,200,66,.5);
    transform: translateY(-4px);
}
.hero-step-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(245,200,66,.15);
    border: 1.5px solid rgba(245,200,66,.5);
    display: flex; align-items: center; justify-content: center;
    color: #f5c842; font-size: 1.05rem;
    margin-bottom: .3rem;
}
.hero-step-num {
    font-size: .62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: rgba(255,255,255,.5);
}
.hero-step-label {
    font-size: .9rem; font-weight: 700; color: #fff;
    line-height: 1.25;
}
.hero-step-arrow {
    display: flex; align-items: center;
    color: #f5c842; font-size: .8rem; opacity: .7;
}

.hero-cta-btn {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, #f5c842, #e0a82e);
    color: #071a5e;
    font-weight: 800; font-size: .95rem;
    padding: .8rem 2.2rem; border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(245,200,66,.3);
    transition: transform .15s, box-shadow .15s;
}
.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245,200,66,.4);
    color: #071a5e;
}

@media (max-width: 767px) {
    .hero-step { min-width: 124px; padding: .85rem 1rem; }
    .hero-step-arrow { display: none; }
    .booking-hero { padding: 2.5rem 0 2.25rem; }
}

/* ── Stats bar ─────────────────────────── */
.stats-bar {
    background:#0d1b6e;padding:1.35rem 0;
    border-top:3px solid #f5c842;
}
.stats-inner {
    display:flex;justify-content:center;align-items:center;
    flex-wrap:wrap;gap:.5rem 0;
}
.stat-item {
    display:flex;flex-direction:column;align-items:center;
    padding:.5rem 2.25rem;text-align:center;
}
.stats-bar .hero-cta-btn {
    padding:.68rem 1.7rem;
    font-size:.88rem;
    box-shadow:0 6px 18px rgba(245,200,66,.28);
}
.stat-num {
    font-size:2rem;font-weight:900;color:#fff;
    font-family:'Poppins',sans-serif;line-height:1;
}
.stat-plus { font-size:1.2rem;color:#f5c842;font-weight:900; }
.stat-lbl  { font-size:.72rem;color:rgba(255,255,255,.6);font-weight:600;text-transform:uppercase;letter-spacing:.08em;margin-top:.2rem; }
.stat-div  { width:1px;height:40px;background:rgba(255,255,255,.15); }
@media(max-width:576px){
    .stat-item{padding:.5rem 1.25rem;}
    .stat-div{display:none;}
}

/* ── Flights section ───────────────────── */
.t-section { padding: 4rem 0; background: #f5f7ff; }
.t-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 767px) { .t-grid { grid-template-columns: 1fr; } }

/* Single ticket: span full width and centre */
.t-grid > article:only-child {
    grid-column: 1 / -1;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}
.view-all-btn {
    display:inline-flex;align-items:center;gap:.4rem;
    background:linear-gradient(135deg,#0f1f6e,#2563eb);
    color:#fff;text-decoration:none;padding:.8rem 2.5rem;
    border-radius:50px;font-weight:700;font-size:.95rem;
    box-shadow:0 6px 24px rgba(13,27,110,.25);transition:.2s;
}
.view-all-btn:hover{transform:translateY(-2px);color:#fff;}

/* ── Why choose us ─────────────────────── */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f5f7ff 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media(max-width:991px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:576px){ .why-grid { grid-template-columns: 1fr; } }
.why-card-v2 {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #eef0fa;
    padding: 1.75rem 1.5rem;
    display: flex; align-items: flex-start; gap: 1.1rem;
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card-v2::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--card-accent, #1565C0);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity .25s;
}
.why-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(13,27,110,.1);
    border-color: rgba(13,27,110,.12);
}
.why-card-v2:hover::before { opacity: 1; }
.why-icon-v2 {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
    transition: transform .25s;
}
.why-card-v2:hover .why-icon-v2 { transform: scale(1.1); }

/* ── Testimonials ───────────────────────── */
.testimonials-section {
    background: linear-gradient(180deg, #f5f7ff 0%, #fff 100%);
    padding-block: 3rem 4.5rem;
}
.why-section { padding-bottom: 3rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media(max-width:991px){ .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card::before { display: none !important; }

.testimonial-card {
    position: relative;
    padding: 1.75rem;
    background: #fff;
    border: 1.5px solid #e8ecf8;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(13,27,110,.06);
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #c7d2fe;
    box-shadow: 0 14px 34px rgba(13,27,110,.12);
}

.tc-quote {
    position: absolute;
    top: .75rem; right: 1.25rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4rem;
    line-height: 1;
    color: #1a2fa0;
    opacity: .08;
    user-select: none;
    pointer-events: none;
}

.stars {
    color: #f5a623;
    letter-spacing: .1em;
    font-size: .95rem;
    margin-bottom: .8rem;
}

.testimonial-card p {
    flex: 1;
    font-size: .9rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 0;
}
.testimonial-card footer {
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f2f9;
    display: flex;
    flex-direction: row; align-items: center; gap: .85rem;
}
.tc-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #0f1f6e, #2563eb);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.tc-meta { display: flex; flex-direction: column; gap: .15rem; }
.tc-meta strong { color: #0d1b6e; font-size: .9rem; font-weight: 700; }
.tc-meta span   { color: #9ca3af; font-size: .78rem; }

@media (max-width: 480px) {
    .stat-num { font-size: 1.6rem; }
    .stat-lbl { font-size: .65rem; }
    .stat-item { padding: .5rem .85rem; }
    .t-section { padding: 2.5rem 0 3rem; }
    .view-all-btn { padding: .75rem 1.75rem; font-size: .88rem; }
    .testimonials-section { padding-block: 3.5rem; }
    .testimonial-card { padding: 1.4rem; }
    .cta-banner-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
    .cta-banner-actions { justify-content: center; }
}

@media (max-width: 375px) {
    .stat-num { font-size: 1.35rem; }
    .stat-item { padding: .4rem .6rem; }
}
