/* ==========================================================================
   Self-hosted fonts (no CDN dependency — guarantees correct rendering
   regardless of network/CSP).

   GT Haptik Regular (usWeightClass 400) + Bold (750) are both genuine
   weights, confirmed via font metadata. The earlier "GT Haptik.ttf" upload
   turned out to be a hairline display cut internally named "GT Haptik
   Lazer" (weight class 250) — kept registered under its own honest family
   name below in case it's wanted for decorative use, but it is not part of
   the 'GT Haptik' family lookup so nothing can accidentally grab it again.
   ========================================================================== */
@font-face{
  font-family:'GT Haptik'; font-style:normal; font-weight:400; font-display:swap;
  src: url('../fonts/gt-haptik-regular.woff2') format('woff2');
}
@font-face{
  font-family:'GT Haptik'; font-style:normal; font-weight:700; font-display:swap;
  src: url('../fonts/gt-haptik-bold.woff2') format('woff2');
}
@font-face{
  font-family:'GT Haptik Lazer'; font-style:normal; font-weight:200; font-display:swap;
  src: url('../fonts/gt-haptik-lazer.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins'; font-style:normal; font-weight:400; font-display:swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins'; font-style:normal; font-weight:500; font-display:swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins'; font-style:normal; font-weight:600; font-display:swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins'; font-style:normal; font-weight:700; font-display:swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins'; font-style:normal; font-weight:800; font-display:swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}

/* ==========================================================================
   Zscaler APJ Executive Partner Summit — Brand tokens
   Source: Zscaler Brand Guidelines 1.0 + Zscaler Deck 2025 (PPT theme)
   ========================================================================== */
:root{
  --navy:        #001744;
  --blue:        #256CF7;
  --cyan:        #12D4FF;
  --green:       #6BFFB3;
  --pink:        #FE00E2;
  --light-gray:  #E5F1FA;
  --white:       #FFFFFF;

  --ink:         var(--navy);
  --muted:       rgba(0,23,68,0.62);
  --muted-on-dark: rgba(255,255,255,0.72);

  --font-body: 'GT Haptik', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'GT Haptik', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1180px;
  --radius: 10px;
  --shadow-lg: 0 30px 60px -20px rgba(0,23,68,0.35);
}

[hidden]{ display:none !important; }
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color: var(--blue); text-decoration:none; }
a:hover{ text-decoration:underline; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:700; letter-spacing:-0.01em; }
p{ margin:0 0 1em; line-height:1.6; }
ul{ margin:0; padding:0; }
.container{ max-width: var(--container-w); margin:0 auto; padding:0 28px; }
.container-narrow{ max-width: 860px; }

.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--cyan);
  margin: 0 0 14px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  display:inline-block;
  width:7px; height:7px;
  background: currentColor;
  border-radius:1.5px;
  flex-shrink:0;
}
.eyebrow-dark{ color: var(--blue); }

.section-title{
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}
.section-title.light{ color: var(--white); }
.section-title.dark{ color: var(--navy); }
.section-note{ color: var(--muted); font-family: var(--font-body); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:40px; }

