/* ── Design tokens ── */
:root {
  --navy:   #06091a;
  --navy2:  #0c1128;
  --navy3:  #111830;
  --navy4:  #1a2240;
  --gold:   #c9a84c;
  --gold2:  #e8c06a;
  --red:    #d4341a;
  --bg:     #f7f6f2;
  --surface:#ffffff;
  --surf2:  #faf9f6;
  --bdr:    #e4e0d8;
  --text:   #1a1a2e;
  --mid:    #64647a;
  --soft:   #9898aa;
  --t:      0.22s cubic-bezier(0.4,0,0.2,1);
  --r:      14px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; min-height:100vh; }

/* ─── HERO ─── */
.hero {
  background:linear-gradient(135deg, var(--navy2), var(--navy3) 50%, var(--navy4));
  border-bottom:4px solid var(--gold);
  padding:126px 48px 52px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 55% 90% at 85% 50%, rgba(201,168,76,0.07), transparent),
    radial-gradient(ellipse 30% 60% at 10% 80%, rgba(212,52,26,0.05), transparent);
  pointer-events:none;
}
/* Gold dot pattern */
.hero::after {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(201,168,76,0.12) 1px, transparent 1px);
  background-size:32px 32px;
  pointer-events:none;
}
.hero-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.hero-eyebrow { font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold2); margin-bottom:12px; display:block; }
.hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(30px,4.5vw,54px); font-weight:700; color:#fff; line-height:1.08; margin-bottom:14px; }
.hero-title em { color:var(--gold2); font-style:italic; }
.hero-sub { font-size:14px; color:rgba(255,255,255,0.5); max-width:520px; line-height:1.7; margin-bottom:28px; }

/* Hero channel chips */
.hero-chips { display:flex; flex-wrap:wrap; gap:10px; }
.hero-chip { display:flex; align-items:center; gap:7px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:100px; padding:8px 18px; font-size:12px; font-weight:600; color:rgba(255,255,255,0.7); text-decoration:none; cursor:pointer; transition:all var(--t); }
.hero-chip:hover { background:rgba(201,168,76,0.12); border-color:rgba(201,168,76,0.4); color:var(--gold2); }
.hero-chip-dot { width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 2px rgba(34,197,94,0.25); flex-shrink:0; }
.hero-chip-icon { font-size:14px; }

/* ─── BODY LAYOUT — equal two-column grid ─── */
.page-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 48px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ─── FORM CARD ─── */
.form-card {
  background:var(--surface);
  border:1px solid var(--bdr);
  border-radius:20px;
  box-shadow:0 4px 32px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  overflow:hidden;
}
.form-card-header {
  background:linear-gradient(135deg, var(--navy), var(--navy4));
  padding:22px 28px;
  border-bottom:3px solid var(--gold);
}
.form-card-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700; color:#fff; margin-bottom:4px; }
.form-card-sub   { font-size:12px; color:rgba(255,255,255,0.45); line-height:1.6; }

.form-body { padding:24px 28px 28px; }

/* Form rows */
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-row.single { grid-template-columns:1fr; }

/* Field */
.field-group { display:flex; flex-direction:column; gap:5px; margin-bottom:15px; }
.field-label { font-size:12px; font-weight:700; color:var(--text); letter-spacing:.3px; }
.field-label span { color:var(--red); margin-left:2px; }
.field-input, .field-select, .field-textarea {
  width:100%;
  background:var(--surf2);
  border:1.5px solid var(--bdr);
  border-radius:10px;
  padding:11px 14px;
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  color:var(--text);
  transition:border-color .18s, box-shadow .18s;
  outline:none;
  appearance:none;
}
.field-input::placeholder, .field-textarea::placeholder { color:var(--soft); }
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,168,76,0.12);
  background:var(--surface);
}
.field-input.error, .field-select.error, .field-textarea.error {
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(212,52,26,0.1);
}
.field-textarea { resize:vertical; min-height:130px; line-height:1.6; }

/* Select arrow */
.select-wrap { position:relative; }
.select-wrap::after { content:'▾'; position:absolute; right:14px; top:50%; transform:translateY(-50%); font-size:12px; color:var(--soft); pointer-events:none; }
.field-select { cursor:pointer; padding-right:34px; }

/* Field error hint */
.field-error { font-size:11px; color:var(--red); font-weight:600; display:none; }
.field-error.show { display:block; }

