.page-hero--contact {
  background-image:
    linear-gradient(110deg, rgba(13,18,25,.9) 0%, rgba(13,18,25,.6) 65%, rgba(19,126,168,.2) 100%),
    url('../images/Banner-Hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: auto;
  padding: 96px var(--px) 80px;
}

/* ── MAIN CONTACT SECTION ── */
.contact-section { background: var(--bg); padding: 96px 0; }
.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* ── FORM ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 44px 40px;
}
.form-header { margin-bottom: 32px; }
.form-header h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 32px); letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 8px;
}
.form-header p { font-size: 15px; color: var(--muted); line-height: 1.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px; color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(19,126,168,.1);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .7; }
.form-group textarea { height: 130px; resize: vertical; }

.form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 14px;
  letter-spacing: .1em;
}
.form-note {
  text-align: center;
  font-size: 12px; color: var(--muted);
  margin-top: 14px; line-height: 1.5;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  background: rgba(19,126,168,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success .success-icon svg { width: 30px; height: 30px; stroke: var(--blue); stroke-width: 2.5; fill: none; }
.form-success h3 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 22px; color: var(--ink); margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── INFO SIDEBAR ── */
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 24px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color .3s, transform .25s;
  text-decoration: none; color: inherit;
}
.info-card:hover { border-color: var(--blue); transform: translateX(4px); }
.info-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(19,126,168,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.info-card:hover .info-card-icon { background: var(--blue); }
.info-card-icon svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 2; fill: none; transition: stroke .3s; }
.info-card:hover .info-card-icon svg { stroke: #fff; }
.info-card-body {}
.info-card-label {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-bottom: 5px;
}
.info-card-value {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--ink); line-height: 1.3;
  transition: color .2s;
}
.info-card:hover .info-card-value { color: var(--blue); }
.info-card-sub { font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* WA card */
.wa-card {
  background: #25d366; border-radius: 10px;
  padding: 22px 22px; display: flex; align-items: center; gap: 16px;
  text-decoration: none; transition: all .25s;
  border: 1px solid transparent;
}
.wa-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.wa-card-icon { width: 44px; height: 44px; flex-shrink: 0; }
.wa-card-icon svg { width: 44px; height: 44px; fill: #fff; }
.wa-card-body {}
.wa-card-label {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 4px;
}
.wa-card-value {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 17px; color: #fff; letter-spacing: -.01em;
}

/* Map embed placeholder */
.map-wrap {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* Hours card */
.hours-card {
  background: var(--ink-2); border-radius: 10px;
  padding: 22px 22px;
}
.hours-card h4 {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 14px; color: #fff; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.hours-card h4 svg { width: 16px; height: 16px; stroke: var(--blue); stroke-width: 2; fill: none; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 13.5px; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,.55); }
.hours-time { color: #fff; font-weight: 600; font-family: 'Archivo Narrow', sans-serif; letter-spacing: .04em; }
.hours-time.closed { color: var(--muted); }

/* Responsive */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact-main { grid-template-columns: 1.3fr .7fr; gap: 60px; }
  .contact-form-card { padding: 52px 48px; }
}