/* ===== CITY ADVENTURES - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:    #0D1B2A;
  --coral:   #FF5733;
  --gold:    #FFB627;
  --white:   #F8F6F1;
  --steel:   #8C9BAB;
  --dark2:   #162234;
  --light-bg:#F0EDE6;
  --font:    'Plus Jakarta Sans', sans-serif;
  --radius:  12px;
  --shadow:  0 8px 32px rgba(13,27,42,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAV ===== */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.site-nav {
  background: rgba(13,27,42,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--white);
  font-size: 1.1rem; font-weight: 500; letter-spacing: -0.01em;
}
.logo-icon { font-size: 1.5rem; color: var(--coral); line-height: 1; }
.nav-logo strong { font-weight: 800; color: var(--coral); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  color: rgba(248,246,241,0.85);
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  background: none; border: none; cursor: pointer; font-family: var(--font);
  display: flex; align-items: center;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active { color: var(--white); background: rgba(255,87,51,0.15); }

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute; top: calc(100% + 0px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  width: 640px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  z-index: 200;
}
/* Invisible hover bridge so mouse movement from button → panel doesn't close menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0; height: 20px;
}
.mega-menu.open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mega-card {
  display: flex; flex-direction: column;
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.mega-card:hover { background: rgba(255,87,51,0.08); border-color: rgba(255,87,51,0.25); transform: translateY(-2px); }
.mega-card-img { aspect-ratio: 16/9; overflow: hidden; }
.mega-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.4s; }
.mega-card:hover .mega-card-img img { transform: scale(1.06); }
.mega-card-body { padding: 12px 14px 14px; }
.mega-card-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.mega-card-title { font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 5px; line-height: 1.25; }
.mega-card-desc { font-size: 0.75rem; color: rgba(248,246,241,0.5); line-height: 1.5; }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #e04520 !important; transform: translateY(-1px); }

/* Burger */
.nav-toggle-input { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; z-index: 1100; position: relative; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle-input:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE FULL-SCREEN OVERLAY ===== */
/* Must use viewport-relative fixed positioning — .site-nav is already fixed
   so a child fixed element anchors to viewport correctly */
.mobile-overlay {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 1050;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-overlay-inner {
  display: flex; flex-direction: column;
  padding: 32px 24px 40px;
  min-height: 100%;
  gap: 4px;
}
.mob-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-radius: 12px;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; width: 100%;
  cursor: pointer; font-family: var(--font);
  transition: background 0.2s, border-color 0.2s;
}
.mob-link:hover { background: rgba(255,87,51,0.1); border-color: rgba(255,87,51,0.2); }
.mob-services-btn { border: none; text-align: left; }
.mob-services-btn svg { transition: transform 0.3s; flex-shrink: 0; }
.mob-services-btn.active svg { transform: rotate(180deg); }

/* Mobile service cards (accordion) */
.mob-service-cards {
  display: none; flex-direction: column; gap: 10px;
  padding: 10px 0 4px;
  animation: fadeDown 0.25s ease;
}
.mob-service-cards.open { display: flex; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mob-svc-card {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.mob-svc-card:hover { background: rgba(255,87,51,0.1); border-color: rgba(255,87,51,0.25); }
.mob-svc-img {
  width: 72px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.mob-svc-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.mob-svc-title { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.mob-svc-sub { font-size: 0.73rem; color: rgba(248,246,241,0.45); }
.mob-services-wrap { display: flex; flex-direction: column; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(248,246,241,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--coral); }

/* ===== FAB ===== */
.fab-container {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fab-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
.fab-bubble {
  position: absolute;
  bottom: 72px; right: 0;
  width: 300px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(13,27,42,0.18);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.25s, transform 0.25s;
}
.fab-bubble.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.fab-bubble-header {
  background: var(--navy);
  padding: 16px;
  display: flex; align-items: center; gap: 10px;
}
.fab-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--coral);
  color: white; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fab-name { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.fab-status { color: #4ade80; font-size: 0.75rem; }
.fab-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1rem;
  transition: color 0.2s;
}
.fab-close:hover { color: white; }
.fab-intro { padding: 14px 16px 8px; font-size: 0.88rem; color: var(--navy); }
.fab-options { padding: 0 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.fab-option {
  display: block;
  padding: 10px 14px;
  background: var(--light-bg);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.15s, color 0.15s;
  border: 1.5px solid transparent;
}
.fab-option:hover { background: var(--coral); color: white; border-color: var(--coral); }

/* ===== SHARED SECTION STYLES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem; color: var(--steel);
  max-width: 580px; line-height: 1.7;
}
.section-sub.light { color: rgba(248,246,241,0.7); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral); color: var(--white);
  box-shadow: 0 4px 16px rgba(255,87,51,0.35);
}
.btn-primary:hover { background: #e04520; box-shadow: 0 6px 24px rgba(255,87,51,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,182,39,0.35);
}
.btn-gold:hover { background: #e0a010; }

/* Cards */
.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,27,42,0.15); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 8px;
}
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.card-text { font-size: 0.88rem; color: var(--steel); line-height: 1.65; }

/* Stats strip */
.stats-strip {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--coral);
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: rgba(248,246,241,0.6); font-weight: 500; }

/* Dark section */
.section-dark { background: var(--navy); }
.section-alt { background: var(--light-bg); }

/* Image placeholder (gradient stand-in for real photos) */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .mega-menu { display: none; } /* no mega on tablet/mobile */
}
/* Mobile: always show a background behind nav so burger is visible on transparent hero */
@media (max-width: 768px) {
  .site-nav { background: rgba(13,27,42,0.92) !important; backdrop-filter: blur(12px); }
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (min-width: 769px) {
  .mobile-overlay { display: none !important; } /* never show overlay on desktop */
}
@media (max-width: 480px) {
  .fab-bubble { width: 280px; right: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== CTA BAND (shared) ===== */
.cta-band {
  background: linear-gradient(135deg, var(--coral) 0%, #c73d20 100%);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }
.cta-band .btn { background: var(--white); color: var(--coral); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-band .btn:hover { background: var(--navy); color: var(--white); }

/* ===== PAGE HERO (shared) ===== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 0; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.72) 0%, rgba(13,27,42,0.88) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,87,51,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,87,51,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  padding: 160px 24px 80px;
}
/* Force white text inside any page-hero */
.page-hero .hero-h1 { color: var(--white) !important; }
.page-hero .section-label { color: var(--coral); }

/* Shared hero-h1 (used on homepage too, defined here as fallback) */
.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-h1 span { color: var(--coral); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
