@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --off-white:  #fafbfd;
  --paper:      #f2f6f9;
  --paper-2:    #e8edf4;
  --ink:        #0e1c2b;
  --ink-2:      #243447;
  --muted:      #576878;
  --muted-2:    #8da0b0;
  --border:     #dde8f0;
  --border-2:   #c8d6e3;
  --navy:       #0b1f33;
  --navy-2:     #0f2840;
  --teal:       #0caab6;
  --teal-2:     #089aa6;
  --teal-bg:    #e2f7f9;
  --teal-pale:  #f0fbfc;
  --gold:       #f2a200;
  --gold-2:     #d48e00;
  --gold-bg:    #fff3d0;
  --font:       'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --container:  1160px;
  --nav-h:      76px;
  --r-s:        6px;
  --r-m:        10px;
  --r-l:        16px;
  --r-xl:       24px;
  --r-full:     9999px;
  --sh-s:       0 2px 8px rgba(14,28,43,.06);
  --sh-m:       0 6px 24px rgba(14,28,43,.09);
  --sh-l:       0 16px 48px rgba(14,28,43,.13);
  --sh-xl:      0 32px 80px rgba(14,28,43,.18);
  --ease:       .22s cubic-bezier(.4,0,.2,1);
  --ease-out:   .3s cubic-bezier(0,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--font); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section { padding-block: 88px; }
.section--paper   { background: var(--paper); }
.section--paper-2 { background: var(--off-white); }
.section--navy    { background: var(--navy); color: var(--white); }
.section--teal    { background: var(--teal); color: var(--white); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.kicker--light { color: rgba(255,255,255,.65); }
.kicker--gold  { color: var(--gold); }

.display {
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--ink);
}
.display em { font-style: normal; color: var(--teal); }

.h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--navy);
}
.h2--light { color: var(--white); }
.h2--center { text-align: center; }

.h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.lead--light { color: rgba(255,255,255,.72); }
.lead--center { text-align: center; }

.body-sm { font-size: 14px; color: var(--muted); line-height: 1.7; }

.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: 48px; }
.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head--split .lead { max-width: 360px; font-size: 15px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--r-m);
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: #1c0e00;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(242,162,0,.28);
}
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); box-shadow: 0 8px 24px rgba(242,162,0,.36); }

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-2); }

.btn--teal { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 4px 14px rgba(12,170,182,.22); }
.btn--teal:hover { background: var(--teal-2); border-color: var(--teal-2); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--border-2); }
.btn--outline:hover { border-color: var(--navy); background: var(--paper); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn--sm { min-height: 38px; padding: 0 16px; font-size: 13px; border-radius: var(--r-s); }
.btn--lg { min-height: 56px; padding: 0 32px; font-size: 16px; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ─── BADGES / TAGS ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
}
.badge--teal { background: var(--teal-bg); color: var(--teal-2); }
.badge--gold { background: var(--gold-bg); color: #7a4e00; }
.badge--white { background: rgba(255,255,255,.15); color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.25); }

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag--teal { background: var(--teal-bg); color: var(--teal-2); }
.tag--gold { background: var(--gold-bg); color: #7a4e00; }
.tag--navy { background: rgba(11,31,51,.08); color: var(--navy); }
.tag--green { background: #dcfce7; color: #166534; }

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy-2);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.72); transition: color var(--ease); }
.topbar a:hover { color: var(--white); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--sh-m); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: var(--r-m);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.brand__name { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.15; }
.brand__sub  { font-size: 11px; color: var(--muted-2); margin-top: 1px; }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--ease);
  border-radius: var(--r-full);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--teal); }
.nav__link.active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-s);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--ease);
}
.nav__burger:hover { background: var(--paper); }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); }

/* Mobile Drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: -110%;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: var(--sh-xl);
  z-index: 200;
  transition: right var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.nav__drawer.open { right: 0; }

.nav__drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.nav__drawer-close {
  width: 34px;
  height: 34px;
  border-radius: var(--r-s);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--ease);
}
.nav__drawer-close:hover { color: var(--navy); border-color: var(--navy); }

.nav__drawer-links { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav__drawer-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--r-m);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  transition: var(--ease);
}
.nav__drawer-link:hover { background: var(--paper); color: var(--teal); }

.nav__drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.nav__drawer-actions .btn { justify-content: center; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,28,43,.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-out);
  backdrop-filter: blur(4px);
}
.overlay.show { opacity: 1; pointer-events: all; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 54px;
  height: 54px;
  border-radius: var(--r-full);
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  transition: transform var(--ease), box-shadow var(--ease);
  font-size: 26px;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-block: 80px 72px;
  background: var(--white);
}
.hero__bg-deco {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(12,170,182,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero__bg-deco-2 {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(242,162,0,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__left {}
.hero__eyebrow { margin-bottom: 26px; }
.hero__heading { margin-bottom: 22px; }
.hero__lead { margin-bottom: 36px; max-width: 520px; }
.hero__actions { margin-bottom: 44px; }

.hero__stats { display: flex; gap: 10px; flex-wrap: wrap; }
.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 12px 18px;
  transition: border-color var(--ease);
}
.stat-pill:hover { border-color: var(--teal); }
.stat-pill__num { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-pill__label { font-size: 12px; font-weight: 500; color: var(--muted); line-height: 1.4; max-width: 90px; }

/* Hero Right — Image Panel */
.hero__right { position: relative; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  box-shadow: var(--sh-l);
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform 8s ease;
}
.hero__image-wrap:hover img { transform: scale(1.04); }
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(11,31,51,.08) 0%, rgba(11,31,51,.55) 100%);
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-l);
  box-shadow: var(--sh-l);
  border: 1px solid var(--border);
  padding: 16px 20px;
}
.hero__float--seats { top: 28px; left: -32px; }
.hero__float--loc   { bottom: 28px; right: -24px; }

