/* =====================================================
   MAUTRAVEL — Global Stylesheet
   Theme  : Urban Modern Asia
   Palette: Navy Deep + Electric Teal + Warm Sand
   Fonts  : DM Serif Display + DM Sans
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #122b52;
  --navy-light:  #1a3a6b;
  --teal:        #00C9A7;
  --teal-dark:   #00a88c;
  --teal-light:  #d0f7f0;
  --sand:        #FFF8F0;
  --sand-dark:   #F2E8DA;
  --sand-mid:    #E8D8C4;
  --white:       #FFFFFF;
  --ink:         #0D1117;
  --ink-mid:     #2D3748;
  --ink-muted:   #718096;
  --border:      #E2E8F0;
  --border-dark: #CBD5E0;
  --success:     #38A169;
  --warning:     #D69E2E;
  --danger:      #C53030;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full:9999px;

  --sh-xs: 0 1px 4px rgba(11,31,58,.06);
  --sh-sm: 0 2px 10px rgba(11,31,58,.09);
  --sh-md: 0 6px 24px rgba(11,31,58,.13);
  --sh-lg: 0 16px 48px rgba(11,31,58,.17);

  --container: 1140px;
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .22s var(--ease);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3 { font-family: var(--font-display); line-height: 1.2; }
h4,h5 { font-family: var(--font-body); line-height: 1.3; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--sand  { background: var(--sand); }
.section--navy  { background: var(--navy); }
.section--white { background: var(--white); }
.tc { text-align: center; }

/* ---------- EYEBROW CHIP ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1px solid rgba(0,201,167,.25);
  padding: 5px 13px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.chip--light {
  color: var(--teal);
  background: rgba(0,201,167,.12);
  border-color: rgba(0,201,167,.2);
}

/* ---------- SECTION HEADING ---------- */
.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: var(--ink);
  margin-bottom: 14px;
}
.section--navy h2 { color: var(--white); }
em.teal { color: var(--teal); font-style: normal; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-full);
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-teal {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0,201,167,.35);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,201,167,.45); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--sh-sm);
}
.btn-white:hover { background: var(--sand); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-mid); }
.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #1cb554; box-shadow: 0 6px 20px rgba(37,211,102,.45); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 30px; font-size: 0.95rem; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--sh-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 8px 13px;
  border-radius: var(--r-md);
  transition: var(--t);
}
.nav-links a:hover { color: var(--navy); background: var(--sand); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: var(--r-full) !important;
  box-shadow: 0 3px 12px rgba(0,201,167,.3) !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 14px; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--navy);
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* geometric pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at center, rgba(0,201,167,.18) 0%, transparent 0%);
  background-size: 36px 36px;
  z-index: 0;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,201,167,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(18,43,82,.8) 0%, transparent 50%),
    linear-gradient(135deg, #0B1F3A 0%, #0f2848 55%, #0B1F3A 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero .container { grid-template-columns: 1fr; } }

.hero-content { max-width: 580px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,.12);
  border: 1px solid rgba(0,201,167,.28);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); display: block; }
.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-numbers { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-num-item {}
.hero-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--teal); line-height: 1; }
.hero-num-lbl { font-size: 0.72rem; color: rgba(255,255,255,.45); margin-top: 3px; letter-spacing: .04em; }

/* Hero side panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dest-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
  transition: var(--t);
}
.dest-card:hover { background: rgba(255,255,255,.11); border-color: rgba(0,201,167,.3); }
.dest-card-flag {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  background: rgba(0,201,167,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dest-card-name { font-weight: 600; color: white; font-size: 0.9rem; margin-bottom: 2px; }
.dest-card-sub { font-size: 0.75rem; color: rgba(255,255,255,.5); }
.dest-card-price { font-size: 0.78rem; color: var(--teal); font-weight: 600; margin-left: auto; flex-shrink: 0; }
@media (max-width: 960px) { .hero-panel { display: none; } }

/* =====================================================
   TICKER BAR
   ===================================================== */
