/* ============================================
   55846444.com — Multilingual Airport Taxi Site
   Independent visual system (navy/gold), deliberately distinct from
   55846444.com.hk's red/white branding — same phone number and business,
   but styled to read as its own international-facing site rather than a
   copy-paste of the Chinese-only site.
   Version: 3.0 (full redesign)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Navy: header/footer/dark surfaces. Gold: accent/CTAs/highlights. */
  --navy: #0F2942;
  --navy-deep: #081826;
  --navy-mid: #1B3A5C;
  --gold: #C89B3C;
  --gold-hover: #B0842E;
  --gold-light: #F7ECD3;

  --primary: var(--gold);
  --primary-hover: var(--gold-hover);
  --primary-dark: var(--navy);

  --white: #FFFFFF;
  --bg-light: #FAF7F1;
  --bg-warm: #FBF3DF;
  --border: #E4DFD3;
  --text-secondary: #5B6470;
  --text-body: #16232E;
  --footer-bg: var(--navy-deep);
  --footer-text: #A9B7C4;
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;
  --shadow-sm: 0 1px 3px rgba(15,41,66,0.10);
  --shadow-md: 0 6px 18px rgba(15,41,66,0.14);
  --shadow-lg: 0 12px 32px rgba(15,41,66,0.20);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
  --max-width: 1200px;
  --header-height: 76px;
  --font-head: "Manrope", -apple-system, BlinkMacSystemFont, "PingFang HK", "Microsoft JhengHei", "Noto Sans TC", "Noto Sans JP", "Noto Sans KR", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang HK", "Microsoft JhengHei", "Noto Sans TC", "Noto Sans JP", "Noto Sans KR", sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}
h1, h2, h3, .btn, .header-cta, .site-logo, .logo-title { font-family: var(--font-head); }
a { color: var(--gold-hover); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER — dark navy, sticky, gold accents
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  z-index: 1000;
  height: var(--header-height);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.site-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}
.site-logo .logo-text { display: flex; flex-direction: column; }
.site-logo .logo-title { font-size: 17px; font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: 0.2px; }
.site-logo .logo-subtitle { font-size: 11px; color: #90A2B3; line-height: 1.2; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 26px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #C7D3DE;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.main-nav > li > a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 20px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--white); }
.main-nav > li > a:hover::after,
.main-nav > li.active > a::after { transform: scaleX(1); }
.main-nav > li > a .arrow { font-size: 10px; margin-left: 3px; opacity: 0.7; }

/* ---- Language switcher ---- */
.main-nav > li.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
  margin-left: 6px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.lang-link {
  display: block;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #90A2B3;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  white-space: nowrap;
  transition: var(--transition);
}
.lang-link:hover { color: var(--navy-deep); border-color: var(--gold); background: var(--gold); }
.mobile-lang-switch {
  display: flex;
  gap: 10px;
  padding: 16px 20px 4px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-lang-switch .lang-link { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.mobile-lang-switch .lang-link:hover { color: var(--navy-deep); background: var(--gold); border-color: var(--gold); }

/* ---- Dropdown: simple list (About/Reviews, 2 items) ---- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1001;
  pointer-events: none;
}
.main-nav > li.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu ul { list-style: none; margin: 0; padding: 0; }
.dropdown-menu ul li a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-menu ul li a:hover {
  background: var(--bg-warm);
  color: var(--gold-hover);
}
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ---- Mega dropdown: 2-column (Destinations) or 3-column
   (District Fares, Taxi Guide — larger item counts) ---- */
.dropdown-mega {
  padding: 14px;
}
.dropdown-mega .mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 2px 8px;
}
.dropdown-mega .mega-grid.mega-grid-3 {
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}
.dropdown-mega .mega-grid li a,
.dropdown-mega .mega-grid a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition);
  white-space: normal;
}
.dropdown-mega .mega-grid li a:hover,
.dropdown-mega .mega-grid a:hover {
  background: var(--bg-warm);
  color: var(--gold-hover);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: #DBB458; transform: scale(1.03); }
.header-cta svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 8px 0 100px;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav-overlay > a,
.mobile-nav-overlay > .mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #DCE4EB;
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}
.mobile-nav-overlay > a:hover,
.mobile-nav-overlay > .mobile-toggle:hover { color: var(--gold); }

