/* ═══════════════════════════════════════
   ORBIS — CONTACT PAGE (contact.html)
   ═══════════════════════════════════════ */

/* ── PAGE HERO (contact variant) ── */
.page-hero {
  min-height: 42vh;
}

.page-hero .globe-deco {
  position: absolute;
  top: 118px;
  left: clamp(24px, 4vw, 58px);
  width: clamp(96px, 11vw, 154px);
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.page-hero-left {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.page-hero-h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  max-width: 520px;
  line-height: 1.75;
}

.page-hero-right,
.page-hero-img {
  min-height: 360px;
}

/* ── CONTACT MAIN ── */
.contact-main { display: grid; grid-template-columns: 1fr 1fr; background: var(--light-bg); position: relative; }

/* Form panel */
.form-panel { padding: 6rem 5vw 6rem 8vw; background: var(--light-surface); }
.form-panel-header { margin-bottom: 3rem; }
.form-panel-title  { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,2.8vw,40px); font-weight: 300; color: var(--text-dark); line-height: 1.15; margin-bottom: 0.8rem; }
.form-panel-title em { font-style: italic; color: var(--gold-dark); }
.form-panel-sub    { font-size: 1.05em; font-weight: 300; color: var(--text-mid); line-height: 1.85; }

/* Interest tabs */
.interest-tabs { display: flex; gap: 1px; background: var(--light-border); margin-bottom: 2.8rem; }
.interest-tab {
  flex: 1; padding: 13px 10px; text-align: center;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); background: var(--light-surface);
  cursor: pointer; border: none; transition: color 0.2s, background 0.2s, border-color 0.2s; border-bottom: 2px solid transparent;
}
.interest-tab:hover { color: var(--oxford); }
.interest-tab.active { color: var(--oxford); border-bottom-color: var(--gold); background: var(--white); }

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }

.form-input, .form-select, .form-textarea {
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text-dark); background: var(--light-bg);
  border: 1px solid var(--light-border); padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--oxford); background: var(--white); }
.form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.14);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 12px; color: var(--text-light);
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none;
}
.form-select { cursor: pointer; }
.form-select option { background: var(--white); color: var(--text-dark); }

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 0.5rem; }
.form-consent input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--oxford); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-consent-text { font-size: 11.5px; font-weight: 300; color: var(--text-light); line-height: 1.7; }

.form-submit-wrap { margin-top: 2rem; }
.form-note { font-size: 11px; color: var(--text-faint); margin-top: 1rem; display: flex; align-items: center; gap: 7px; }
.form-note i { color: var(--gold-dark); font-size: 11px; }
.form-error {
  min-height: 1.4rem;
  margin: 1.2rem 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #8a2f23;
}

/* Success state */
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; gap: 1.5rem; }
.form-success.visible { display: flex; }
.success-icon { width: 72px; height: 72px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; }
.success-icon i { font-size: 28px; color: var(--gold); }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--text-dark); }
.success-title em { font-style: italic; color: var(--gold-dark); }
.success-body { font-size: 1.05em; font-weight: 300; color: var(--text-mid); line-height: 1.85; max-width: 380px; }

/* btn-gold full-width variant for form */
.form-submit-wrap .btn-gold { width: 100%; text-align: center; }

/* Info panel */
.info-panel { padding: 6rem 8vw 6rem 5vw; background: var(--oxford); display: flex; flex-direction: column; gap: 0; }
.info-section { padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-section-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 1.6rem; }

.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.4rem; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon i { font-size: 14px; color: var(--gold); }
.info-item-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(143,168,200,0.5); margin-bottom: 3px; }
.info-item-value { font-size: 1.05em; font-weight: 300; color: var(--body-on-dark); line-height: 1.6; }
.info-item-value a { color: var(--body-on-dark); text-decoration: none; transition: color 0.2s; }
.info-item-value a:hover { color: var(--gold-bright); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); margin-top: 0.5rem; }
.hours-cell { background: rgba(0,21,48,0.4); padding: 1rem 1.2rem; }
.hours-day  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(143,168,200,0.45); margin-bottom: 4px; }
.hours-time { font-size: 14px; font-weight: 300; color: var(--white); }
.hours-tz   { font-size: 9.5px; color: rgba(143,168,200,0.4); margin-top: 2px; letter-spacing: 1px; }

.calendly-cta { background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.18); padding: 2rem; display: flex; align-items: center; gap: 18px; }
.calendly-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.calendly-icon i { font-size: 20px; color: var(--gold); }
.calendly-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.calendly-sub   { font-size: 12px; font-weight: 300; color: var(--body-on-dark); line-height: 1.6; }
.calendly-link  { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; letter-spacing: 2px; color: var(--gold); text-decoration: none; text-transform: uppercase; margin-top: 10px; transition: gap 0.2s; }
.calendly-link:hover { gap: 10px; color: var(--gold-bright); }

/* ── WHAT TO EXPECT ── */
.expect-section { background: var(--light-bg); padding: 5rem 8vw; border-top: 1px solid var(--light-border); }
.expect-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--light-border); margin-top: 3.5rem; }
.expect-card { background: var(--light-surface); padding: 2.5rem 2rem; position: relative; transition: background 0.3s; }
.expect-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--oxford); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.expect-card:hover { background: var(--white); }
.expect-card:hover::after { transform: scaleX(1); }
.expect-num  { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--oxford); opacity: 0.08; line-height: 1; margin-bottom: 1rem; }
.expect-icon { width: 44px; height: 44px; background: var(--light-mid); border: 1px solid var(--light-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s; }
.expect-card:hover .expect-icon { background: var(--oxford); border-color: var(--oxford); }
.expect-icon i { font-size: 16px; color: var(--oxford); transition: color 0.3s; }
.expect-card:hover .expect-icon i { color: var(--gold); }
.expect-title { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.7rem; }
.expect-desc  { font-size: 1em; font-weight: 300; color: var(--text-mid); line-height: 1.8; }

/* ── EXCLUSIVITY NOTICE ── */
.exclusivity { background: var(--oxford); padding: 5rem 8vw; }
.exclusivity-inner { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; max-width: 900px; margin: 0 auto; }
.exclusivity-icon-wrap { width: 80px; height: 80px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.exclusivity-icon-wrap i { font-size: 32px; color: var(--gold); }
.exclusivity-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.exclusivity-body  { font-size: 1.05em; font-weight: 300; color: var(--body-on-dark); line-height: 1.9; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .page-hero { min-height: auto; }
  .page-hero .globe-deco {
    top: 92px;
    right: 5vw;
    left: auto;
    width: 82px;
    opacity: 0.16;
  }
  .page-hero-left { padding: 3.25rem 5vw; }
  .contact-main { grid-template-columns: 1fr; }
  .info-panel   { padding: 4rem 5vw; }
  .form-panel   { padding: 4rem 5vw; }
  .form-grid    { grid-template-columns: 1fr; }
  .expect-grid  { grid-template-columns: 1fr 1fr; }
  .exclusivity-inner { grid-template-columns: 1fr; text-align: center; }
  .exclusivity-icon-wrap { margin: 0 auto; }
  .interest-tabs { flex-wrap: wrap; }
}