.ticker {
  background: var(--teal);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.ticker-inner::-webkit-scrollbar { display: none; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0 22px;
  border-right: 1px solid rgba(11,31,58,.15);
  flex-shrink: 0;
}
.ticker-item:last-child { border-right: none; }

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 701px) and (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--border-dark); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.svc-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 0.845rem; color: var(--ink-muted); line-height: 1.65; }

/* =====================================================
   WHY US
   ===================================================== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .why-layout { grid-template-columns: 1fr; gap: 40px; } }

.why-point {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.why-num {
  width: 36px; height: 36px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 5px; }
.why-point p { font-size: 0.84rem; color: rgba(255,255,255,.55); line-height: 1.6; }

.why-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
}
.why-box-big { font-family: var(--font-display); font-size: 3.6rem; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.why-box-lbl { font-size: 0.82rem; color: rgba(255,255,255,.5); margin-bottom: 26px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat-box {
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  padding: 14px 10px;
}
.stat-box .n { font-family: var(--font-display); font-size: 1.35rem; color: var(--teal); font-weight: 700; }
.stat-box .l { font-size: 0.7rem; color: rgba(255,255,255,.45); margin-top: 3px; }

/* =====================================================
   DESTINATIONS
   ===================================================== */
.dest-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  margin-top: 44px;
}
.dest-grid .dest-big { grid-row: 1 / 3; }
@media (max-width: 768px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-grid .dest-big { grid-row: auto; }
  .dest-grid .dest-cell { height: 180px; }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid .dest-cell { height: 200px; }
}
.dest-cell {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  cursor: default;
}
.dest-cell-bg {
  position: absolute; inset: 0;
  transition: transform .4s var(--ease);
}
.dest-cell:hover .dest-cell-bg { transform: scale(1.04); }
.dest-cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,.88) 0%, rgba(11,31,58,.2) 55%, transparent 100%);
}
.dest-cell-info { position: relative; z-index: 1; padding: 18px; width: 100%; }
.dest-tag {
  position: absolute;
  top: 13px; right: 13px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: var(--r-full);
  z-index: 2;
  text-transform: uppercase;
}
.dest-flag { font-size: 1.25rem; margin-bottom: 3px; }
.dest-name { font-family: var(--font-display); font-size: 1.15rem; color: white; line-height: 1.2; }
.dest-spots { font-size: 0.72rem; color: rgba(255,255,255,.6); margin-top: 3px; }
.dest-from { font-size: 0.75rem; color: var(--teal); font-weight: 600; margin-top: 4px; }

