/* =========================================================
   MARVEL — Contacts page styles (modernized)
   Extends styles.css — mirrors patterns from services.css
   ========================================================= */

/* ===========================================================
   SHARED HELPERS (consistent with services.css / about.css)
   =========================================================== */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24, 127, 176, 0.08);
  color: var(--primary-blue);
  font-size: 0.78rem; font-weight: 700;
  padding: 7px 14px; border-radius: 20px;
  letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag.center { margin-left: auto; margin-right: auto; }
.section-tag.light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.section-tag i { font-size: 0.85rem; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-light {
  background: linear-gradient(135deg, #ffe5e8 0%, #ffffff 50%, #b8e7ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Active nav link */
.nav-links a.active {
  color: var(--primary-blue);
  font-weight: 700;
}
.nav-links a.active::after { width: 100%; }

/* Ghost button (used in map strip) */
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 13px 22px;
  font-size: 0.95rem; font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================================================
   1. HERO — modernized with animated graphics
   =========================================================== */
.contact-hero {
  position: relative;
  padding: 100px 0 150px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: linear-gradient(135deg, #0a2638 0%, #14516e 50%, #187FB0 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}

/* Gradient orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.hero-orb-1 {
  top: -100px; right: 10%;
  width: 320px; height: 320px;
  background: var(--red); opacity: 0.2;
  animation: floatY 12s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -120px; left: 5%;
  width: 360px; height: 360px;
  background: var(--lighter-blue); opacity: 0.3;
  animation: floatY 14s ease-in-out infinite reverse;
}
.hero-orb-3 {
  top: 30%; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px;
  background: var(--light-blue); opacity: 0.18;
  animation: floatY 18s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -25px); }
}

/* Floating contact icons */
.floating-icons {
  position: absolute; inset: 0; pointer-events: none;
}
.float-icon {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0.75;
  animation: floatBob 6s ease-in-out infinite;
}
.fi-1 { top: 14%;  left: 8%;   animation-delay: 0s; }
.fi-2 { top: 22%;  right: 10%; animation-delay: 0.8s; }
.fi-3 { top: 60%;  left: 12%;  animation-delay: 1.6s; }
.fi-4 { top: 70%;  right: 14%; animation-delay: 2.2s; }
.fi-5 { top: 38%;  left: 18%;  animation-delay: 1.2s; }
.fi-6 { top: 50%;  right: 6%;  animation-delay: 0.4s; }
@keyframes floatBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

/* Pulsing signal rings (a subtle "we're listening" graphic) */
.hero-signal {
  position: absolute;
  bottom: 30%;
  right: 45%;
  width: 180px; height: 180px;
  opacity: 0.35;
  pointer-events: none;
}
.signal-core {
  fill: var(--white);
  opacity: 0.6;
}
.signal-ring {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  opacity: 0;
  transform-origin: 100px 100px;
  animation: signalPulse 3.5s ease-out infinite;
}
.signal-ring.sr-2 { animation-delay: 1.16s; }
.signal-ring.sr-3 { animation-delay: 2.33s; }
@keyframes signalPulse {
  0%   { transform: scale(0.3); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.contact-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700;
  padding: 7px 16px; border-radius: 20px;
  letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--white);
}
.contact-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-stat-row {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, 0.18);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem; font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.4px;
}

.hero-wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%; height: 100px;
  display: block; z-index: 1;
}

/* ===========================================================
   2. QUICK CONTACT CARDS — sits between hero and main form
   =========================================================== */
.quick-cards-section {
  padding: 0 0 30px;
  background: var(--white);
  position: relative;
  margin-top: -60px;
  z-index: 2;
}
.quick-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.quick-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(34, 40, 49, 0.06);
  text-decoration: none;
  color: var(--dark-text);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.quick-card.as-div { cursor: default; }
.quick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.quick-card.accent-green::before { background: #25D366; opacity: 0.85; }
.quick-card.accent-red::before { background: var(--red); opacity: 0.85; }
.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(24, 127, 176, 0.2);
}
.quick-card.accent-green:hover { border-color: rgba(37, 211, 102, 0.3); }
.quick-card.accent-red:hover { border-color: rgba(227, 6, 19, 0.2); }
.quick-card:hover::before { opacity: 1; }

.qc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(24, 127, 176, 0.08);
  color: var(--primary-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.quick-card:hover .qc-icon {
  background: var(--grad);
  color: var(--white);
  transform: scale(1.05) rotate(-6deg);
}
.quick-card.accent-green .qc-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.quick-card.accent-green:hover .qc-icon {
  background: #25D366;
  color: var(--white);
}
.quick-card.accent-red .qc-icon {
  background: rgba(227, 6, 19, 0.08);
  color: var(--red);
}
.quick-card.accent-red:hover .qc-icon {
  background: var(--red);
  color: var(--white);
}

.quick-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--light-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.quick-card p {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
  word-break: break-word;
}
.qc-sub {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: auto;
}
.qc-arrow {
  position: absolute;
  top: 22px; right: 22px;
  color: var(--primary-blue);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.quick-card:hover .qc-arrow {
  opacity: 1; transform: translateX(0);
}
.quick-card.accent-green .qc-arrow { color: #25D366; }
.quick-card.accent-red .qc-arrow { color: var(--red); }

/* ===========================================================
   3. CONTACT SECTION — form + side panel
   =========================================================== */
.contact-section {
  padding: 60px 0 80px;
  background: var(--white);
}
.contact-section .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.contact-section .section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--dark-text);
}
.contact-section .section-head p {
  color: var(--light-gray);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 32px;
  align-items: start;
}

/* ===========================================================
   4. FORM (left)
   =========================================================== */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex; flex-direction: column;
  position: relative;
}

/* Rate-limit info bar */
.rate-info {
  display: flex; align-items: center; gap: 10px;
  background: rgba(24, 127, 176, 0.06);
  border: 1px solid rgba(24, 127, 176, 0.18);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--primary-blue);
  margin-bottom: 22px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.rate-info i { font-size: 0.95rem; flex-shrink: 0; }
.rate-info strong { font-weight: 800; }
.rate-info.warn {
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.25);
  color: #b45309;
}
.rate-info.limit {
  background: rgba(227, 6, 19, 0.06);
  border-color: rgba(227, 6, 19, 0.22);
  color: #991b1b;
}

/* Banner */
.form-banner {
  display: none;
  align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.5;
  animation: slideDown 0.3s ease;
}
.form-banner.active { display: flex; }
.form-banner i { font-size: 1.2rem; flex-shrink: 0; }
.form-banner.success {
  background: rgba(34, 197, 94, 0.1); color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-banner.success i { color: #16a34a; }
.form-banner.error {
  background: rgba(227, 6, 19, 0.08); color: #991b1b;
  border: 1px solid rgba(227, 6, 19, 0.25);
}
.form-banner.error i { color: var(--red); }
.form-banner.warn {
  background: rgba(217, 119, 6, 0.08); color: #92400e;
  border: 1px solid rgba(217, 119, 6, 0.3);
}
.form-banner.warn i { color: #d97706; }
.form-banner.info {
  background: rgba(24, 127, 176, 0.08); color: #0c4a6e;
  border: 1px solid rgba(24, 127, 176, 0.25);
}
.form-banner.info i { color: var(--primary-blue); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Honeypot — invisible to humans */
.honeypot {
  position: absolute;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form fields */
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex; flex-direction: column;
  position: relative;
}
.form-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--dark-text); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.form-field label i {
  color: var(--primary-blue);
  font-size: 0.85rem;
}
.form-field label .optional {
  font-weight: 500; color: var(--light-gray);
  text-transform: none; letter-spacing: 0;
  font-size: 0.78rem; margin-left: auto;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 13px 14px;
  font-size: 0.95rem; font-family: inherit;
  color: var(--dark-text); background: var(--white);
  border: 1.5px solid rgba(34, 40, 49, 0.12);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.form-field textarea { min-height: 140px; }
.form-field select {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23187FB0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aab1ba; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(24, 127, 176, 0.12);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: var(--red);
  background: rgba(227, 6, 19, 0.02);
}
.form-field input.invalid:focus,
.form-field select.invalid:focus,
.form-field textarea.invalid:focus {
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.12);
}

.field-error {
  display: block;
  color: var(--red);
  font-size: 0.82rem; font-weight: 500;
  margin-top: 6px; min-height: 0; line-height: 1.4;
}
.field-error:empty { margin-top: 0; }

.textarea-meta {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  margin-top: 6px; gap: 10px;
}
.textarea-meta .field-error { margin-top: 0; flex: 1; }
.char-count {
  font-size: 0.78rem; color: var(--light-gray);
  font-weight: 500; white-space: nowrap;
}
.char-count.warn { color: #d97706; }
.char-count.over { color: var(--red); font-weight: 700; }

/* Custom checkbox */
.checkbox-field { margin-top: 4px; }
.checkbox-label {
  display: flex !important;
  align-items: flex-start; gap: 12px;
  cursor: pointer;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: var(--dark-text);
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.checkbox-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(34, 40, 49, 0.25);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  margin-top: 1px;
}
.checkbox-box i {
  color: var(--white); font-size: 0.7rem;
  opacity: 0; transition: opacity 0.15s ease;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-box {
  background: var(--grad);
  border-color: var(--primary-blue);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-box i { opacity: 1; }
.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-box {
  box-shadow: 0 0 0 4px rgba(24, 127, 176, 0.18);
}
.checkbox-text { flex: 1; }

/* Submit button with three states */
.form-submit {
  position: relative; width: 100%;
  justify-content: center;
  margin-top: 8px;
  min-height: 52px;
}
.form-submit .btn-label,
.form-submit .btn-loader,
.form-submit .btn-cooldown {
  display: none; align-items: center; gap: 8px;
}
.form-submit .btn-label { display: inline-flex; }
.form-submit.loading .btn-label { display: none; }
.form-submit.loading .btn-loader { display: inline-flex; }
.form-submit.cooldown .btn-label { display: none; }
.form-submit.cooldown .btn-cooldown {
  display: inline-flex;
  font-size: 0.92rem;
}
.form-submit:disabled {
  opacity: 0.9;
  cursor: not-allowed;
  transform: none !important;
}
.form-submit.cooldown {
  background: rgba(34, 40, 49, 0.6);
}

.form-fineprint {
  text-align: center;
  color: var(--light-gray);
  font-size: 0.82rem;
  margin-top: 4px;
}
.form-fineprint i { color: var(--primary-blue); margin-right: 4px; }

/* ===========================================================
   5. SIDE PANEL — three glassmorphic-feeling cards
   =========================================================== */
.contact-side {
  display: flex; flex-direction: column; gap: 18px;
}

.side-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(34, 40, 49, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.side-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 127, 176, 0.18);
}

.side-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34, 40, 49, 0.08);
}
.sc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.side-card-head h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-text);
}

/* Hours card — special dark variant */
.hours-card {
  background: linear-gradient(160deg, #0a2638 0%, #14516e 100%);
  border-color: transparent;
}
.hours-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: var(--grad);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(40px);
}
.hours-card .side-card-head {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  position: relative; z-index: 1;
}
.hours-card .side-card-head h3 { color: var(--white); }
.hours-card .sc-icon {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.hours-list {
  list-style: none;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.hours-list li {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  padding: 4px 0;
}
.hours-list .day {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}
.hours-list .time {
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.hours-list .status-line {
  display: flex; justify-content: flex-start; align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}
.status-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08); }
}

/* Branches card */
.branches-card { }
.branch-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.branch-list li {
  padding: 12px 14px;
  background: rgba(24, 127, 176, 0.04);
  border-left: 3px solid var(--primary-blue);
  border-radius: 0 10px 10px 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.branch-list li:hover {
  background: rgba(24, 127, 176, 0.08);
  transform: translateX(3px);
}
.branch-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2px;
}
.branch-list span {
  font-size: 0.85rem;
  color: var(--light-gray);
}

/* Socials card */
.socials-card .social-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.socials-card .social-row a {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(24, 127, 176, 0.08);
  color: var(--primary-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.socials-card .social-row a:hover {
  background: var(--grad);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===========================================================
   6. MAP STRIP — decorative
   =========================================================== */
.map-strip {
  padding: 40px 0 80px;
  background: var(--white);
}
.map-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, #0e3a52 0%, #1F9ED8 100%);
  border-radius: 28px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: var(--red);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.map-card::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: var(--white);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.map-content {
  position: relative; z-index: 1;
}
.map-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}
.map-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.map-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
}
.map-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(10, 38, 56, 0.25);
}
/* Pulsing map pins */
.pin-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: pinPulse 2.5s ease-out infinite;
}
.map-pin-2 .pin-pulse { animation-delay: 0.6s; }
.map-pin-3 .pin-pulse { animation-delay: 1.2s; }
@keyframes pinPulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===========================================================
   7. FAQ STRIP
   =========================================================== */
.faq-strip {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(31, 158, 216, 0.04) 100%);
}
.faq-strip .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.faq-strip .section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--dark-text);
}
.faq-strip .section-head p {
  color: var(--light-gray);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-card {
  background: var(--white);
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(34, 40, 49, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 127, 176, 0.15);
}
.faq-card[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 127, 176, 0.2);
}
.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary > span {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.faq-card summary > span i {
  color: var(--primary-blue);
  font-size: 0.95rem;
  width: 22px;
  text-align: center;
}
.faq-card summary:hover { color: var(--primary-blue); }
.faq-card .chev {
  color: var(--light-gray);
  transition: transform 0.25s ease, color 0.2s ease;
  font-size: 0.8rem;
}
.faq-card[open] .chev {
  transform: rotate(180deg);
  color: var(--primary-blue);
}
.faq-card p {
  padding: 0 24px 22px;
  color: var(--light-gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===========================================================
   8. REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  .float-icon, .hero-orb, .signal-ring, .pin-pulse, .status-dot {
    animation: none;
  }
}

/* ===========================================================
   9. RESPONSIVE
   =========================================================== */
@media (max-width: 1000px) {
  .quick-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .map-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
    text-align: center;
  }
  .map-content { text-align: center; }
  .map-visual { order: 2; }
}

@media (max-width: 850px) {
  .contact-hero { padding: 80px 0 130px; }
  .hero-wave-bottom { height: 60px; }

  /* Hide some floating icons on smaller screens */
  .fi-5, .fi-6 { display: none; }
  .float-icon { width: 44px; height: 44px; font-size: 1rem; opacity: 0.55; }
  .fi-1 { top: 8%;  left: 4%; }
  .fi-2 { top: 14%; right: 4%; }
  .fi-3 { top: 64%; left: 4%; }
  .fi-4 { top: 70%; right: 4%; }
  .hero-orb-3 { display: none; }
  .hero-signal { display: none; }

  .hero-stat-row { gap: 24px; }
  .hero-stat:not(:last-child)::after { right: -12px; height: 28px; }
  .hero-stat strong { font-size: 1.5rem; }

  .contact-section,
  .faq-strip { padding: 60px 0; }
  .map-strip { padding: 30px 0 60px; }

  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-form-wrap { padding: 28px 22px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-card summary { padding: 18px 20px; font-size: 0.95rem; }
  .faq-card p { padding: 0 20px 20px; }

  .quick-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 600px) {
  .quick-cards-grid { grid-template-columns: 1fr; }
  .map-card { padding: 32px 24px; border-radius: 22px; }
  .side-card { padding: 22px 20px; border-radius: 16px; }
}

@media (max-width: 480px) {
  .contact-hero { padding: 60px 0 120px; }
  .contact-hero h1 { letter-spacing: -1.2px; }
  .contact-lead { font-size: 1rem; }

  /* Hide more floating icons on very small screens */
  .fi-3, .fi-4 { display: none; }

  .hero-stat-row { gap: 16px; }
  .hero-stat { padding: 0 10px; }
  .hero-stat:not(:last-child)::after { right: -8px; height: 24px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat span { font-size: 0.78rem; }

  .contact-form-wrap { padding: 24px 18px; border-radius: 16px; }
  .quick-card { padding: 20px 18px; }

  .map-card { padding: 28px 20px; }
  .map-content h2 { font-size: 1.4rem; }

  .faq-card summary { padding: 16px 18px; font-size: 0.9rem; gap: 10px; }
  .faq-card summary > span { gap: 10px; }
  .faq-card p { padding: 0 18px 18px; font-size: 0.88rem; }

  .side-card-head h3 { font-size: 1rem; }
  .sc-icon { width: 34px; height: 34px; font-size: 0.9rem; }
}