/* ═══════════════════════════════════════════════════════════
   VOLA MALDIVES — Contact Page
   ═══════════════════════════════════════════════════════════ */

.nav.scrolled .nav__logo img { filter: none; }
.nav.scrolled .nav__center a { color: var(--ink-mid); }
.nav.scrolled .nav__center a:hover { color: var(--ocean); }
.nav__active-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* ── Split Hero ──────────────────────────────────────────── */
.ct-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
}

/* LEFT — brand panel */
.ct-hero__left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.ct-hero__bg {
  position: absolute; inset: 0;
  background: url('images/sandbank.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.ct-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}
.ct-hero__content {
  position: relative;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  flex: 1;
}
.ct-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 22px;
}
.ct-hero__title em { font-style: italic; color: rgba(255,255,255,0.82); }
.ct-hero__sub {
  font-size: 0.94rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 400px;
}

/* Contact methods */
.ct-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ct-method {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  transition: background 0.3s;
}
.ct-method:last-child { border-bottom: none; }
.ct-method:hover { background: rgba(255,255,255,0.06); }
.ct-method__icon {
  width: 36px; height: 36px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ct-method__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.ct-method__value {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
}

/* Promise strip */
.ct-promise {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 18px 20px;
}
.ct-promise__mark { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.ct-promise p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-style: italic; }

/* RIGHT — form panel */
.ct-hero__right {
  background: var(--ivory);
  display: flex;
  align-items: stretch;
  overflow-y: auto;
}
.ct-form-wrap {
  padding: 72px 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.ct-form-header {
  margin-bottom: 36px;
}
.ct-form-header h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}
.ct-form-header p {
  font-size: 0.88rem;
  color: var(--mid);
}

/* Step indicators */
.ct-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.ct-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.ct-step.active { opacity: 1; }
.ct-step.done   { opacity: 0.7; }
.ct-step span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mid);
  flex-shrink: 0;
  transition: background 0.4s, color 0.4s;
}
.ct-step.active span { background: var(--ocean); color: var(--white); }
.ct-step.done span   { background: var(--gold);  color: var(--white); }
.ct-step em {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-style: normal;
  white-space: nowrap;
}
.ct-step.active em { color: var(--ocean); }
.ct-step-line {
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 8px;
  min-width: 20px;
}

/* Fieldset / steps */
.ct-fieldset {
  display: none;
  border: none;
  padding: 0;
  flex: 1;
}
.ct-fieldset.active { display: block; }

/* Form inputs (extend global form-group) */
.req { color: var(--gold); }

.ct-step-btns {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.ct-step-btns .btn-outline { flex: 1; text-align: center; }
.ct-step-btns .btn-solid,
.ct-step-btns .ct-submit   { flex: 2; text-align: center; cursor: pointer; }

/* Checkbox grid */
.ct-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.ct-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--mid);
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid #e0dbd2;
  cursor: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.ct-check:hover { border-color: var(--ocean); color: var(--ink); }
.ct-check input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: var(--ocean);
  cursor: pointer;
  flex-shrink: 0;
}
.ct-check:has(input:checked) {
  background: rgba(26,107,107,0.07);
  border-color: var(--ocean);
  color: var(--ocean);
}

/* Honeymoon extra */
.ct-honeymoon-extra {
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 20px;
  margin-bottom: 20px;
}
.ct-honeymoon-extra__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* Success state */
.ct-success {
  text-align: center;
  padding: 60px 32px;
}
.ct-success__icon {
  width: 64px; height: 64px;
  background: var(--ocean);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
}
.ct-success h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}
.ct-success p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.ct-success__sub { font-size: 0.82rem !important; }
.ct-success a { color: var(--ocean); border-bottom: 1px solid currentColor; }

/* ── Why Vola grid ───────────────────────────────────────── */
.ct-why { padding: 100px 64px; background: var(--white); }
.ct-why__inner { max-width: 1200px; margin: 0 auto; }
.ct-why__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  margin-bottom: 64px;
  line-height: 1.2;
}
.ct-why__title em { font-style: italic; color: var(--ocean); }
.ct-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ct-why__item {
  background: var(--ivory);
  padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease-out);
}
.ct-why__item:hover {
  border-top-color: var(--gold);
  background: var(--cream);
  transform: translateY(-4px);
}
.ct-why__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.ct-why__item h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.ct-why__item p { font-size: 0.84rem; color: var(--mid); line-height: 1.75; }

/* ── Social links ────────────────────────────────────────── */
.ct-social { background: var(--ocean-deep); padding: 80px 64px; }
.ct-social__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ct-social__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 48px;
}
.ct-social__links {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.ct-social__link {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.35s, transform 0.35s var(--ease-out);
}
.ct-social__link:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.ct-social__icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; }
.ct-social__icon svg { width: 28px; height: 28px; }
.ct-social__link strong { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; }
.ct-social__link span { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ct-hero { grid-template-columns: 1fr; min-height: auto; }
  .ct-hero__left { min-height: 560px; }
  .ct-hero__content { padding: 80px 48px 60px; }
  .ct-form-wrap { padding: 52px 48px; }
  .ct-why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ct-hero__content { padding: 72px 24px 48px; }
  .ct-hero__sub { max-width: 100%; }
  .ct-form-wrap { padding: 40px 24px; }
  .ct-checkbox-grid { grid-template-columns: 1fr; }
  .ct-why { padding: 64px 24px; }
  .ct-why__grid { grid-template-columns: 1fr; }
  .ct-social { padding: 64px 24px; }
  .ct-social__links { flex-direction: column; max-width: 360px; margin: 0 auto; }
  .ct-step em { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
