/* ===================================================
   getlondontransfer.com — shared page styles
   Used by mass-generated route & hub pages
   =================================================== */
:root {
  --navy: #0A1022; --navy-deep: #060A17; --navy-card: #121A2E;
  --navy-border: #1E2944; --navy-hover: #1A2340;
  --gold: #C9A961; --gold-light: #D9BE7A; --gold-dim: #8B7640;
  --gold-glow: rgba(201, 169, 97, 0.18);
  --cream: #F5EDE0; --text: #E8E3D5; --text-soft: #BDB6A6; --muted: #8B8F9E;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
  --radius-sm: 8px; --radius: 14px; --radius-lg: 22px; --radius-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1); --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: var(--text); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.top-banner { background: linear-gradient(90deg, #BFA058 0%, #D4B66A 50%, #BFA058 100%); color: var(--navy-deep); text-align: center; padding: 10px 20px; font-size: 14px; font-weight: 600; position: relative; z-index: 10; }
.top-banner .trophy { margin: 0 10px; }
.top-banner em { font-style: normal; color: var(--navy); opacity: 0.85; }

.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: saturate(180%) blur(10px); background: rgba(10, 16, 34, 0.92); border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-wrap { max-width: var(--container); margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--navy-deep); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; box-shadow: 0 4px 14px -4px var(--gold-glow); }
.brand-text .name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream); line-height: 1; }
.brand-text .tagline { display: block; font-size: 10px; letter-spacing: 0.22em; color: var(--gold); margin-top: 6px; font-weight: 600; }
.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a { color: var(--text-soft); font-size: 15px; font-weight: 500; transition: color 0.2s var(--ease); }
.main-nav a:hover { color: var(--gold); }
.btn-book { background: var(--gold); color: var(--navy-deep); padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; transition: all 0.25s var(--ease); box-shadow: 0 4px 14px -4px var(--gold-glow); }
.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero { position: relative; padding: 90px 28px 110px; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201,169,97,0.06) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 10% 80%, rgba(201,169,97,0.04) 0%, transparent 60%), var(--navy); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 80%); }
.hero-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: center; position: relative; }

.award-pill { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,97,0.25); padding: 10px 18px 10px 10px; border-radius: var(--radius-pill); margin-bottom: 34px; font-size: 13px; }
.award-pill .trophy-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.award-pill .meta b { color: var(--gold); font-weight: 700; display: block; margin-bottom: 2px; }
.award-pill .meta span { color: var(--text-soft); font-size: 12px; }
h1.hero-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 5.4vw, 70px); line-height: 1.04; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 28px; }
h1.hero-title em { font-style: italic; color: var(--gold); font-weight: 500; }
h1.hero-title .route-arrow { color: var(--gold-dim); font-style: normal; margin: 0 0.1em; font-size: 0.7em; vertical-align: 0.08em; }
.hero-sub { color: var(--text-soft); font-size: 18px; line-height: 1.55; max-width: 540px; margin-bottom: 40px; }
.hero-sub strong { color: var(--cream); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { background: var(--gold); color: var(--navy-deep); padding: 16px 30px; border-radius: var(--radius-sm); font-weight: 700; font-size: 16px; transition: all 0.25s var(--ease); box-shadow: 0 8px 20px -6px var(--gold-glow); display: inline-flex; align-items: center; gap: 10px; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--cream); padding: 16px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 16px; border: 1px solid rgba(255,255,255,0.14); transition: all 0.25s var(--ease); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.quote-card { background: linear-gradient(145deg, var(--navy-card) 0%, #0D1427 100%); border: 1px solid var(--navy-border); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6); position: relative; }
.quote-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--cream); margin-bottom: 6px; }
.quote-card .sub { color: var(--text-soft); font-size: 14px; margin-bottom: 24px; }
.quote-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 22px 0; margin-bottom: 22px; border-top: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border); }
.quote-stat .label { font-size: 11px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.quote-stat .value { font-family: var(--font-display); font-size: 18px; color: var(--cream); font-weight: 500; line-height: 1; }
.fare-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.fare-row .label { font-size: 13px; color: var(--text-soft); }
.fare-row .price { font-family: var(--font-display); font-size: 38px; color: var(--gold); font-weight: 600; }
.fare-row .price .from { font-size: 13px; color: var(--muted); margin-right: 4px; font-family: var(--font-body); font-weight: 500; }
.quote-card .btn-primary { width: 100%; justify-content: center; }
.quote-card .note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; max-width: 760px; }
.hero-stat { background: rgba(255,255,255,0.02); border: 1px solid var(--navy-border); border-radius: var(--radius); padding: 20px 18px; }
.hero-stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.hero-stat .lab { font-size: 11px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; font-weight: 600; }

.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 36px; padding: 28px; background: var(--navy-deep); border-top: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border); }
.trust-item { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: 14px; font-weight: 500; }
.trust-item span { color: var(--gold); font-weight: 700; }

.section { padding: 100px 28px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
h2.section-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.8vw, 48px); line-height: 1.1; letter-spacing: -0.015em; color: var(--cream); margin-bottom: 22px; max-width: 780px; }
h2.section-title em { font-style: italic; color: var(--gold); }

.long-prose { max-width: 820px; margin: 0 auto; }
.long-prose p { color: var(--text-soft); font-size: 16.5px; line-height: 1.75; margin-bottom: 20px; }
.long-prose p:first-of-type::first-letter { font-family: var(--font-display); float: left; font-size: 58px; line-height: 0.9; padding: 4px 10px 0 0; color: var(--gold); font-weight: 500; }
.long-prose strong { color: var(--cream); font-weight: 600; }
.long-prose em.hi { color: var(--gold); font-style: normal; font-weight: 600; }