.float-seats__num   { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1; }
.float-seats__label { font-size: 12px; color: var(--muted); margin-top: 4px; }

.float-loc__row { display: flex; align-items: center; gap: 6px; }
.float-loc__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2.4s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  60%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.float-loc__city { font-size: 13px; font-weight: 700; color: var(--navy); }
.float-loc__sub  { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ─── SEATS STRIP ────────────────────────────────────────── */
.seats-strip {
  background: var(--teal);
  color: var(--white);
  padding-block: 20px;
}
.seats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.seats-strip__left { display: flex; align-items: center; gap: 16px; }
.seats-strip__num  { font-size: 40px; font-weight: 800; line-height: 1; }
.seats-strip__text { font-size: 16px; font-weight: 600; opacity: .92; line-height: 1.4; }
.seats-strip__text span { opacity: .75; font-weight: 400; font-size: 14px; display: block; margin-top: 2px; }
.seats-dots { display: flex; gap: 5px; flex-wrap: wrap; max-width: 360px; }
.seat-dot {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: rgba(255,255,255,.85);
  flex-shrink: 0;
}

/* ─── PILLAR CARDS ───────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.pillar-card:hover { box-shadow: var(--sh-m); transform: translateY(-4px); border-color: var(--teal); }
.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-m);
  background: var(--teal-bg);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.pillar-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar-card__body  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── PROGRAM CARDS ──────────────────────────────────────── */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.program-card--teal::before { background: var(--teal); }
.program-card--gold::before { background: var(--gold); }
.program-card--navy::before { background: var(--navy); }

.program-card:hover { box-shadow: var(--sh-m); transform: translateY(-4px); }
.program-card:hover::before { transform: scaleX(1); }

.program-card__tag   { margin-bottom: 16px; }
.program-card__title { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.program-card__sub   { font-size: 13px; color: var(--muted-2); font-weight: 500; margin-bottom: 16px; }
.program-card__body  { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.program-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.program-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.program-card__check {
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background: var(--teal-bg);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.program-card__foot { margin-top: 24px; }

/* ─── STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 14px);
  right: calc(10% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 0;
  border-radius: var(--r-full);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 54px;
  height: 54px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-size: 17px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: var(--sh-s);
  flex-shrink: 0;
}
.step__title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step__body  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── ACCOMMODATION DIAGRAM ──────────────────────────────── */
.accom-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.accom-diagram {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.accom-diagram__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.accom-node {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-l);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-s);
}
.accom-node--teal { border-color: var(--teal); }
.accom-node--gold { border-color: var(--gold); }
.accom-node__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-m);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.accom-node__icon--teal { background: var(--teal-bg); }
.accom-node__icon--gold { background: var(--gold-bg); }
.accom-node__icon--paper { background: var(--paper-2); }
.accom-node__title { font-size: 14px; font-weight: 700; color: var(--navy); }
.accom-node__body  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.accom-arrow {
  text-align: center;
  color: var(--muted-2);
  font-size: 20px;
  line-height: 1;
}

.accom-points { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.accom-point { display: flex; align-items: flex-start; gap: 14px; }
.accom-point__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-m);
  background: var(--teal-bg);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.accom-point__title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.accom-point__body  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── CEBU SECTION ───────────────────────────────────────── */
.cebu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cebu-image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-l); }
.cebu-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.cebu-image:hover img { transform: scale(1.04); }

.cebu-points { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.cebu-point  { display: flex; align-items: flex-start; gap: 12px; }
.cebu-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}
.cebu-point p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cebu-point strong { color: var(--ink-2); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-m); overflow: hidden; transition: border-color var(--ease); }
.faq-item.open { border-color: var(--teal); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: var(--white);
  text-align: left;
  transition: background var(--ease);
}
.faq-trigger:hover { background: var(--teal-pale); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-s);
  background: var(--paper);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal-bg); color: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-answer__body { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-wrap { text-align: center; max-width: 640px; margin-inline: auto; }
.cta-wrap .kicker { margin-bottom: 14px; }
.cta-wrap .h2 { margin-bottom: 16px; }
.cta-wrap .lead { margin-bottom: 36px; margin-inline: auto; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--navy-2); color: rgba(255,255,255,.65); padding-top: 64px; padding-bottom: 36px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  margin-bottom: 28px;
}
.footer__brand { margin-bottom: 18px; }
.footer__brand .brand__name { color: var(--white); }
.footer__brand .brand__sub  { color: rgba(255,255,255,.45); }
.footer__desc { font-size: 14px; line-height: 1.7; max-width: 270px; color: rgba(255,255,255,.5); }

