:root {
  --ink: #10233f;
  --ink-soft: #506075;
  --navy: #0b2545;
  --navy-deep: #071a31;
  --blue: #1971c2;
  --sky: #eaf5ff;
  --gold: #f4b63f;
  --gold-deep: #d79113;
  --paper: #fffdf9;
  --mist: #f5f8fc;
  --line: #dce5ee;
  --white: #fff;
  --shadow: 0 18px 48px rgba(9, 35, 67, .11);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(770px, 100%); }
.section { padding: 92px 0; }
.section-soft { background: var(--mist); }
.section-dark { color: var(--white); background: var(--navy); }
.eyebrow { display: block; margin-bottom: 13px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: #a9d5ff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 4.75rem); }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.7vw, 3.3rem); }
h3 { font-size: 1.38rem; }
h1 em, h2 em { color: var(--gold-deep); font-style: normal; }
p { color: var(--ink-soft); }
.utility-bar { color: #ddecff; background: var(--navy-deep); font-size: .78rem; }
.utility-inner { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.utility-inner span:last-child { display: flex; align-items: center; gap: 10px; }
.utility-inner i { width: 4px; height: 4px; border-radius: 99px; background: #87add4; }
.utility-inner a:hover { color: var(--gold); }
.site-header { position: relative; z-index: 20; background: rgba(255, 253, 249, .96); border-bottom: 1px solid rgba(16, 35, 63, .07); }
.nav-wrap { display: flex; align-items: center; min-height: 83px; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 10px; color: var(--navy); line-height: 1.05; }
.brand-mark { display: grid; width: 39px; height: 39px; place-items: center; border: 2px solid var(--gold); border-radius: 50%; color: var(--navy); background: #fff9e8; font-size: .71rem; font-weight: 900; letter-spacing: -.04em; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: .92rem; font-weight: 800; letter-spacing: -.03em; }
.brand small { margin-top: 2px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.primary-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 22px; }
.primary-nav ul { display: flex; align-items: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.primary-nav li { font-size: .84rem; font-weight: 700; white-space: nowrap; }
.primary-nav li a:hover { color: var(--blue); }
.nav-cta { padding: 10px 15px; border-radius: 7px; color: var(--white); background: var(--blue); font-size: .8rem; font-weight: 800; white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; padding: 9px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); }
.hero { position: relative; overflow: hidden; padding: 76px 0 70px; color: var(--white); background: linear-gradient(125deg, #0a2546 0%, #103c6b 60%, #175d94 100%); }
.hero::after { position: absolute; right: -8%; bottom: -170px; width: 630px; height: 630px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; content: ""; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { top: -240px; left: 29%; width: 470px; height: 470px; background: radial-gradient(circle, rgba(92, 180, 247, .27), transparent 68%); }
.orb-two { right: 4%; top: 12%; width: 210px; height: 210px; border: 28px solid rgba(244, 182, 63, .11); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(40px, 6vw, 88px); }
.hero-copy h1 { max-width: 680px; }
.hero-copy h1 em { color: #ffc651; }
.hero-lede { max-width: 600px; color: #d6eaff; font-size: 1.07rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 8px; font-size: .88rem; font-weight: 800; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); }
.button-primary:hover { background: #0d5da7; }
.button-secondary { color: var(--navy); border-color: #b6c8da; background: var(--white); }
.button-accent { color: #172333; background: var(--gold); }
.button-light { color: var(--navy); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .66); background: transparent; }
.button-full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 29px; color: #cce7fc; font-size: .82rem; font-weight: 700; }
.hero-form { align-self: stretch; }
.booking-form { padding: 27px; border-radius: var(--radius); color: var(--ink); background: var(--white); box-shadow: 0 20px 60px rgba(0, 15, 31, .22); }
.form-heading h2 { margin-bottom: 5px; font-size: 1.7rem; }
.form-heading p { margin-bottom: 20px; font-size: .81rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form label { display: block; color: #40536a; font-size: .73rem; font-weight: 800; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; margin-top: 5px; padding: 10px 11px; border: 1px solid #cdd8e5; border-radius: 6px; outline: 0; color: var(--ink); background: #fff; font-size: .84rem; }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(25, 113, 194, .11); }
.wide-field, .message-field { grid-column: 1 / -1; margin-top: 12px; }
.booking-form .button { margin-top: 17px; }
.form-note { margin: 11px 0 0; color: #647488; font-size: .68rem; line-height: 1.45; text-align: center; }
.booking-form-compact { padding: 23px; }
.booking-form-compact .form-grid { grid-template-columns: 1fr; }
.intro-strip { color: #d9eafe; background: var(--navy-deep); }
.intro-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.intro-strip p { margin: 0; padding: 19px 22px; border-right: 1px solid rgba(255,255,255,.1); color: inherit; font-family: Georgia, serif; font-size: .95rem; text-align: center; }
.intro-strip p:last-child { border-right: 0; }
.intro-strip span { display: block; margin-bottom: 2px; color: var(--gold); font-family: Inter, sans-serif; font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 10vw, 155px); }
.welcome-section h2 { max-width: 420px; }
.lead-copy { color: var(--ink); font-size: 1.18rem; line-height: 1.7; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--blue); font-size: .85rem; font-weight: 800; }
.text-link span { font-size: 1.1rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 610px; margin: 14px 0 0; }
.section-heading-light { color: var(--white); }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fleet-card { position: relative; min-height: 259px; padding: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.fleet-card:hover { z-index: 1; transform: translateY(-4px); box-shadow: var(--shadow); }
.fleet-card h3 { margin: 4px 0 8px; }
.fleet-card small { color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.fleet-card p { margin-bottom: 16px; font-size: .78rem; line-height: 1.55; }
.fleet-card em { position: absolute; bottom: 16px; color: var(--blue); font-size: .72rem; font-style: normal; font-weight: 800; }
.fleet-icon { position: relative; height: 78px; margin: 0 -18px 17px; overflow: hidden; background: linear-gradient(135deg, #dceaf5, #f8fafc); }
.fleet-icon::before { position: absolute; right: -19px; bottom: -39px; width: 210px; height: 100px; border: 16px solid #3f6b94; border-radius: 53px 24px 22px 17px; content: ""; transform: skewX(-14deg); }
.fleet-icon span { position: absolute; right: 31px; bottom: 22px; width: 78px; height: 25px; border-radius: 4px 20px 4px 4px; background: #245a8b; transform: skewX(-15deg); }
.fleet-icon i, .fleet-icon b { position: absolute; z-index: 1; bottom: 11px; width: 16px; height: 16px; border: 4px solid #1a3149; border-radius: 50%; background: #eff7fb; }
.fleet-icon i { right: 44px; }.fleet-icon b { right: 113px; }
.fleet-1 { background: linear-gradient(135deg, #d9ede4, #f9fcfa); }.fleet-1::before { border-color: #4b7a63; }.fleet-1 span { background: #3f8566; }
.fleet-2 { background: linear-gradient(135deg, #eee0d2, #fdfaf5); }.fleet-2::before { border-color: #94613e; }.fleet-2 span { background: #bd7b45; }
.fleet-3 { background: linear-gradient(135deg, #ece0ef, #fbf8fc); }.fleet-3::before { border-color: #76547c; }.fleet-3 span { background: #8b5c96; }
.fleet-4 { background: linear-gradient(135deg, #dce5ed, #fbfcfd); }.fleet-4::before { border-color: #526578; }.fleet-4 span { background: #607d97; }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.route-card { display: block; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); transition: transform .2s, border-color .2s, box-shadow .2s; }
.route-card:hover { transform: translateY(-3px); border-color: #9fc5e7; box-shadow: 0 14px 30px rgba(11, 37, 69, .08); }
.route-card span { display: block; margin-bottom: 7px; color: var(--blue); font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.route-card strong { display: block; min-height: 46px; font-family: Georgia, serif; font-size: 1.12rem; line-height: 1.18; }
.route-card small { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; color: var(--ink-soft); font-size: .72rem; }
.route-card b { color: var(--blue); font-size: 1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.service-card { display: block; min-height: 208px; padding: 23px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: var(--white); background: rgba(255,255,255,.06); transition: background .2s, transform .2s; }
.service-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.service-number { display: block; color: #8ac8fb; font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 16px 0 9px; }
.service-card p { color: #c7e1f6; font-size: .8rem; }
.service-card b { display: block; margin-top: 18px; color: #ffce68; font-size: .72rem; }
.service-grid-light .service-card { border-color: var(--line); color: var(--ink); background: var(--white); }
.service-grid-light .service-card p { color: var(--ink-soft); }.service-grid-light .service-card b { color: var(--blue); }
.why-grid { align-items: center; }
.why-art { position: relative; display: grid; min-height: 367px; place-items: center; overflow: hidden; border-radius: 17px; color: var(--white); background: linear-gradient(145deg, #0d2b4d, #1c6fa3); }
.why-art::before, .why-art::after { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }.why-art::before { width: 480px; height: 480px; }.why-art::after { width: 330px; height: 330px; }
.why-art p { position: relative; z-index: 1; color: #d9eeff; font-family: Georgia, serif; font-size: 1.4rem; line-height: 1.25; text-align: center; }.why-art strong { color: var(--white); font-size: 2.1rem; }
.route-line { position: absolute; z-index: 1; top: 15%; left: 14%; width: 72%; height: 72%; border: 2px dashed rgba(255,255,255,.4); border-radius: 52% 48% 58% 42%; transform: rotate(-12deg); }.route-line span, .route-line i, .route-line b { position: absolute; display: block; width: 14px; height: 14px; border: 3px solid var(--white); border-radius: 50%; background: var(--gold); }.route-line span { top: 3%; left: 9%; }.route-line i { right: 3%; bottom: 17%; }.route-line b { bottom: 0; left: 33%; background: #75c8ff; }
.feature-list { margin: 27px 0; }.feature-list > div { display: flex; gap: 17px; padding: 15px 0; border-top: 1px solid var(--line); }.feature-list b { color: var(--gold-deep); font-family: Georgia, serif; font-size: 1.3rem; }.feature-list p { margin: 0; }.feature-list strong, .feature-list span { display: block; }.feature-list strong { color: var(--ink); font-size: .87rem; }.feature-list span { margin-top: 3px; color: var(--ink-soft); font-size: .79rem; }
.center { justify-content: center; text-align: center; }.center h2 { width: 100%; }
.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 21px 0; color: var(--ink); cursor: pointer; font-family: Georgia, serif; font-size: 1.14rem; font-weight: 700; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--blue); font-family: Inter, sans-serif; font-size: 1.35rem; font-weight: 400; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list p { max-width: 730px; padding-bottom: 20px; font-size: .88rem; }
.cta-band { color: var(--white); background: linear-gradient(100deg, #145d96, #0c2b4d); }.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 54px 0; }.cta-band h2 { margin-bottom: 10px; font-size: 2.2rem; }.cta-band p { margin: 0; color: #d6ecfe; }.cta-actions { flex-shrink: 0; margin: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 18px; color: var(--ink-soft); font-size: .75rem; }.breadcrumbs a { color: var(--blue); }.breadcrumbs b { color: #9dacbb; font-weight: 500; }
.page-hero { padding: 73px 0; background: linear-gradient(150deg, #edf7ff, #fdfcf9 67%); border-bottom: 1px solid #e2e9ef; }.page-hero-grid { display: grid; grid-template-columns: 1fr 280px; align-items: center; gap: 75px; }.page-hero h1 { max-width: 750px; margin-bottom: 16px; font-size: clamp(2.4rem, 4.5vw, 4.15rem); }.page-hero p { max-width: 750px; font-size: 1.04rem; }.page-hero-simple { text-align: center; }.page-hero-simple p { margin: 0 auto; }.route-sidecard { padding: 24px; border-radius: 13px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }.route-sidecard span { display: block; color: #a9d7fc; font-size: .69rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }.route-sidecard strong { display: block; margin: 13px 0 6px; font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.12; }.route-sidecard p { color: #d8e9f7; font-size: .8rem; }.route-sidecard a { display: inline-block; margin-top: 11px; color: #ffcd69; font-size: .78rem; font-weight: 800; }
.content-grid { align-items: start; }.content-grid article p { font-size: 1rem; }.travel-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }.travel-points span { padding: 7px 11px; border-radius: 99px; color: #205d91; background: #e7f4ff; font-size: .72rem; font-weight: 800; }
.link-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.link-panels article { padding: 25px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); }.link-panels h3 { margin-bottom: 15px; }.link-panels ul { margin: 0; padding: 0; list-style: none; }.link-panels li + li { border-top: 1px solid var(--line); }.link-panels a { display: block; padding: 10px 0; color: var(--blue); font-size: .8rem; font-weight: 700; }.link-panels a:hover { color: var(--navy); }
.callout-box { margin-top: 32px; padding: 28px; border: 1px solid #c9dfef; border-radius: 14px; background: #f1f8fe; }.callout-box > h2 { margin-bottom: 20px; font-size: 1.7rem; }.contact-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 27px 0; }.contact-panel a { display: block; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }.contact-panel span, .contact-panel strong { display: block; }.contact-panel span { color: var(--blue); font-size: .66rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }.contact-panel strong { margin-top: 7px; font-family: Georgia, serif; font-size: 1.05rem; overflow-wrap: anywhere; }.fare-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 30px 0; overflow: hidden; border-radius: 10px; background: #c8d8e5; }.fare-steps div { min-height: 106px; padding: 19px; background: var(--white); }.fare-steps b, .fare-steps span { display: block; }.fare-steps b { color: var(--gold-deep); font-family: Georgia, serif; font-size: 1.4rem; }.fare-steps span { margin-top: 7px; color: var(--ink); font-size: .8rem; font-weight: 800; }
.route-region + .route-region { margin-top: 68px; }.prose { font-size: 1.02rem; }.prose p { font-size: 1rem; }.prose ul { padding-left: 19px; }.prose li { margin: 8px 0; color: var(--ink-soft); }
.site-footer { color: #d5e6f5; background: var(--navy-deep); }.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 45px; padding: 60px 0 46px; }.brand-footer { color: var(--white); }.brand-footer .brand-mark { color: var(--white); background: rgba(255,255,255,.08); }.site-footer p { max-width: 300px; margin: 20px 0; color: #aec6dc; font-size: .83rem; }.footer-contact { display: flex; flex-direction: column; gap: 6px; color: #fff; font-size: .86rem; font-weight: 800; }.site-footer h2 { margin: 3px 0 16px; color: var(--white); font-family: Inter, sans-serif; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }.site-footer ul { margin: 0; padding: 0; list-style: none; }.site-footer li + li { margin-top: 8px; }.site-footer li { color: #b7d0e4; font-size: .8rem; }.site-footer li a:hover { color: var(--gold); }.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.11); color: #9bb7ce; font-size: .71rem; }
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 30; display: flex; flex-direction: column; gap: 9px; }.floating-actions a { display: flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 99px; color: var(--white); box-shadow: 0 7px 22px rgba(2,18,35,.27); font-size: .76rem; font-weight: 900; }.floating-actions svg { width: 18px; height: 18px; fill: currentColor; }.floating-call { background: var(--blue); }.floating-whatsapp { background: #1c9b55; }
@media (max-width: 1050px) { .primary-nav { gap: 14px; }.primary-nav ul { gap: 12px; }.primary-nav li { font-size: .76rem; }.fleet-grid, .route-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .utility-bar { display: none; }.nav-wrap { min-height: 67px; }.menu-toggle { display: block; }.primary-nav { position: absolute; top: 67px; right: 0; left: 0; display: none; padding: 20px; border-top: 1px solid var(--line); background: var(--paper); box-shadow: 0 16px 28px rgba(9,35,67,.08); }.primary-nav.is-open { display: block; }.primary-nav ul { display: block; }.primary-nav li { padding: 9px 0; font-size: .9rem; }.nav-cta { display: inline-block; margin-top: 10px; }.hero { padding: 55px 0; }.hero-grid, .two-column, .page-hero-grid { grid-template-columns: 1fr; gap: 37px; }.hero-copy { text-align: center; }.hero-copy h1 { margin-right: auto; margin-left: auto; }.hero-lede { margin-right: auto; margin-left: auto; }.hero-actions, .trust-row { justify-content: center; }.fleet-grid, .route-grid { grid-template-columns: repeat(2, 1fr); }.service-grid { grid-template-columns: repeat(2, 1fr); }.link-panels { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1.5fr 1fr; }.route-sidecard { max-width: 340px; }.page-hero-simple { text-align: left; }.page-hero-simple p { margin-left: 0; }.intro-strip-grid { grid-template-columns: 1fr; }.intro-strip p { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }.intro-strip p:last-child { border-bottom: 0; } }
@media (max-width: 540px) { .container { width: min(100% - 28px, 1160px); }.section { padding: 62px 0; }.hero { padding-top: 47px; }.hero h1 { font-size: 2.55rem; }.booking-form { padding: 20px; }.form-grid, .service-grid, .fleet-grid, .route-grid, .contact-panel, .fare-steps { grid-template-columns: 1fr; }.fleet-card { min-height: 230px; }.section-heading, .cta-band-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }.section-heading { margin-bottom: 27px; }.footer-grid { grid-template-columns: 1fr; gap: 29px; }.footer-bottom { padding: 17px 0; }.floating-actions { right: 12px; bottom: 12px; }.floating-actions a { padding: 10px 11px; }.floating-actions span { display: none; }.cta-actions { width: 100%; }.cta-actions .button { flex: 1; }.why-art { min-height: 300px; }.why-art strong { font-size: 1.75rem; } }