.key-details { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--radius-lg); padding: 38px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.key-details h3 { font-family: var(--font-display); font-size: 22px; color: var(--cream); font-weight: 500; margin-bottom: 18px; }
.key-details h3 em { font-style: italic; color: var(--gold); }
.key-details-list { list-style: none; }
.key-details-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px dashed var(--navy-border); gap: 16px; }
.key-details-list li:last-child { border-bottom: none; }
.key-details-list li span.k { color: var(--text-soft); font-size: 14px; }
.key-details-list li span.v { color: var(--cream); font-family: var(--font-display); font-size: 16px; font-weight: 500; text-align: right; }
.key-details-list li span.v.hilite { color: var(--gold); font-size: 18px; }
.key-details .kd-callout { background: rgba(201,169,97,0.04); border: 1px solid rgba(201,169,97,0.18); padding: 22px 24px; border-radius: var(--radius); }
.key-details .kd-callout p { color: var(--text-soft); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.key-details .kd-callout .cta-stack { display: flex; flex-direction: column; gap: 8px; }
.key-details .kd-callout .cta-stack a { display: block; padding: 12px 18px; text-align: center; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: all 0.2s var(--ease); }
.key-details .kd-callout .cta-phone { background: var(--gold); color: var(--navy-deep); }
.key-details .kd-callout .cta-phone:hover { background: var(--gold-light); }
.key-details .kd-callout .cta-wa { background: #25D366; color: white; }
.key-details .kd-callout .cta-wa:hover { background: #20ba5a; }

.fares-table-wrap { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 30px; }
.fares-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.fares-table thead { background: rgba(201,169,97,0.05); border-bottom: 1px solid var(--navy-border); }
.fares-table th { text-align: left; padding: 18px 22px; font-weight: 700; color: var(--gold); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.fares-table td { padding: 16px 22px; border-bottom: 1px solid var(--navy-border); color: var(--text-soft); }
.fares-table tbody tr:last-child td { border-bottom: none; }
.fares-table tbody tr:hover { background: rgba(255,255,255,0.015); }
.fares-table td:first-child { color: var(--cream); font-weight: 600; font-family: var(--font-display); font-size: 16px; }
.fares-table td.price { color: var(--gold); font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.fares-table td.price small { color: var(--muted); font-size: 11px; font-family: var(--font-body); font-weight: 500; margin-right: 3px; }
.fares-table td .book-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: all 0.2s var(--ease); display: inline-block; }
.fares-table td .book-btn:hover { background: var(--gold); color: var(--navy-deep); }

.section-faq { background: var(--navy-deep); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--navy-border); padding: 22px 0; }
.faq-item summary { font-family: var(--font-display); font-size: 19px; color: var(--cream); font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s var(--ease); }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--gold); font-weight: 300; transition: transform 0.3s var(--ease); font-family: var(--font-body); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { color: var(--text-soft); font-size: 16px; line-height: 1.65; margin-top: 16px; padding-right: 30px; }

.related-routes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.related-routes a { background: var(--navy-card); border: 1px solid var(--navy-border); padding: 14px 18px; border-radius: var(--radius-sm); color: var(--text-soft); font-size: 14px; transition: all 0.2s var(--ease); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.related-routes a:hover { border-color: var(--gold); color: var(--gold); }
.related-routes a .arr { color: var(--gold-dim); font-size: 13px; transition: transform 0.2s var(--ease); }
.related-routes a:hover .arr { transform: translateX(3px); color: var(--gold); }

.section-final-cta { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,97,0.08) 0%, transparent 60%), var(--navy); text-align: center; padding: 110px 28px; border-top: 1px solid var(--navy-border); }
.section-final-cta h2 { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 52px); font-weight: 500; color: var(--cream); margin-bottom: 22px; line-height: 1.05; letter-spacing: -0.015em; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-final-cta h2 em { font-style: italic; color: var(--gold); }
.section-final-cta p { color: var(--text-soft); font-size: 18px; max-width: 560px; margin: 0 auto 38px; }
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.site-footer { background: var(--navy-deep); border-top: 1px solid var(--navy-border); padding: 70px 28px 30px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(auto-fit, minmax(140px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--text-soft); font-size: 14px; line-height: 1.6; margin-top: 20px; max-width: 320px; }
.footer-col h4 { color: var(--cream); font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-soft); font-size: 14px; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--navy-border); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 13px; }

@keyframes reveal-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: reveal-up 0.9s var(--ease-out) both; }
.reveal.d1 { animation-delay: 0.08s; } .reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.24s; } .reveal.d4 { animation-delay: 0.32s; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .key-details { grid-template-columns: 1fr; gap: 28px; padding: 26px 22px; }
  .related-routes { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--navy-border); border-radius: var(--radius-sm); color: var(--cream); font-size: 20px; }
  .btn-book { padding: 11px 18px; font-size: 14px; }
  .brand-mark { width: 40px; height: 40px; font-size: 18px; }
  .brand-text .name { font-size: 18px; }
  .brand-text .tagline { font-size: 9px; }
  .section { padding: 70px 20px; }
  .hero { padding: 60px 20px 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: 10px; }
  .hero-stat .num { font-size: 22px; } .hero-stat .lab { font-size: 10px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .related-routes { grid-template-columns: 1fr; }
  h1.hero-title { font-size: 36px; }
}