/* bg gradients */
.bg-sg  { background: linear-gradient(135deg, #1a3a6b 0%, #0d2244 60%, #2a5f8a 100%); }
.bg-kh  { background: linear-gradient(135deg, #5c3317 0%, #3d1e0a 60%, #8a5525 100%); }
.bg-th  { background: linear-gradient(135deg, #1a5c40 0%, #0a3325 60%, #2a8a5c 100%); }
.bg-bkk { background: linear-gradient(135deg, #1a3355 0%, #0a2033 60%, #2a5580 100%); }
.bg-srp { background: linear-gradient(135deg, #6b3f1a 0%, #3d2210 60%, #8a5528 100%); }

/* =====================================================
   PACKAGES
   ===================================================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  align-items: start;
}
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.pkg-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.pkg-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.pkg-card.hot { border-color: var(--teal); }
.pkg-head {
  background: var(--navy);
  padding: 22px;
  text-align: center;
  position: relative;
}
.pkg-card.hot .pkg-head { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.pkg-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pkg-emoji { font-size: 1.9rem; display: block; margin-bottom: 7px; }
.pkg-title { font-family: var(--font-display); font-size: 1.05rem; color: white; }
.pkg-body { padding: 22px; }
.pkg-price { font-family: var(--font-display); font-size: 1.55rem; color: var(--navy); }
.pkg-card.hot .pkg-price { color: var(--teal-dark); }
.pkg-per { font-size: 0.76rem; color: var(--ink-muted); margin-bottom: 18px; }
.pkg-list { margin-bottom: 20px; }
.pkg-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--ink-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--sand-dark);
  line-height: 1.4;
}
.pkg-item::before { content: '✓'; color: var(--teal-dark); font-weight: 700; flex-shrink: 0; font-size: 0.85rem; margin-top: 1px; }
.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--navy);
  color: white;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--r-md);
  transition: var(--t);
}
.pkg-btn:hover { background: var(--navy-mid); }
.pkg-card.hot .pkg-btn { background: var(--teal); color: var(--navy); }
.pkg-card.hot .pkg-btn:hover { background: var(--teal-dark); color: white; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
  transition: var(--t);
}
.testi-card:hover { box-shadow: var(--sh-sm); }
.testi-quote {
  font-size: 3.5rem;
  font-family: var(--font-display);
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: -10px;
}
.testi-stars { color: #F6C90E; font-size: 0.9rem; margin-bottom: 12px; }
.testi-text { font-size: 0.865rem; color: var(--ink-mid); line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.testi-from { font-size: 0.72rem; color: var(--ink-muted); }

/* =====================================================
   FAQ
   ===================================================== */
.faq-wrap { max-width: 700px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--navy); }
.faq-ico {
  width: 26px; height: 26px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  color: var(--navy);
  transition: var(--t);
}
.faq-btn[aria-expanded="true"] .faq-ico { background: var(--navy); color: white; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-body-inner { padding: 0 0 18px; font-size: 0.865rem; color: var(--ink-muted); line-height: 1.7; }

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #133464 100%);
  padding: 76px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle 1px at center, rgba(0,201,167,.14) 0%, transparent 0%);
  background-size: 36px 36px;
}
.cta-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,201,167,.06) 0%, transparent 55%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(1.55rem, 3.5vw, 2.1rem); color: white; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,.65); max-width: 460px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 52px 0 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle 1px at center, rgba(0,201,167,.12) 0%, transparent 0%);
  background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(1.55rem, 4vw, 2.3rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 0.92rem; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb [aria-current] { color: white; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 44px;
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--t);
}
.info-row:hover { border-color: var(--teal); box-shadow: var(--sh-xs); }
.info-icon {
  width: 40px; height: 40px;
  background: var(--teal-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-row h4 { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.info-row a { font-size: 0.84rem; color: var(--teal-dark); font-weight: 600; }
.info-row p { font-size: 0.78rem; color: var(--ink-muted); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-sm);
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 5px; color: var(--navy); }
.form-card > p { font-size: 0.84rem; color: var(--ink-muted); margin-bottom: 22px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--sand);
  outline: none;
  transition: border-color var(--t), background var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); background: white; }
.fg textarea { min-height: 105px; resize: vertical; }
.form-note { font-size: 0.74rem; color: var(--ink-muted); text-align: center; margin-top: 10px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; } }

.about-card {
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  border-radius: var(--r-xl);
  padding: 44px 32px;
  text-align: center;
}
.about-big { font-family: var(--font-display); font-size: 3.8rem; color: var(--teal); line-height: 1; margin-bottom: 5px; }
.about-lbl { font-size: 0.8rem; color: rgba(255,255,255,.5); margin-bottom: 26px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-box { background: rgba(255,255,255,.07); border-radius: var(--r-md); padding: 14px 10px; }
.mini-box .n { font-family: var(--font-display); font-size: 1.35rem; color: var(--teal); }
.mini-box .l { font-size: 0.7rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.about-text h2 { font-size: clamp(1.5rem, 3vw, 1.95rem); margin-bottom: 14px; }
.about-text p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.75; margin-bottom: 13px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
@media (max-width: 680px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  transition: var(--t);
}
.team-card:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }
.team-av {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 11px;
}
.team-name { font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 3px; }
.team-role { font-size: 0.74rem; color: var(--ink-muted); }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0 80px;
}
.toc-sticky { position: sticky; top: 84px; }
.toc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 13px; padding-left: 10px; }
.toc-links { display: flex; flex-direction: column; gap: 2px; }
.toc-links a {
  font-size: 0.8rem;
  color: var(--ink-muted);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  transition: var(--t);
  line-height: 1.4;
  display: block;
}
.toc-links a:hover, .toc-links a.on {
  color: var(--navy);
  border-left-color: var(--teal);
  background: var(--teal-light);
}
.anchor { scroll-margin-top: 94px; }

.legal-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 38px;
}
@media (max-width: 600px) { .legal-body { padding: 26px 18px; } }
.legal-meta {
  background: var(--sand);
  border: 1px solid var(--sand-mid);
  border-radius: var(--r-sm);
  padding: 11px 15px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.legal-body h2 { font-size: 1.05rem; color: var(--navy); margin: 26px 0 9px; }
.legal-body h3 { font-size: 0.95rem; color: var(--ink); margin: 18px 0 7px; }
.legal-body p { font-size: 0.865rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 11px; }
.legal-body ul, .legal-body ol { margin: 10px 0 14px 20px; font-size: 0.865rem; color: var(--ink-mid); line-height: 1.75; }
.legal-body li { margin-bottom: 5px; }
.legal-body a { color: var(--teal-dark); font-weight: 500; }
.legal-body a:hover { color: var(--navy); text-decoration: underline; }

.alert-box {
  background: var(--teal-light);
  border: 1px solid rgba(0,201,167,.3);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin: 18px 0 24px;
  font-size: 0.865rem;
  color: var(--navy);
  line-height: 1.65;
}

/* refund table */
.rtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 14px 0 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.rtable th {
  background: var(--navy);
  color: white;
  padding: 10px 13px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
}
.rtable td {
  padding: 10px 13px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  vertical-align: top;
  line-height: 1.45;
}
.rtable tr:last-child td { border-bottom: none; }
.rtable tr:nth-child(even) td { background: var(--sand); }
.badge { display: inline-block; padding: 2px 9px; border-radius: var(--r-full); font-size: 0.7rem; font-weight: 700; }
.badge-ok  { background: #d1fae5; color: #065f46; }
.badge-mid { background: #fef3c7; color: #92400e; }
.badge-no  { background: #fee2e2; color: #991b1b; }

@media (max-width: 900px) { .legal-wrap { grid-template-columns: 1fr; padding: 28px 0 56px; } .toc-sticky { display: none; } }
@media (max-width: 600px) { .rtable { font-size: 0.74rem; } .rtable th, .rtable td { padding: 7px 9px; } }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--navy);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-logo { color: white; margin-bottom: 13px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }
.f-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.f-col ul li { margin-bottom: 9px; }
.f-col ul a { font-size: 0.83rem; color: rgba(255,255,255,.5); transition: color var(--t); }
.f-col ul a:hover { color: white; }
.f-contact { display: flex; flex-direction: column; gap: 10px; }
.f-row { display: flex; align-items: flex-start; gap: 9px; }
.f-row-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.f-row a, .f-row span { font-size: 0.82rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.f-row a:hover { color: white; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: white; }

/* =====================================================
   FLOATING WA
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-direction: row-reverse;
}
.wa-label {
  background: white;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--r-full);
  box-shadow: var(--sh-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t);
  pointer-events: none;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(37,211,102,.4);
  transition: var(--t);
}
.wa-btn:hover { transform: scale(1.09); box-shadow: 0 8px 26px rgba(37,211,102,.55); }

/* =====================================================
   UTILS
   ===================================================== */
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.sub-text { max-width: 520px; margin: 12px auto 0; color: var(--ink-muted); font-size: 0.9rem; }

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .cta-strip { padding: 56px 0; }
  .hero { min-height: 100svh; }
  .form-card { padding: 22px 16px; }
}