/* Submenu revealed under a .mobile-toggle (see main.js initMobileNav,
   which swaps the arrow glyph itself between ▾/▴ on toggle) */
.mobile-dropdown {
  display: none;
  background: rgba(0,0,0,0.18);
}
.mobile-dropdown.active { display: block; }
.mobile-dropdown a {
  display: block;
  padding: 12px 20px 12px 36px;
  font-size: 14px;
  font-weight: 500;
  color: #B7C3CE;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { color: var(--gold); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--gold-hover); }
.breadcrumb .sep { margin: 0 6px; }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content { min-height: 60vh; }
.page-section { padding: 52px 0; }
.page-section:nth-child(even) { background: var(--bg-light); }
.page-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.page-section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Hero Section */
.hero {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-light) 55%, #FFFFFF 100%);
  padding: 60px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.28;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero h1 .highlight { color: var(--gold-hover); }
.hero .hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: #DBB458; color: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.card-title { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.card-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Tables */
.table-responsive { overflow-x: auto; margin: 20px 0; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-head);
  white-space: nowrap;
}
.price-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.price-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.price-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.price-table tbody tr:hover { background: var(--bg-warm); }
.price-table .price-highlight {
  color: var(--gold-hover);
  font-weight: 800;
  font-size: 16px;
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
  color: var(--navy);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .faq-toggle { font-size: 20px; color: var(--gold-hover); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.cta-banner h2 { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
.cta-banner .btn-white {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.cta-banner .btn-white:hover { background: #DBB458; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Related Services */
.related-services { padding: 40px 0; }
.related-services h3 { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-links a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  text-decoration: none;
}
.related-links a:hover {
  border-color: var(--gold);
  color: var(--gold-hover);
  background: var(--bg-warm);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid.footer-grid-5 {
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .footer-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-brand .footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}
.footer-brand .footer-phone:hover { color: #DBB458; }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--footer-text);
  font-size: 13px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours { font-size: 13px; line-height: 1.8; }
.footer-hours .highlight { color: var(--whatsapp); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: var(--footer-text); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn svg { width: 26px; height: 26px; fill: var(--white); }
.floating-btn-whatsapp { background: var(--whatsapp); }
.floating-btn-whatsapp:hover { background: var(--whatsapp-hover); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.floating-btn-phone { background: var(--navy); }
.floating-btn-phone:hover { background: var(--navy-mid); box-shadow: 0 6px 20px rgba(15,41,66,0.4); }

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.floating-btn-whatsapp { animation: pulse 2s infinite; }
.floating-btn-whatsapp:hover { animation: none; }

/* Floating label tooltip */
.floating-btn .btn-label {
  position: absolute;
  right: 66px;
  background: var(--navy-deep);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}
.floating-btn .btn-label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deep);
  border-right: none;
}
.floating-btn:hover .btn-label { opacity: 1; visibility: visible; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--gold-hover); }
.text-secondary { color: var(--text-secondary); }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.d-none { display: none; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  :root { --header-height: 64px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .footer-grid,
  .footer-grid.footer-grid-5 { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 28px; }
  .dropdown-mega { min-width: auto; }
  .page-section { padding: 36px 0; }
}

@media (max-width: 767px) {
  :root { --header-height: 60px; }
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero { padding: 36px 0; }
  .hero h1 { font-size: 24px; }
  .hero .hero-subtitle { font-size: 15px; }
  .footer-grid,
  .footer-grid.footer-grid-5 { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .price-table { font-size: 13px; }
  .price-table thead th, .price-table tbody td { padding: 9px 10px; }
  .floating-btn { width: 64px; height: 64px; }
  .floating-btn svg { width: 30px; height: 30px; }
  .floating-cta { bottom: 16px; right: 16px; }
  .page-section-title { font-size: 22px; }
  .btn { padding: 11px 22px; font-size: 15px; }
  .cta-banner { padding: 32px 16px; margin: 24px 0; border-radius: var(--radius); }
  .cta-banner h2 { font-size: 22px; }
  .site-logo .logo-title { font-size: 16px; }
}

@media print {
  .site-header, .site-footer, .floating-cta, .cta-banner { display: none !important; }
  body { padding-top: 0; }
}