.section{ padding: 100px 0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight:700;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor:pointer;
  transition: all .2s ease;
  text-decoration:none !important;
}
.btn-primary{
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover{ background: var(--navy); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.12); border-color:#fff; }
.btn-disabled{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:none;
}
.btn-submit{
  background: var(--navy);
  color:#fff;
  border:none;
  width:100%;
  padding:18px;
  font-size:14px;
  margin-top: 40px;
}
.btn-submit:hover{ background: var(--blue); }
.btn-submit:disabled{ opacity:.6; cursor:not-allowed; }
.form-error{
  background: #fdeef2;
  border-left: 3px solid var(--pink);
  color: #7a1030;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  margin: 24px 0 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(0,23,68,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  max-width: var(--container-w);
  margin:0 auto;
  padding: 14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand-logo{ height: 26px; width:auto; }
.main-nav{
  display:flex;
  gap: 32px;
  flex:1;
  justify-content:center;
}
.main-nav a{
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.02em;
  transition: color .15s;
}
.main-nav a:hover{ color:#fff; }
.header-actions{ display:flex; align-items:center; gap:16px; }
.header-actions .btn{ padding: 11px 22px; font-size:12px; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:22px; height:2px; background:#fff; margin:5px 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  color:#fff;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-gradient{
  position:absolute; inset:0;
  /* single vertical gradient, per brand guideline (one gradient, vertical only) */
  background: linear-gradient(180deg,
    rgba(0,23,68,0.80) 0%,
    rgba(0,23,68,0.40) 34%,
    rgba(0,23,68,0.58) 62%,
    var(--navy) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 160px 28px 140px;
  width:100%;
}
.hero h1{
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.08;
  margin: 0 0 26px;
  max-width: 880px;
}
.hero-sub{
  max-width: 560px;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
}
.hero-cta{ display:flex; gap:18px; margin-top: 34px; flex-wrap:wrap; }

.hero-facts{
  position:absolute;
  left:50%;
  bottom:0;
  transform: translate(-50%, 50%);
  z-index:2;
  width: min(920px, calc(100% - 56px));
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}
.fact{
  padding: 26px 32px;
  border-right: 1px solid rgba(0,23,68,0.08);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.fact:last-child{ border-right:none; }
.fact-label{
  font-family: var(--font-body);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:11px;
  color: var(--blue);
}
.fact-value{ font-family: var(--font-display); font-weight:700; color: var(--navy); font-size:16px; }

/* ==========================================================================
   Overview
   ========================================================================== */
.overview{ background: var(--white); }
.statement{
  font-size: clamp(24px, 3.4vw, 38px);
  line-height:1.55;
  max-width: 920px;
  margin-bottom: 40px;
}
.statement .highlight{
  background: var(--light-gray);
  color: var(--blue);
  padding: 0 10px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.overview-copy{ max-width: 720px; color:var(--muted); font-size:16px; }

.stat-row{
  display:flex;
  flex-wrap:wrap;
  gap: 56px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(0,23,68,0.1);
}
.stat{ display:flex; flex-direction:column; }
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight:700;
  color: var(--blue);
  line-height:1;
  letter-spacing:-0.02em;
}
.stat-label{
  font-family: var(--font-body);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  color: var(--muted);
  margin-top:10px;
}

/* ==========================================================================
   Programme / Timeline
   ========================================================================== */
.programme{ background: var(--light-gray); }
.timeline-day{ margin-bottom: 56px; }
.timeline-day:last-child{ margin-bottom:0; }
.day-heading{
  display:flex;
  align-items:baseline;
  gap:16px;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom:14px;
  border-bottom: 2px solid rgba(0,23,68,0.12);
}
.day-heading span{
  font-family: var(--font-body);
  font-weight:700;
  background: var(--navy);
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:6px 12px;
  border-radius: 999px;
}
.timeline-item{
  display:grid;
  grid-template-columns: 44px 170px 1fr;
  gap: 20px;
  align-items:center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,23,68,0.08);
}
.timeline-item:last-child{ border-bottom:none; }
.timeline-icon{
  width:40px; height:40px;
  border-radius:50%;
  background: #fff;
  flex-shrink:0;
  position:relative;
  box-shadow: 0 2px 6px rgba(0,23,68,0.08);
}
.timeline-icon::before{
  content:"";
  position:absolute;
  inset:11px;
  background: var(--blue);
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-size:contain; mask-size:contain;
}
.icon-plane::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12L21 3L14 21L11 13L3 12Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12L21 3L14 21L11 13L3 12Z'/%3E%3C/svg%3E"); }
.icon-glass::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4H20L13 14V19H17V21H7V19H11V14L4 4Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4H20L13 14V19H17V21H7V19H11V14L4 4Z'/%3E%3C/svg%3E"); }
.icon-mic::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M6 11a6 6 0 0 0 12 0h-2a4 4 0 0 1-8 0H6z'/%3E%3Crect x='11' y='17' width='2' height='4'/%3E%3Crect x='8' y='21' width='8' height='1.6' rx='.8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M6 11a6 6 0 0 0 12 0h-2a4 4 0 0 1-8 0H6z'/%3E%3Crect x='11' y='17' width='2' height='4'/%3E%3Crect x='8' y='21' width='8' height='1.6' rx='.8'/%3E%3C/svg%3E"); }
.icon-lunch::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 3a9 9 0 1 0 .001 0Zm0 4a5 5 0 1 0 .001 0Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 3a9 9 0 1 0 .001 0Zm0 4a5 5 0 1 0 .001 0Z'/%3E%3C/svg%3E"); }
.icon-gala::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.6 7.1.6-5.4 4.7 1.6 7-6.2-3.8-6.2 3.8 1.6-7L1 9.2l7.1-.6L12 2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.6 7.1.6-5.4 4.7 1.6 7-6.2-3.8-6.2 3.8 1.6-7L1 9.2l7.1-.6L12 2Z'/%3E%3C/svg%3E"); }
.icon-users::before{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='7' r='3'/%3E%3Ccircle cx='17' cy='8' r='2.4'/%3E%3Cpath d='M2 21c0-4.4 3.1-7 6-7s6 2.6 6 7H2Z'/%3E%3Cpath d='M13.5 21c.2-3-1-5.2-2.6-6.4 1-.7 2.2-1.1 3.4-1.1 2.6 0 5.2 2 5.5 6.2v1.3h-6.3Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='7' r='3'/%3E%3Ccircle cx='17' cy='8' r='2.4'/%3E%3Cpath d='M2 21c0-4.4 3.1-7 6-7s6 2.6 6 7H2Z'/%3E%3Cpath d='M13.5 21c.2-3-1-5.2-2.6-6.4 1-.7 2.2-1.1 3.4-1.1 2.6 0 5.2 2 5.5 6.2v1.3h-6.3Z'/%3E%3C/svg%3E"); }
.timeline-time{
  font-family: var(--font-body);
  color: var(--blue);
  font-weight:700;
  font-size:14px;
}
.timeline-desc{ font-size:17px; font-weight:600; color: var(--navy); }
.restricted-tag{
  display:inline-block;
  font-family: var(--font-body);
  font-weight:700;
  font-size:10.5px;
  text-transform:uppercase;
  letter-spacing:.05em;
  background: var(--light-gray);
  color: var(--blue);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align:middle;
}

.agenda-detail{ margin-top: 28px; }
.agenda-detail summary{
  cursor:pointer;
  list-style:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:14px;
  color: var(--blue);
}
.agenda-detail summary::-webkit-details-marker{ display:none; }
.agenda-detail-icon{
  width:20px; height:20px;
  border-radius:50%;
  background: var(--light-gray);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  transition: transform .2s;
  flex-shrink:0;
}
.agenda-detail[open] .agenda-detail-icon{ transform: rotate(45deg); background: var(--blue); color:#fff; }
.agenda-groups{ margin-top:22px; display:flex; flex-direction:column; gap:22px; }
.agenda-group-label{
  font-family: var(--font-body);
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color: var(--navy);
  margin: 0 0 10px;
}
.agenda-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.agenda-list li{
  font-size:14.5px;
  line-height:1.5;
  color: var(--muted);
  padding-left:16px;
  position:relative;
}
.agenda-list li::before{
  content:"";
  position:absolute;
  left:0; top:8px;
  width:5px; height:5px;
  border-radius:1px;
  background: var(--blue);
}
.agenda-break{
  background: #fff;
  color: var(--blue);
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:10px 16px;
  border-radius:6px;
  margin:0;
  box-shadow: 0 1px 3px rgba(0,23,68,0.08);
}

/* ==========================================================================
   Hotel
   ========================================================================== */
.hotel{
  background: linear-gradient(180deg, var(--navy) 0%, var(--blue) 220%);
  color:#fff;
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:stretch;
  padding:0;
  gap:0;
}
.hotel-media{ min-height: 420px; position:relative; overflow:hidden; }
.hotel-media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.hotel-info{ padding: 90px 60px; display:flex; flex-direction:column; justify-content:center; }
.hotel-details{ list-style:none; margin: 30px 0 40px; display:flex; flex-direction:column; gap:20px; }
.hotel-details li{ display:flex; flex-direction:column; gap:4px; }
.hotel-details strong{ font-family: var(--font-body); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.1em; color: var(--cyan); }
.hotel-details span{ color:var(--muted-on-dark); font-size:15px; }
.hotel-details a{ color:#fff; text-decoration:underline; }

/* ==========================================================================
   Registration
   ========================================================================== */
.register{
  /* single vertical gradient, per brand guideline */
  background: linear-gradient(180deg, var(--navy) 0%, var(--blue) 100%);
  position:relative;
}
.register::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events:none;
}
.register-card{
  position:relative;
  background: #fff;
  border-radius: 18px;
  padding: 56px;
  box-shadow: var(--shadow-lg);
}
.form-subhead{
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing:.04em;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid #e7ecf5;
}
.form-subhead:first-of-type{ border-top:none; padding-top:0; }
.icon-subhead{ display:flex; align-items:center; gap:10px; }
.shield-icon{ width:18px; height:18px; fill: var(--green); flex-shrink:0; }
.optional-tag{
  font-family: var(--font-body);
  font-weight:700;
  font-size:11px;
  text-transform:uppercase;
  background: var(--light-gray);
  color: var(--blue);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  letter-spacing:.05em;
}
.req{ color: var(--pink); }

.field-group{ border:none; margin:0; padding:0; }
.field-group legend{ font-size:15px; font-weight:600; color: var(--navy); margin-bottom:14px; padding:0; }

.field-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
  margin-bottom: 6px;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; font-weight:600; color: var(--navy); }
.field label small{ font-weight:400; color: var(--muted); }
.field input, .field select{
  font-family: var(--font-body);
  font-size:15px;
  padding: 12px 14px;
  border: 1.5px solid #dbe3f2;
  border-radius: 8px;
  background:#fbfcfe;
  color: var(--navy);
}
.field input:focus, .field select:focus{
  outline:none;
  border-color: var(--blue);
  background:#fff;
}
.field-conditional{ margin: 10px 0 20px; max-width:480px; }

.radio-row, .checkbox-grid{ display:flex; flex-wrap:wrap; gap: 14px 22px; margin-bottom:6px; }
.radio-row.col{ flex-direction:column; gap:14px; }
.checkbox-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 12px 24px; }
.radio, .checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  color:rgba(0,23,68,0.82);
  cursor:pointer;
  line-height:1.5;
}
.radio input, .checkbox input{ margin-top:3px; width:17px; height:17px; accent-color: var(--blue); flex-shrink:0; }
.checkbox.gated{ margin: 14px 0; }
.hint{ font-size:12.5px; color: var(--muted); margin: -6px 0 20px; font-style:italic; }

.disclaimer{
  font-size: 12.5px;
  color: var(--muted);
  background: var(--light-gray);
  border-left: 3px solid var(--blue);
  padding: 12px 16px;
  border-radius: 6px;
  margin: 14px 0 24px;
}
.info-box{
  background: var(--light-gray);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 18px 0 20px;
}
.info-box h4{ font-size:14px; margin-bottom:10px; color:var(--navy); }
.info-box ul{ padding-left:18px; margin:0; }
.info-box li{ font-size:13.5px; color:var(--muted); margin-bottom:8px; line-height:1.5; }
.info-box li:last-child{ margin-bottom:0; }
.read-link{ font-weight:600; }

.flight-details{ background:#f6f9ff; border-radius:12px; padding:24px; margin: 18px 0; }
.flight-block + .flight-block{ margin-top:22px; }
.flight-block h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color: var(--blue); margin-bottom:14px; }

.info-btn{
  border:1.5px solid var(--blue);
  color: var(--blue);
  background:none;
  border-radius:50%;
  width:20px; height:20px;
  font-size:13px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  vertical-align:middle;
}

.register-success{
  text-align:center;
  padding: 60px 20px;
}
.success-icon{
  width:70px; height:70px;
  border-radius:50%;
  background: var(--green);
  color: var(--navy);
  font-size:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 24px;
}
.register-success h3{ font-size:26px; margin-bottom:12px; }
.register-success p{ color: var(--muted); max-width:420px; margin:0 auto; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ background:#fff; }
.faq-subhead{
  margin: 56px 0 24px;
  font-size: 20px;
  color: var(--navy);
  padding-top: 40px;
  border-top: 2px solid var(--light-gray);
}
.accordion-item{ border-bottom: 1px solid #e7ecf5; }
.accordion-trigger{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding: 20px 4px;
  font-size:16px;
  font-weight:600;
  color: var(--navy);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-family: var(--font-body);
}
.accordion-icon{
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background: var(--light-gray);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
  transition: transform .2s;
}
.accordion-item.open .accordion-icon{ transform: rotate(45deg); background:var(--blue); color:#fff; }
.accordion-panel{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease;
}
.accordion-panel p{ padding: 0 4px 20px; color:var(--muted); font-size:14.5px; margin:0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--navy); color:#fff; padding-top: 80px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo{ height:24px; margin-bottom:18px; }
.footer-brand p{ color:var(--muted-on-dark); font-size:14px; }
.footer-contact p{ color:var(--muted-on-dark); font-size:14px; }
.footer-email{ color:#fff; font-family: var(--font-body); font-weight:700; font-size:15px; text-decoration:underline; }
.footer-nav{ display:flex; flex-direction:column; gap:12px; }
.footer-nav a{ color:rgba(255,255,255,0.82); font-size:14px; }
.footer-bottom{ text-align:center; padding: 26px 0; }
.footer-bottom p{ margin:0; color:rgba(255,255,255,0.45); font-size:13px; }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-overlay{
  position:fixed; inset:0; z-index:1000;
  background: rgba(0,23,68,0.6);
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
}
.modal-box{
  background:#fff;
  border-radius:14px;
  max-width:520px;
  width:100%;
  max-height:80vh;
  overflow:auto;
  padding: 40px;
  position:relative;
}
.modal-close{
  position:absolute; top:16px; right:18px;
  background:none; border:none; font-size:26px; cursor:pointer; color: var(--muted);
}
.modal-box h3{ margin-bottom:16px; color:var(--navy); }
.modal-box p{ font-size:14px; color:var(--muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .hotel{ grid-template-columns: 1fr; }
  .hotel-media{ min-height:280px; }
  .hotel-info{ padding: 60px 32px; }
  .footer-inner{ grid-template-columns: 1fr; }
  .field-grid{ grid-template-columns: 1fr; }
  .checkbox-grid{ grid-template-columns: 1fr; }
  .timeline-item{ grid-template-columns: 36px 120px 1fr; gap:14px; }
  .timeline-icon{ width:32px; height:32px; }
}
@media (max-width: 760px){
  .main-nav{ display:none; }
  .nav-toggle{ display:block; }
  .header-actions .btn{ padding:9px 16px; }
  .hero{ display:block; }
  .hero-facts{
    position:relative;
    left:auto;
    bottom:auto;
    z-index:2;
    transform:none;
    width:calc(100% - 40px);
    margin: 0 auto 32px;
    grid-template-columns: 1fr;
  }
  .fact{ border-right:none; border-bottom:1px solid rgba(0,23,68,0.08); padding:18px 24px; }
  .fact:last-child{ border-bottom:none; }
  .hero-content{ padding: 130px 20px 20px; }
  .register-card{ padding: 32px 22px; }
  .section{ padding: 70px 0; }
}
@media (max-width: 760px){
  .main-nav.open{
    display:flex;
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--navy);
    flex-direction:column;
    padding: 20px 28px;
    gap:18px;
  }
}
