/* ── Variables — Teal Palette (contact) ──────────────────────────────── */
:root {
  --navy:          #0a1628;
  --navy-dark:     #071020;
  --navy-deeper:   #050c1a;
  --navy-light:    #e0f7fa;
  --navy-mid:      #0097a7;
  --accent:        #00bcd4;
  --white:         #ffffff;
  --off-white:     #f4f8fa;
  --text:          #0a1628;
  --muted:         #607d8b;
  --border:        rgba(10, 22, 40, 0.12);
  --gold:          #E8A020;
  --success:       #1D9E75;
  --success-light: #E1F5EE;
}

/* Page header */
.page-header {
  background: var(--navy-deeper);
  padding: 72px 36px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(75,82,212,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 54px); font-weight: 800;
  color: var(--white); letter-spacing: -1.5px;
  max-width: 620px; margin: 0 auto 16px; position: relative;
}
.page-header h1 em { color: #00bcd4; font-style: normal; }
.page-header p  {
  font-size: 17px; color: rgba(255,255,255,0.65);
  max-width: 460px; margin: 0 auto; position: relative;
}

/* Contact layout */
.contact-section {
  max-width: 1100px; margin: 0 auto;
  padding: 72px 36px 96px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}

/* Left panel */
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* Contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.contact-card:hover { border-color: rgba(26,31,143,0.3); box-shadow: 0 4px 20px rgba(26,31,143,0.08); }
.contact-card-icon  { width: 44px; height: 44px; border-radius: 10px; background: var(--navy-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-label { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-card-value { font-size: 15px; font-weight: 500; color: var(--text); }
.contact-card-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }
.contact-card.whatsapp { background: #F0FBF5; border-color: rgba(37,211,102,0.25); }
.contact-card.whatsapp .contact-card-icon { background: #25D366; }
.contact-card.whatsapp:hover { border-color: rgba(37,211,102,0.5); box-shadow: 0 4px 20px rgba(37,211,102,0.1); }

/* Business hours */
.hours-block { background: var(--navy-deeper); border-radius: 16px; padding: 24px; color: rgba(255,255,255,0.85); }
.hours-block h4   { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.3px; }
.hours-row        { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day   { color: rgba(255,255,255,0.55); }
.hours-row .time  { color: rgba(255,255,255,0.9); font-weight: 500; }
.hours-row .badge-open { background: rgba(29,158,117,0.2); color: #4DF0A0; font-size: 10px; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.5px; }

/* Form panel */
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 8px 48px rgba(10,22,40,0.07); }
.form-header { margin-bottom: 32px; }
.form-header h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 6px; }
.form-header p  { font-size: 14px; color: var(--muted); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: 15px; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--off-white);
  outline: none; transition: border-color 0.2s, background 0.2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  { border-color: var(--navy); background: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0A3BF; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select  {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%235A5F8A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}

/* Interest chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  color: var(--muted); background: var(--off-white);
  cursor: pointer; transition: all 0.15s; user-select: none;
}
.chip:hover  { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy-light); border-color: var(--navy); color: var(--navy); font-weight: 500; }

/* Submit */
.form-submit {
  background: var(--navy); color: var(--white); border: none; border-radius: 12px;
  padding: 16px 32px; font-size: 16px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; width: 100%; margin-top: 8px;
  transition: background 0.2s, transform 0.1s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover  { background: var(--navy-dark); }
.form-submit:active { transform: scale(0.99); }
.form-submit svg { width: 18px; height: 18px; }

/* Success state */
.success-state {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 40px 20px; gap: 16px;
}
.success-icon   { width: 64px; height: 64px; border-radius: 50%; background: var(--success-light); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.success-state h3 { font-size: 22px; font-weight: 800; }
.success-state p  { font-size: 15px; color: var(--muted); max-width: 320px; }
.success-back   { background: var(--navy-light); color: var(--navy); border: none; border-radius: 10px; padding: 12px 28px; font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; margin-top: 8px; }

/* Map strip */
.map-strip { background: var(--white); border-top: 1px solid var(--border); padding: 56px 36px; }
.map-strip-inner { max-width: 1100px; margin: 0 auto; }
.map-strip h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.map-strip p  { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.map-frame    { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 280px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; position: relative; }
.map-placeholder { text-align: center; }
.map-placeholder p { font-size: 14px; color: var(--muted); margin-top: 10px; }
.map-pin       { width: 48px; height: 48px; background: var(--navy); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.map-pin-inner { width: 18px; height: 18px; background: var(--white); border-radius: 50%; transform: rotate(45deg); }

/* Responsive */
@media (max-width: 760px) {
  .contact-section   { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 72px; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .page-header       { padding: 56px 20px 64px; }
}