.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: rgba(255,255,255,.52); transition: color var(--ease); }
.footer__link:hover { color: var(--white); }

.footer__contacts { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item strong { display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.footer__contact-item span { font-size: 14px; color: rgba(255,255,255,.72); }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 12px; color: rgba(255,255,255,.32); }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-block: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(12,170,182,.22) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero .kicker { margin-bottom: 14px; }
.page-hero__title { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; letter-spacing: -.02em; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.page-hero__lead  { font-size: 17px; color: rgba(255,255,255,.72); max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: .4; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-l); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 20px;
  text-align: center;
}
.about-stat__num   { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1; }
.about-stat__label { font-size: 12px; color: var(--muted); margin-top: 6px; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 26px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.value-card:hover { border-color: var(--teal); box-shadow: var(--sh-s); }
.value-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-m);
  background: var(--teal-bg);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.value-card__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card__body  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── PROGRAMS (detail) ──────────────────────────────────── */
.program-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  margin-bottom: 24px;
  transition: box-shadow var(--ease);
}
.program-detail:hover { box-shadow: var(--sh-m); }
.program-detail__features { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.program-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.program-detail__sidebar {
  background: var(--paper);
  border-radius: var(--r-l);
  padding: 24px;
}
.program-detail__sidebar-item { margin-bottom: 16px; }
.program-detail__sidebar-item:last-child { margin-bottom: 0; }
.program-detail__sidebar-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); margin-bottom: 4px; }
.program-detail__sidebar-value { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ─── HOW IT WORKS (detail) ──────────────────────────────── */
.hiw-steps { display: flex; flex-direction: column; gap: 32px; }
.hiw-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}
.hiw-step__num {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hiw-step__title  { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.hiw-step__body   { font-size: 14px; color: var(--muted); line-height: 1.7; }
.hiw-step__extras { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-m);
  background: var(--teal-bg);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); margin-bottom: 4px; }
.contact-info-item__value { font-size: 15px; font-weight: 600; color: var(--navy); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-s);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-m);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,170,182,.13);
}
.form-textarea { min-height: 130px; padding-top: 14px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 6px; }
.form-submit { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }
[data-reveal-delay="400"] { transition-delay: .4s; }
[data-reveal-delay="500"] { transition-delay: .5s; }

/* ─── UTILITY GRID CLASSES ───────────────────────────────── */
.g-2         { display: grid; grid-template-columns: repeat(2, 1fr); }
.g-3         { display: grid; grid-template-columns: repeat(3, 1fr); }
.g-4         { display: grid; grid-template-columns: repeat(4, 1fr); }
.g-sidebar   { display: grid; grid-template-columns: 1fr 340px; }
.g-sidebar-lg{ display: grid; grid-template-columns: 1fr 420px; }
.g-system    { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .faq-split { grid-template-columns: 1fr; gap: 40px; }
  .program-detail { grid-template-columns: 1fr; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .brand__sub { display: none; }
  .brand__name--full { display: none; }

  .hero { padding-block: 52px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__right { display: none; }

  .seats-strip__inner { flex-direction: column; align-items: flex-start; }
  .seats-dots { max-width: 100%; }

  .pillars-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .accom-split { grid-template-columns: 1fr; gap: 40px; }
  .cebu-split  { grid-template-columns: 1fr; gap: 40px; }
  .cebu-image  { display: none; }

  .about-split { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .about-stats { grid-template-columns: 1fr; }

  .value-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section { padding-block: 60px; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .hiw-step__num { width: 48px; height: 48px; font-size: 18px; }
  .contact-form-wrap { padding: 24px; }

  /* utility grids → single column */
  .g-2, .g-3, .g-sidebar, .g-sidebar-lg { grid-template-columns: 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }

  /* system section (1fr auto 1fr) → stack; hide "+" separator */
  .g-system { grid-template-columns: 1fr; }
  .g-system__sep { display: none; }

  /* programs list article padding */
  .programs-article { padding-block: 32px; gap: 28px !important; }

  /* sidebar sticky → normal flow */
  .g-sidebar > *:last-child,
  .g-sidebar-lg > *:last-child { position: static !important; }

  /* about tagline banner padding */
  .about-tagline { padding: 28px 24px !important; }

  /* apply form step labels: shrink text */
  .apply-step-label { font-size: 10px !important; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; }
  .btn-group--center { flex-direction: column; align-items: stretch; }
  .btn-group--center .btn { justify-content: center; }
  .g-4 { grid-template-columns: 1fr; }
}