/* Urgency callout */
.urgency-box {
  background:#fff8f5;
  border:1px solid rgba(212,52,26,0.2);
  border-left:4px solid var(--red);
  border-radius:10px;
  padding:14px 16px;
  display:flex; gap:12px;
  margin-bottom:22px;
}
.urgency-icon { font-size:18px; flex-shrink:0; margin-top:1px; }
.urgency-title { font-size:12px; font-weight:700; color:#9a1f0a; margin-bottom:3px; }
.urgency-text  { font-size:11px; color:var(--mid); line-height:1.6; }
.urgency-text a { color:#8a6800; font-weight:600; text-decoration:none; }
.urgency-text a:hover { text-decoration:underline; }

/* Consent checkbox */
.consent-row { display:flex; align-items:flex-start; gap:10px; margin-bottom:22px; }
.consent-row input[type=checkbox] { width:16px; height:16px; border-radius:4px; border:2px solid var(--bdr); cursor:pointer; flex-shrink:0; margin-top:2px; accent-color:var(--gold); }
.consent-label { font-size:12px; color:var(--mid); line-height:1.6; }
.consent-label a { color:#8a6800; text-decoration:none; font-weight:600; }

/* Submit button */
.submit-btn {
  width:100%; padding:15px 24px;
  background:linear-gradient(135deg, var(--navy), var(--navy4));
  color:#fff; border:none; border-radius:12px;
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700;
  letter-spacing:.3px; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:10px;
  transition:all var(--t);
  position:relative; overflow:hidden;
}
.submit-btn::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  opacity:0; transition:opacity var(--t);
}
.submit-btn:hover::before { opacity:1; }
.submit-btn:hover { color:var(--navy); box-shadow:0 8px 28px rgba(201,168,76,0.35); transform:translateY(-1px); }
.submit-btn span { position:relative; z-index:1; }
.submit-btn.loading { pointer-events:none; opacity:0.75; }
.submit-spinner { width:18px; height:18px; border:2.5px solid rgba(255,255,255,0.3); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; position:relative; z-index:1; }
@keyframes spin { to { transform:rotate(360deg); } }

/* Success state */
.form-success {
  display:none;
  flex-direction:column; align-items:center;
  text-align:center; padding:48px 32px;
  gap:16px;
}
.form-success.show { display:flex; }
.success-circle {
  width:72px; height:72px; border-radius:50%;
  background:linear-gradient(135deg, #15803d, #22c55e);
  display:flex; align-items:center; justify-content:center;
  font-size:32px;
  box-shadow:0 8px 28px rgba(34,197,94,0.3);
  animation:popIn .4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }
.success-title { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:700; color:var(--text); }
.success-sub { font-size:13px; color:var(--mid); line-height:1.7; max-width:360px; }
.success-ref { font-size:11px; font-weight:700; background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.25); border-radius:8px; padding:8px 16px; color:#8a6800; letter-spacing:.5px; }
.success-back { font-size:13px; font-weight:600; color:var(--mid); cursor:pointer; text-decoration:underline; }

/* ─── RIGHT SIDEBAR ─── */
.sidebar-col { display:flex; flex-direction:column; gap:16px; }

/* Contact channels */
.channel-card {
  background:var(--surface); border:1px solid var(--bdr); border-radius:16px;
  padding:20px; box-shadow:0 2px 16px rgba(0,0,0,0.05);
}
.channel-card-title { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:700; color:var(--text); margin-bottom:3px; }
.channel-card-sub   { font-size:11px; color:var(--mid); margin-bottom:14px; line-height:1.5; }
.channel-list { display:flex; flex-direction:column; gap:8px; }
.channel-item {
  display:flex; align-items:center; gap:12px;
  background:var(--surf2); border:1px solid var(--bdr); border-radius:10px;
  padding:11px 13px; text-decoration:none; color:inherit; cursor:pointer;
  transition:all var(--t);
}
.channel-item:hover { border-color:rgba(201,168,76,0.3); background:rgba(201,168,76,0.04); box-shadow:0 4px 16px rgba(0,0,0,0.06); transform:translateX(3px); }
.ch-ico { width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
.ch-ico.tel   { background:linear-gradient(135deg,#d4341a,#e8432a); }
.ch-ico.wa    { background:linear-gradient(135deg,#128c7e,#25d366); }
.ch-ico.email { background:linear-gradient(135deg,#1d4ed8,#3b82f6); }
.ch-ico.chat  { background:linear-gradient(135deg,var(--navy3),var(--navy4)); border:1px solid rgba(201,168,76,0.2); }
.ch-body { flex:1; }
.ch-label { font-size:12px; font-weight:700; color:var(--text); margin-bottom:1px; }
.ch-val   { font-size:10px; color:var(--mid); }
.ch-arr   { font-size:14px; color:var(--soft); transition:all var(--t); }
.channel-item:hover .ch-arr { color:var(--gold); transform:translateX(3px); }

/* Online status badge */
.online-badge {
  display:inline-flex; align-items:center; gap:5px;
  font-size:10px; font-weight:700; letter-spacing:.5px;
  color:#15803d; background:#f0fdf4; border:1px solid rgba(21,128,61,0.2);
  border-radius:100px; padding:3px 9px; margin-top:2px;
}
.online-dot { width:6px; height:6px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 2px rgba(34,197,94,0.25); flex-shrink:0; }

/* Hours card */
.hours-card {
  background:var(--surface); border:1px solid var(--bdr); border-radius:16px;
  padding:20px; box-shadow:0 2px 16px rgba(0,0,0,0.05);
}
.hours-title { font-size:12px; font-weight:700; color:var(--text); margin-bottom:12px; letter-spacing:.3px; }
.hours-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid var(--bdr); font-size:12px; }
.hours-row:last-child { border-bottom:none; }
.hours-day { color:var(--mid); font-weight:500; }
.hours-time { font-weight:700; color:var(--text); }
.hours-time.open { color:#15803d; }

/* Disclaimer note */
.disclaimer-note {
  background:var(--surf2); border:1px solid var(--bdr); border-radius:12px;
  padding:14px 16px; font-size:11px; color:var(--soft); line-height:1.7;
}
.disclaimer-note strong { color:var(--mid); }

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
  .page-body { grid-template-columns:1fr; padding:24px 20px 60px; }
  .hero { padding:36px 20px 32px; }
}
@media(max-width:540px) {
  .form-row { grid-template-columns:1fr; }
  .hero-chips { gap:8px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-in   { animation:fadeUp .5s ease both; }
.fade-in-2 { animation:fadeUp .5s .1s ease both; }
.fade-in-3 { animation:fadeUp .5s .2s ease both; }
.fade-in-4 { animation:fadeUp .5s .3s ease both; }

/* Section */
.office-section {
  background: var(--surface);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.office-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 48px;
}

/* Header */
.office-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.office-header-bar {
  width: 4px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 4px;
  flex-shrink: 0;
}

.office-header-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 2px;
}

.office-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

/* Grid */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
}

/* Cards */
.office-card {
  background: var(--surf2);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 22px 24px;
}

/* Company */
.company-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.company-address {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.company-registration {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.registration-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.registration-item {
  font-size: 12px;
  color: var(--mid);
}

.registration-value {
  color: var(--text);
}

.company-note {
  font-size: 11px;
  color: var(--soft);
  padding-top: 12px;
  border-top: 1px solid var(--bdr);
  line-height: 1.6;
}

.company-brand {
  color: var(--mid);
}

.privacy-link {
  color: #8a6800;
  font-weight: 600;
  text-decoration: none;
}

/* Contact */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
}

.contact-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.phone-icon {
  background: linear-gradient(135deg, #d4341a, #e8432a);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.email-icon {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

.contact-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.contact-info {
  font-size: 11px;
  color: var(--mid);
  margin-top: 1px;
}

/* Status */
.online-status {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: #f3faf5;
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}

.status-text {
  font-size: 11px;
  font-weight: 600;
  color: #15803d;
}

/* Map */
.office-map {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--bdr);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.office-map-frame {
  position: absolute;
  inset: 0;
  display: block;
  border: 0;
}
/* =========================
   RESPONSIVE STYLES
========================= */

/* Large Tablets */
@media (max-width: 1024px) {
  .office-container {
    padding: 32px 24px;
  }

  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .office-map {
    grid-column: 1 / -1;
    min-height: 350px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .office-container {
    padding: 28px 20px;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .office-map {
    grid-column: auto;
    min-height: 300px;
  }

  .office-header {
    gap: 8px;
    margin-bottom: 20px;
  }

  .office-header-title {
    font-size: 20px;
  }

  .office-card {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .office-container {
    padding: 24px 16px;
  }

  .office-header-title {
    font-size: 18px;
  }

  .office-header-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .office-header-bar {
    height: 26px;
  }

  .office-card {
    padding: 16px;
    border-radius: 12px;
  }

  .contact-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .contact-name {
    font-size: 11px;
  }

  .contact-info {
    font-size: 10px;
  }

  .company-name {
    font-size: 14px;
  }

  .company-address,
  .registration-item {
    font-size: 12px;
  }

  .office-map {
    min-height: 250px;
    border-radius: 12px;
  }

  .online-status {
    padding: 8px 10px;
  }

  .status-text {
    font-size: 10px;
  }
}

/* Small Phones */
@media (max-width: 400px) {
  .office-container {
    padding: 20px 12px;
  }

  .office-header-title {
    font-size: 17px;
  }

  .contact-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .office-map {
    min-height: 220px;
  }
}