* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: #0b1f3a; background: #fff; -webkit-font-smoothing: antialiased; font-weight: 400; letter-spacing: .01em; }
:root {
  --navy: #0b1f3a;
  --navy-deep: #061429;
  --sky: #2b8fe6;
  --sky-light: #e8f3fc;
  --gold: #f5b800;
  --gold-deep: #d99e00;
  --text: #0b1f3a;
  --muted: #5a6b80;
  --border: #e3e8ef;
  --green: #16a34a;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; letter-spacing: -0.01em; }
ul { list-style: none; }

.ticker { background: var(--navy-deep); color: #fff; padding: 8px 0; overflow: hidden; font-size: 13.5px; }
.ticker-inner { text-align: center; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.hero { background: linear-gradient(135deg, rgba(11,42,84,.78), rgba(16,58,107,.55)), url('images/hero-bg.png') center/cover no-repeat; color: #fff; padding: 80px 0 100px; position: relative; overflow: hidden; text-align: center; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.06) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(245,184,0,.08) 0, transparent 40%); pointer-events: none; }
.hero-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; max-width: 700px; margin: 0 auto; }
.badge-row { margin-bottom: 18px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.hero h1 { font-size: clamp(30px, 6vw, 48px); font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 18px; line-height: 1.6; }
.hero-ctas { display: flex; justify-content: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 0; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; font-family: inherit; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover { background: #1f7bcc; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }

.search-section { padding: 50px 0 30px; background: #f6f8fb; }
.search-widget { background: #fff; border-radius: 18px; padding: 26px; box-shadow: 0 10px 40px -10px rgba(11,31,58,.15); border: 1px solid var(--border); margin-top: -90px; position: relative; z-index: 10; }
.trip-type { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.trip-opt { display: inline-flex; align-items: center; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; font-weight: 600; color: var(--muted); transition: all .15s; }
.trip-opt input { display: none; }
.trip-opt.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.search-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.field input, .field select { width: 100%; max-width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text); background: #fff; transition: border-color .15s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--sky); }
.pax-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.pax-grid select { padding: 12px 8px; font-size: 13px; }
.btn-search { margin-top: 20px; width: 100%; padding: 18px; font-size: 17px; }

.results-section { padding: 40px 0 60px; background: #f6f8fb; }
.results-banner { background: linear-gradient(90deg, #fff7e0, #fdecc8); border: 1px solid #f5d97f; color: #6b4a00; padding: 14px 20px; border-radius: 12px; font-weight: 600; font-size: 14px; margin-bottom: 24px; text-align: center; }
.results-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.results-header h2 { font-size: 28px; }
.results-meta { color: var(--muted); font-size: 14px; }
.flight-list { display: flex; flex-direction: column; gap: 14px; }
.flight-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: grid; grid-template-columns: 1.1fr 2fr 1fr auto; gap: 24px; align-items: center; transition: box-shadow .15s, transform .15s; }
.flight-card:hover { box-shadow: 0 10px 30px -12px rgba(11,31,58,.18); transform: translateY(-2px); }
.flight-airline { display: flex; align-items: center; gap: 12px; }
.airline-logo { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; }
.airline-name { font-weight: 700; font-size: 15px; }
.flight-no { font-size: 12px; color: var(--muted); }
.flight-times { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.t-time { font-size: 22px; font-weight: 800; color: var(--navy); }
.t-code { font-size: 12px; color: var(--muted); font-weight: 600; }
.t-line { text-align: center; }
.t-dur { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.t-bar { height: 2px; background: var(--border); position: relative; border-radius: 2px; }
.t-bar span { position: absolute; right: 0; top: -3px; width: 8px; height: 8px; background: var(--sky); border-radius: 50%; }
.t-stops { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 4px; }
.flight-price { text-align: right; }
.online-strike { text-decoration: line-through; color: #94a3b8; font-size: 15px; }
.call-price { font-size: 28px; font-weight: 800; color: var(--navy); }
.price-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.flight-cta { white-space: nowrap; }

/* Navy "Call to save" pill replacing price */
.flight-save-pill { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--navy) 0%, #103a6b 100%); color: #fff; border-radius: 12px; padding: 14px 16px; text-decoration: none; min-width: 150px; transition: transform .15s, box-shadow .15s; }
.flight-save-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(11,31,58,.4); color: #fff; }
.flight-save-pill .fsp-top { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.flight-save-pill .fsp-big { font-size: 18px; font-weight: 800; color: var(--gold); margin-top: 4px; line-height: 1.15; }

/* "Call to see all" CTA at end of results */
.see-all-cta { display: block; margin-top: 22px; text-align: center; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 17px; padding: 18px 24px; border-radius: 14px; text-decoration: none; letter-spacing: .01em; transition: transform .15s, box-shadow .15s; }
.see-all-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(201,168,76,.55); color: var(--navy); }

.why-section { padding: 80px 0; background: #fff; }
.section-title { text-align: center; font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy); }
.section-sub { text-align: center; color: var(--muted); margin-top: 10px; margin-bottom: 40px; font-size: 17px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: var(--sky-light); border-radius: 16px; padding: 28px; text-align: center; transition: transform .2s; }
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 40px; margin-bottom: 14px; }
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #103a6b 100%); color: #fff; padding: 70px 0; text-align: center; }
.cta-inner h2 { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.mega-phone { display: inline-block; font-size: 48px; font-weight: 900; color: var(--gold); letter-spacing: -.02em; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.mega-phone:hover { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.7); font-size: 15px; }

.urgent-section { background: #fff5e6; padding: 50px 0; border-top: 1px solid #ffd591; border-bottom: 1px solid #ffd591; }
.urgent-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.urgent-icon { font-size: 52px; }
.urgent-text { flex: 1; min-width: 250px; }
.urgent-text h3 { font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.urgent-text p { color: #6b4a00; font-size: 15px; }

.routes-section { padding: 80px 0; background: #f6f8fb; }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card { background: #fff; padding: 24px; border-radius: 14px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.route-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(11,31,58,.2); }
.route-code { font-size: 12px; font-weight: 700; color: var(--sky); letter-spacing: .12em; }
.route-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin: 6px 0 14px; }
.route-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.from-label { color: var(--muted); font-size: 13px; }
.route-price .price { font-size: 32px; font-weight: 800; color: var(--navy); }

.reviews-section { padding: 80px 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #f6f8fb; padding: 24px; border-radius: 14px; border: 1px solid var(--border); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.quote { color: var(--text); font-size: 15px; line-height: 1.55; margin-bottom: 16px; font-style: italic; }
.review-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.review-meta strong { color: var(--navy); }

.faq-section { padding: 80px 0; background: #f6f8fb; }
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; transition: box-shadow .15s; }
.faq-item[open] { box-shadow: 0 10px 30px -16px rgba(11,31,58,.15); }
.faq-item summary { font-weight: 700; font-size: 16px; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--sky); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; color: var(--muted); line-height: 1.6; font-size: 15px; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 800; }
.footer-brand { color: #fff; font-size: 22px; margin-bottom: 10px; }
.footer-desc { font-size: 14px; line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer-phone { display: inline-block; color: var(--gold); font-size: 22px; font-weight: 800; }
.footer-hours { font-size: 13px; margin-top: 4px; }
.site-footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer ul li { padding: 5px 0; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 12.5px; color: rgba(255,255,255,.5); text-align: center; }

.float-call { position: fixed; right: 18px; bottom: 18px; z-index: 60; background: var(--green); color: #fff; padding: 14px 20px; border-radius: 999px; box-shadow: 0 12px 28px -8px rgba(22,163,74,.5); display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 16px; animation: floatpulse 2s infinite; }
.float-call:hover { background: #128a3e; }
.float-icon { font-size: 18px; }
@keyframes floatpulse { 0%, 100% { transform: translateY(0);} 50% { transform: translateY(-4px);} }

@media (max-width: 900px) {
  .hero { padding: 50px 0 80px; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flight-card { grid-template-columns: 1fr; text-align: left; gap: 14px; }
  .flight-price { text-align: left; }
  .results-header h2 { font-size: 22px; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 0 70px; }
  .search-grid { grid-template-columns: 1fr; }
  .why-grid, .routes-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .mega-phone { font-size: 36px; }
  .float-text { display: none; }
  .float-call { padding: 16px; }
  .hero h1 { font-size: 32px; }
}

/* ===== Travel Jelly header + brand ===== */
.site-header { background: #fff; border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: nowrap; width: 100%; }
.brand-logo { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 28px; color: var(--navy); letter-spacing: -0.02em; }
.brand-dot { color: var(--gold); }
.header-call { display: inline-flex; align-items: center; gap: 12px; background: #f6f8fb; border: 1px solid var(--border); padding: 6px 18px 6px 8px; border-radius: 999px; transition: box-shadow .15s, transform .15s; }
.header-call:hover { box-shadow: 0 6px 18px -8px rgba(11,31,58,.25); transform: translateY(-1px); }
.header-call-icon { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--sky-light); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid var(--green); box-shadow: 0 0 0 2px rgba(22,163,74,.15); }
.header-call-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.header-call-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.header-call-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .08em; }
.header-call-number { font-size: 17px; font-weight: 800; color: var(--navy); }
@media (max-width: 480px) {
  .header-inner { gap: 8px; }
  .header-call { padding: 4px 10px 4px 4px; gap: 8px; border-radius: 999px; flex-shrink: 0; }
  .header-call-icon { width: 36px; height: 36px; }
  .header-call-label { font-size: 9px; letter-spacing: .06em; }
  .header-call-number { font-size: 13px; }
  .brand-logo { font-size: 24px; flex-shrink: 1; min-width: 0; }
}
@media (max-width: 360px) {
  .header-call-label { display: none; }
  .header-call-number { font-size: 12px; }
}

/* Image-based airline logos in flight cards */
.airline-logo { background: #fff; border: 1px solid var(--border); overflow: hidden; padding: 4px; }
.airline-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ===== Ticker as image (keep small) ===== */
.ticker { padding: 0; background: #061429; }
.ticker-img-wrap { display: flex; justify-content: center; align-items: center; padding: 4px 12px; }
.ticker-img-wrap img { display: block; max-height: 36px; width: auto; max-width: 100%; }

/* ===== Trustpilot rating ===== */
.trust-rating { display: flex; justify-content: center; margin: -10px auto 30px; }
.trust-rating img { max-width: 320px; width: 100%; height: auto; display: block; }

/* ===== Brands / inquiry carousel ===== */
.brands-section { padding: 30px 0 50px; background: #f6f8fb; }
.brands-carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 18px; -webkit-overflow-scrolling: touch; }
.brands-carousel::-webkit-scrollbar { height: 6px; }
.brands-carousel::-webkit-scrollbar-thumb { background: #cfd8e3; border-radius: 3px; }
.brand-card { flex: 0 0 280px; scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; box-shadow: 0 6px 20px -14px rgba(11,31,58,.2); display: flex; flex-direction: column; gap: 10px; }
.brand-card .brand-visual { height: 70px; display: flex; align-items: center; }
.brand-card .brand-visual img { max-height: 64px; width: auto; }
.brand-card .brand-rating { font-size: 32px; font-weight: 800; color: var(--navy); display: inline-flex; gap: 10px; align-items: center; }
.brand-card .brand-rating .rstars { color: #ff6a00; font-size: 22px; letter-spacing: 2px; }
.brand-card .brand-icon { font-size: 44px; }
.brand-card h3 { font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.brand-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.brand-card .brand-link { color: var(--sky); font-weight: 700; font-size: 14px; margin-top: auto; }
.brand-card .brand-link:hover { text-decoration: underline; }

/* ===== Popup modal ===== */
.afb-modal-backdrop { position: fixed; inset: 0; background: rgba(8, 18, 38, .55); backdrop-filter: blur(4px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; animation: fadeIn .2s ease; }
.afb-modal-backdrop.is-open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.afb-modal { background: #fff; border-radius: 22px; max-width: 460px; width: 100%; padding: 28px 24px 24px; position: relative; box-shadow: 0 30px 70px -20px rgba(0,0,0,.4); text-align: center; animation: popIn .25s ease; }
@keyframes popIn { from { transform: translateY(20px) scale(.95); opacity: 0; } to { transform: none; opacity: 1; } }
.afb-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: #f0f3f7; border: 0; font-size: 20px; color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.afb-modal-close:hover { background: #e3e8ef; color: var(--navy); }
.afb-modal-logo { font-family: 'Josefin Sans', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 14px; }
.afb-modal-logo .brand-dot { color: var(--gold); }
.afb-modal-agent { width: 110px; height: 110px; border-radius: 50%; margin: 4px auto 14px; background: linear-gradient(135deg, #2b8fe6, #103a6b); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 48px; box-shadow: 0 10px 25px -10px rgba(43,143,230,.6); }
.afb-modal h2 { font-family: 'Josefin Sans', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.25; }
.afb-modal .modal-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.afb-modal .lookup-title { font-size: 15px; font-weight: 600; color: var(--navy); margin: 10px 0 10px; }
.afb-modal .lookup-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px; }
.afb-modal .lookup-list span { background: #f0f6fd; color: var(--navy); border: 1px solid #d4e6f7; padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.afb-modal .modal-call-btn { display: block; background: var(--sky); color: #fff; padding: 16px; border-radius: 999px; font-size: 17px; font-weight: 700; margin: 0 auto 10px; max-width: 320px; }
.afb-modal .modal-call-btn:hover { background: #1f7bcc; }
.afb-modal .modal-cancel { background: none; border: 0; color: var(--muted); font-size: 14px; cursor: pointer; padding: 6px 10px; font-family: inherit; }
.afb-modal .modal-cancel:hover { color: var(--navy); }
@media (max-width: 480px) {
  .afb-modal { padding: 24px 18px 20px; }
  .afb-modal h2 { font-size: 20px; }
  .afb-modal-agent { width: 92px; height: 92px; font-size: 40px; }
}

/* Circular agent image for "Make Any Flight Inquiry" card */
.brand-card .brand-visual-circle { height: 96px; justify-content: center; }
.brand-card .brand-visual-circle img {
  width: 96px;
  height: 96px;
  max-height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Clickable brand cards + lookup links + image popup avatar */
a.brand-card, a.brand-card-link { text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
a.brand-card-link:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(11,31,58,.35); }
.afb-modal .lookup-list a { background: #f0f6fd; color: var(--navy); border: 1px solid #d4e6f7; padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s ease; }
.afb-modal .lookup-list a:hover { background: #e0eefb; }
.afb-modal-agent-img { padding: 0 !important; background: #fff !important; overflow: hidden; }
.afb-modal-agent-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ===== Hero headline restyle ===== */
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff 0%, #ffe9a8 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 30px rgba(245,184,0,0.18);
  position: relative;
  display: inline-block;
}
.hero h1::after {
  content: '';
  display: block;
  width: 80px; height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ===== Call-now CTA card (replaces old cta-banner) ===== */
.cta-banner { background: transparent; padding: 50px 20px; text-align: center; }
.cta-call-card {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--navy-deep);
  color: #fff;
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -18px rgba(11,31,58,.55);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  max-width: 100%;
}
.cta-call-card:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -20px rgba(11,31,58,.65); }
.cta-call-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,255,255,.18); background: #fff; }
.cta-call-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-call-text { text-align: left; line-height: 1.25; }
.cta-call-title { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 17px; color: #fff; }
.cta-call-sub { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 2px; }
.cta-call-sub span { color: var(--gold); font-weight: 800; }
.cta-call-phone {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sky); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(43,143,230,.25);
}
@media (max-width: 480px) {
  .cta-call-title { font-size: 15px; }
  .cta-call-avatar { width: 48px; height: 48px; }
  .cta-call-phone { width: 40px; height: 40px; }
}

/* ===== Trustpilot-style review cards ===== */
.tp-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 22px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.tp-stars { display: inline-flex; gap: 2px; margin-bottom: 14px; }
.tp-star {
  width: 24px; height: 24px;
  background: #00b67a;
  display: inline-block;
  position: relative;
}
.tp-star::before {
  content: '★';
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  display: block;
}
.tp-star-off { background: #dcdce6; }
.tp-title { font-family: 'Josefin Sans', sans-serif; font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; line-height: 1.3; }
.tp-card .quote { font-style: normal; color: #4a4a4a; font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
.tp-card .review-meta { border-top: 1px solid #f0f0f0; padding-top: 12px; }

/* ===== Hero headline: League Spartan, white (override) ===== */
.hero h1 {
  font-family: 'League Spartan', 'Inter', sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
  text-transform: none;
}
.hero h1::after {
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: .8;
}

/* ===== Sticky scroll CTA ===== */
.afb-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 140%);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .25s ease;
  width: calc(100% - 20px);
  max-width: 520px;
}
.afb-sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.afb-sticky-cta.is-dismissed { display: none !important; }
.afb-sticky-cta .cta-call-card {
  border-radius: 999px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.5);
  padding: 10px 12px 10px 10px;
  gap: 14px;
  width: 100%;
  display: flex;
  align-items: center;
}
.afb-sticky-cta .cta-call-text { flex: 1; min-width: 0; }
.afb-sticky-cta .cta-call-title { font-size: 15px; font-weight: 700; }
.afb-sticky-cta .cta-call-sub { font-size: 12.5px; color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 4px; }
.cta-call-code { color: #ff5a1f; font-weight: 800; letter-spacing: .5px; }
.cta-call-info { opacity: .7; vertical-align: middle; }
.afb-sticky-cta .cta-call-phone {
  background: #fff;
  color: var(--sky, #2b8fe6);
  width: 46px; height: 46px;
  box-shadow: none;
}
.afb-sticky-close {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: #0b1f3a; border: 1px solid #e3e8ef;
  font-size: 16px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: absolute; top: -8px; right: -6px;
  padding: 0;
}
.afb-sticky-close:hover { background: #f0f3f7; }
@media (max-width: 480px) {
  .afb-sticky-cta { bottom: 16px; }
}

/* Blue circular FAB shown after sticky CTA is dismissed */
.afb-sticky-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sky, #2b8fe6); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(43,143,230,.6), 0 0 0 6px rgba(43,143,230,.18);
  text-decoration: none;
  animation: floatpulse 2s infinite;
}
.afb-sticky-fab:hover { background: #1f7fd1; }
.afb-sticky-fab[hidden] { display: none !important; }

/* ===== Policy pages (Privacy / Terms / Refund) ===== */
.policy-section { padding: 60px 0 80px; background: #fbfaf6; min-height: 70vh; }
.policy-container { max-width: 820px; }
.policy-container h1 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--navy-deep, #0b1f3a); margin: 0 0 8px; }
.policy-updated { color: #6b7785; font-size: 14px; margin-bottom: 32px; }
.policy-container h2 { font-family: 'Josefin Sans', sans-serif; font-size: 22px; color: var(--navy-deep, #0b1f3a); margin: 28px 0 10px; }
.policy-container p { color: #2e3947; line-height: 1.7; font-size: 16px; margin: 0 0 14px; }
.policy-container a { color: var(--sky, #2b8fe6); text-decoration: underline; }


/* How It Works */
.how-section { padding: 80px 0; background: #eef2f7; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.how-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 56px 28px 28px; text-align: center; box-shadow: 0 6px 24px -18px rgba(11,31,58,.25); }
.how-icon-circle { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 999px; background: #fff; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--navy); box-shadow: 0 6px 16px -10px rgba(11,31,58,.3); }
.how-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; font-family: 'Josefin Sans', sans-serif; position: absolute; top: 20px; left: 24px; }
.how-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.how-divider { display: block; width: 60px; height: 2px; background: var(--border); margin: 0 auto 16px; }
.how-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; max-width: 340px; margin: 0 auto; }
@media (max-width: 700px) { .how-grid { grid-template-columns: 1fr; } }

/* Review read-more */
.review-quote[data-collapsed="true"] {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-quote[data-collapsed="false"] { display: block; }
.review-toggle { background: none; border: 0; padding: 0; margin: 0 0 14px; color: var(--sky); font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; }
.review-toggle:hover { text-decoration: underline; }

/* ===== Logo image (Travel Jelly brand) ===== */
.brand-logo { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; flex-shrink: 0; }
.brand-logo img { display: block; height: 40px; width: auto; max-width: 180px; object-fit: contain; }
.footer-brand { display: block; line-height: 0; margin-bottom: 14px; }
.footer-brand img { display: block; height: 40px; width: auto; filter: brightness(0) invert(1); }
.afb-modal-logo { display: block; line-height: 0; margin: 0 auto 14px; text-align: center; }
.afb-modal-logo img { display: inline-block; height: 32px; width: auto; max-width: 160px; object-fit: contain; }
@media (max-width: 480px) {
  .brand-logo img { height: 34px; max-width: 150px; }
  .footer-brand img { height: 34px; }
}

/* ===== Policy pages (Privacy / Terms / Refund) ===== */
.policy-doc { background: #f7f4ef; color: #1c2b4a; font-family: 'Josefin Sans', sans-serif; font-weight: 300; line-height: 1.8; }
.policy-doc .policy-hero { background: var(--navy); padding: 56px 20px 44px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.policy-doc .policy-hero::before { content:''; position:absolute; inset:0; background: repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(255,255,255,.025) 24px, rgba(255,255,255,.025) 25px); }
.policy-doc .policy-hero > * { position: relative; }
.policy-doc .policy-hero .site-name { font-family:'Playfair Display',serif; font-size: 1.4rem; color:#fff; letter-spacing:.04em; }
.policy-doc .policy-hero .site-name span { color: var(--gold); }
.policy-doc .policy-hero .badge { display:inline-block; margin-top:10px; padding:4px 14px; border:1px solid rgba(201,168,76,.4); border-radius:20px; font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color: var(--gold); }
.policy-doc .policy-hero h1 { font-family:'Playfair Display',serif; font-size: clamp(2rem,5vw,3.2rem); color:#fff; margin-top: 24px; line-height: 1.2; }
.policy-doc .policy-hero .sub { color: rgba(255,255,255,.6); font-size:.88rem; margin-top:10px; }
.policy-doc .policy-hero .gold-line { width:60px; height:2px; background: var(--gold); margin: 18px auto 0; }
.policy-doc .wrapper { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.policy-doc .intro-card { background: var(--navy); color:#fff; border-radius: 0 0 16px 16px; padding: 30px 40px; margin-bottom: 48px; font-size:.95rem; }
.policy-doc .intro-card strong { color: var(--gold); }
.policy-doc .toc { background:#eef2f8; border-left:3px solid var(--gold); border-radius:8px; padding:26px 30px; margin-bottom: 48px; }
.policy-doc .toc h2 { font-family:'Playfair Display',serif; font-size:1rem; letter-spacing:.1em; text-transform:uppercase; color: var(--navy); margin-bottom: 14px; }
.policy-doc .toc ol { padding-left:20px; display:grid; grid-template-columns:1fr 1fr; gap:6px 24px; }
.policy-doc .toc li { font-size:.88rem; }
.policy-doc .toc a { color:#1a6fcf; text-decoration:none; font-weight:500; }
.policy-doc .toc a:hover { text-decoration: underline; }
.policy-doc .sec { margin-bottom: 48px; scroll-margin-top: 80px; }
.policy-doc .sec-head { display:flex; align-items:center; gap:14px; margin-bottom: 18px; }
.policy-doc .sec-num { flex-shrink:0; width:38px; height:38px; border-radius:50%; background: var(--navy); color: var(--gold); font-family:'Playfair Display',serif; font-size:1rem; display:flex; align-items:center; justify-content:center; }
.policy-doc .sec h2 { font-family:'Playfair Display',serif; font-size:1.45rem; color: var(--navy); }
.policy-doc .sec p { margin-bottom:14px; font-size:.95rem; }
.policy-doc ul.policy-list { list-style:none; padding:0; margin:14px 0; }
.policy-doc ul.policy-list li { padding: 8px 0 8px 22px; border-bottom: 1px solid rgba(0,0,0,.06); font-size:.93rem; position: relative; }
.policy-doc ul.policy-list li::before { content:'›'; position:absolute; left:4px; color: var(--gold); font-weight:700; font-size:1.1rem; line-height:1.4; }
.policy-doc ul.policy-list li:last-child { border-bottom: none; }
.policy-doc .highlight-box { background:#eef2f8; border-radius:10px; padding: 18px 22px; margin: 18px 0; font-size:.92rem; border-left: 3px solid #1a6fcf; }
.policy-doc .alert-box { background:#fff5f5; border-radius:10px; padding:18px 22px; margin: 18px 0; font-size:.92rem; border-left: 3px solid #c0392b; }
.policy-doc .alert-box strong { color:#c0392b; }
.policy-doc .contact-card { background: var(--navy); color:#fff; border-radius:14px; padding: 32px 36px; margin-bottom: 60px; }
.policy-doc .contact-card h2 { font-family:'Playfair Display',serif; font-size:1.5rem; color:#fff; margin-bottom: 12px; }
.policy-doc .contact-card p { color: rgba(255,255,255,.75); font-size:.93rem; margin-bottom: 8px; }
.policy-doc .contact-card a { color: var(--gold); text-decoration: none; }
.policy-doc .how-it-works { display:flex; gap:0; background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:12px; margin-bottom: 40px; overflow: hidden; }
.policy-doc .step { flex:1; padding: 22px 16px; text-align:center; border-right:1px solid rgba(0,0,0,.07); }
.policy-doc .step:last-child { border-right: none; }
.policy-doc .step-icon { font-size:1.8rem; margin-bottom:6px; }
.policy-doc .step-num { font-family:'Playfair Display',serif; font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; color: var(--gold); margin-bottom: 4px; }
.policy-doc .step-label { font-size:.82rem; font-weight:500; color: var(--navy); }
.policy-doc .warning-banner { background:#fff8e1; border:1px solid #f0c040; border-left:4px solid var(--gold); border-radius:8px; padding:14px 22px; margin-bottom: 36px; font-size:.88rem; color:#7a5c00; }
.policy-doc .warning-banner strong { color:#5c4000; }
@media (max-width: 600px) {
  .policy-doc .how-it-works { flex-direction: column; }
  .policy-doc .step { border-right: none; border-bottom:1px solid rgba(0,0,0,.07); }
  .policy-doc .step:last-child { border-bottom: none; }
  .policy-doc .toc ol { grid-template-columns: 1fr; }
  .policy-doc .intro-card, .policy-doc .contact-card { padding: 22px 20px; }
}

/* Who We Are */
.who-section { padding: 80px 0; background: #fff; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.who-card { background: #f8fafc; border: 1px solid var(--border); border-radius: 14px; padding: 32px 26px; text-align: left; box-shadow: 0 6px 24px -18px rgba(11,31,58,.18); transition: transform .2s ease, box-shadow .2s ease; }
.who-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(11,31,58,.28); }
.who-icon { font-size: 28px; width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--sky-light, #e6f0fa); margin-bottom: 16px; }
.who-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.who-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }


/* ===== Modal checklist ===== */
.afb-modal .modal-checklist { list-style: none; padding: 0; margin: 6px 0 18px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.afb-modal .modal-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--navy); line-height: 1.45; font-weight: 500; }
.afb-modal .modal-checklist .mc-check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: #e6f4ea; color: #1f8a4c; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 1px; }
