/* =========================================================
   VERTEX MANPOWER CONSULTING — CONTACT PAGE STYLES
   Harmonized with services.css & site-wide design system
   ========================================================= */

:root {
  --fm-teal: #1597A5;
  --fm-teal-light: #36BFC5;
  --fm-teal-dark: #0E7581;
  --fm-teal-glow: rgba(21, 151, 165, 0.22);
  --fm-accent: #E07A5F;
  --fm-accent-light: #E07A5F;
  --fm-navy-deep: #062A43;
  --fm-navy: #0B3553;
  --fm-ink: #0B2436;
  --fm-ink-mute: #4C6478;
  --fm-bg-soft: #F4F8FA;
  --fm-border: rgba(6, 42, 67, 0.08);
  --fm-border-strong: rgba(6, 42, 67, 0.14);
}

/* =========================================================
   1. CONTACT HERO (.contact-hero)
   ========================================================= */
.contact-hero {
  background: linear-gradient(rgba(11, 36, 54, 0.78), rgba(13, 64, 89, 0.86)),
              url('../images/hero-workforce.jpg') center center / cover no-repeat !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74vh;
  padding: 68px 20px 60px;
  position: relative;
  overflow: hidden;
}

/* Background dot texture pattern */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(54, 191, 197, 0.30) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.contact-hero:has(.contact-hero-dots)::before {
  display: none;
}

.contact-hero-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(54, 191, 197, 0.30) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.contact-hero .s-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  gap: 0;
  width: 100%;
}

.contact-hero .s-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 0;
  width: 100%;
}

.contact-hero .s-breadcrumb {
  justify-content: center;
  margin-bottom: 22px;
}

.contact-hero .s-eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.contact-hero .s-h1 {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  margin-bottom: 22px;
  max-width: 860px;
}

.contact-hero .s-lede {
  max-width: 720px;
  margin-bottom: 36px;
  font-size: clamp(15px, 1.15vw, 17.5px);
  color: rgba(255, 255, 255, 0.88);
}

.contact-hero .s-hero-ctas {
  justify-content: center;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-hero .s-hero-stats {
  width: 100%;
  max-width: 860px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.contact-hero .s-hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-hero .s-hero-stat:last-child {
  border-right: none !important;
}

.contact-hero .s-hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(54, 191, 197, 0.2);
  color: var(--fm-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-hero .s-hero-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.contact-hero .s-hero-stat-lbl {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}

@media (max-width: 800px) {
  .contact-hero .s-hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
  }
  .contact-hero .s-hero-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
    justify-content: flex-start;
  }
  .contact-hero .s-hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =========================================================
   2. DIRECT CONTACT STRIP (.contact-direct-sec)
   ========================================================= */
.contact-direct-sec {
  padding: 88px 0 68px;
  background: #ffffff;
  border-bottom: 1px solid var(--fm-border);
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .contact-direct {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-direct .detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 18px;
  background: var(--fm-bg-soft);
  border: 1px solid var(--fm-border);
  box-shadow: 0 4px 16px -8px rgba(6, 42, 67, 0.08);
  transition: all 0.3s ease;
}
.contact-direct .detail-item:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(21, 151, 165, 0.35);
  box-shadow: 0 12px 28px -8px rgba(6, 42, 67, 0.12);
}
.contact-direct .detail-item .dot-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fm-teal), var(--fm-teal-light));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21, 151, 165, 0.25);
  transition: all 0.25s ease;
}
.contact-direct .detail-item:hover .dot-ic {
  background: linear-gradient(135deg, var(--fm-teal-dark), var(--fm-teal));
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(21, 151, 165, 0.36);
}
.contact-direct .detail-item .dot-ic svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
  opacity: 1;
}
.contact-direct .detail-item strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fm-ink-mute);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-direct .detail-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fm-navy-deep);
  font-weight: 500;
}
.contact-direct .detail-item a {
  color: var(--fm-navy-deep);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-direct .detail-item a:hover {
  color: var(--fm-teal);
}

.contact-direct-wide {
  grid-column: 1 / -1;
}
.contact-email-wide {
  grid-column: 1 / -1;
}
.contact-email-wide #cEmail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 32px;
}
.contact-email-wide #cEmail a {
  display: block;
  overflow-wrap: anywhere;
}
@media (max-width: 680px) {
  .contact-email-wide #cEmail {
    grid-template-columns: 1fr;
  }
}
.contact-direct-wide .detail-item {
  align-items: center;
}
.contact-direct-wide .hours-split {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  flex: 1;
}
.contact-direct-wide .hours-col-2 {
  border-left: 1px solid var(--fm-border);
  padding-left: 36px;
}
@media (max-width: 680px) {
  .contact-direct-wide .hours-col-2 {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--fm-border);
    padding-top: 16px;
    width: 100%;
  }
}

/* Quick action CTA pills */
.contact-cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) {
  .contact-cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.contact-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--fm-border);
  text-decoration: none;
  color: var(--fm-navy-deep);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 16px -6px rgba(6, 42, 67, 0.08);
  transition: all 0.25s ease;
}
.contact-cta:hover {
  transform: translateY(-2px);
  border-color: var(--fm-teal);
  box-shadow: 0 12px 26px -8px rgba(21, 151, 165, 0.2);
  color: var(--fm-navy-deep);
}
.contact-cta .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fm-teal), var(--fm-teal-light));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(21, 151, 165, 0.28);
}
.contact-cta .ic svg {
  width: 20px;
  height: 20px;
}
.contact-cta .lbl {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fm-ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

/* =========================================================
   3. FORM & OPERATIONS DESK GRID (.contact-grid)
   ========================================================= */
.contact-form-sec {
  padding: 88px 0;
  background: var(--fm-bg-soft);
  border-bottom: 1px solid var(--fm-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--fm-border);
  border-radius: 24px;
  box-shadow: 0 18px 44px -14px rgba(6, 42, 67, 0.10);
  padding: 44px 40px;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.contact-form-card:hover {
  box-shadow: 0 24px 54px -16px rgba(6, 42, 67, 0.14);
}
@media (max-width: 640px) {
  .contact-form-card {
    padding: 30px 20px;
    border-radius: 18px;
  }
}

.contact-form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fm-navy-deep);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.contact-form-card .form-intro {
  color: var(--fm-ink-mute);
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .contact-form-card .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-form-card .field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.contact-form-card .field label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--fm-navy-deep);
  letter-spacing: 0.01em;
}

.contact-form-card .field input,
.contact-form-card .field select,
.contact-form-card .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid rgba(6, 42, 67, 0.12);
  background: var(--fm-bg-soft);
  color: var(--fm-navy-deep);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.contact-form-card .field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B2436' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.contact-form-card .field textarea {
  resize: vertical;
  min-height: 104px;
}

.contact-form-card .field input:hover,
.contact-form-card .field select:hover,
.contact-form-card .field textarea:hover {
  border-color: rgba(21, 151, 165, 0.4);
  background: #ffffff;
}

.contact-form-card .field input:focus,
.contact-form-card .field select:focus,
.contact-form-card .field textarea:focus {
  outline: none;
  border-color: var(--fm-teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--fm-teal-glow);
}

.contact-form-card .field input::placeholder,
.contact-form-card .field textarea::placeholder {
  color: #94a3b8;
}

.contact-form-card .btn-submit-enquiry {
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 99px;
  background: var(--fm-teal);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(21, 151, 165, 0.32);
  transition: all 0.25s ease;
  margin-top: 6px;
}

.contact-form-card .btn-submit-enquiry:hover {
  background: var(--fm-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 151, 165, 0.44);
}

.contact-form-card .btn-submit-enquiry svg {
  transition: transform 0.2s ease;
}
.contact-form-card .btn-submit-enquiry:hover svg {
  transform: translateX(3px);
}

.contact-form-card .privacy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--fm-ink-mute);
  margin-top: 18px;
  line-height: 1.5;
  text-align: center;
}

.contact-form-card .privacy-row span svg {
  width: 16px;
  height: 16px;
  color: var(--fm-teal);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.contact-form-card .form-success {
  display: none;
  padding: 44px 20px;
  text-align: center;
}
.contact-form-card .form-success.show {
  display: block;
}

.contact-form-card .form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(21, 151, 165, 0.12);
  color: var(--fm-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}

/* =========================================================
   4. REAL PERSON CARD & INTERACTIVE MAP (.realperson)
   ========================================================= */
.realperson {
  background: radial-gradient(ellipse 80% 90% at 85% 15%, rgba(21, 151, 165, 0.28), transparent 70%),
              radial-gradient(ellipse 70% 80% at 15% 85%, rgba(224, 122, 95, 0.18), transparent 70%),
              var(--fm-navy-deep);
  color: #ffffff;
  border-radius: 24px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(6, 42, 67, 0.25);
}

.realperson .rp-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.realperson .rp-head .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fm-teal-light);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(54, 191, 197, 0.14);
  border: 1px solid rgba(54, 191, 197, 0.32);
  margin-bottom: 4px;
}

.realperson .rp-head .tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
  animation: fmPulse 2s infinite;
}

.realperson .avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fm-navy-deep);
  flex-shrink: 0;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.realperson .avatar .rp-logo-img,
.realperson .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.realperson .rp-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.realperson .rp-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 2px 0 0;
}

.realperson h4 {
  color: #ffffff;
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.realperson p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}

.realperson .rp-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .realperson .rp-actions {
    grid-template-columns: 1fr;
  }
}

.realperson .rp-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.realperson .rp-action:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: var(--fm-teal-light);
}
.realperson .rp-action svg {
  width: 15px;
  height: 15px;
}

/* Interactive Map */
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(6, 42, 67, 0.12);
  border: 1px solid var(--fm-border);
  background: #ffffff;
  margin-top: 24px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 290px;
  border: 0;
}

.contact-map-foot {
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--fm-ink-mute);
  background: var(--fm-bg-soft);
  border-top: 1px solid var(--fm-border);
  line-height: 1.5;
}

/* =========================================================
   5. THREE-STEP PROCESS SECTION (.process-section)
   ========================================================= */
.process-section {
  padding: 92px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--fm-border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
@media (max-width: 860px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.process-card {
  position: relative;
  background: var(--fm-bg-soft);
  border: 1px solid var(--fm-border);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 6px 20px -8px rgba(6, 42, 67, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.process-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(21, 151, 165, 0.35);
  box-shadow: 0 16px 36px rgba(6, 42, 67, 0.10);
}

.process-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fm-teal), var(--fm-teal-light));
  color: #ffffff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(21, 151, 165, 0.3);
}

.process-card.orange .step {
  background: linear-gradient(135deg, var(--fm-accent), var(--fm-accent-light));
  box-shadow: 0 6px 16px rgba(224, 122, 95, 0.3);
}

.process-card h4 {
  color: var(--fm-navy-deep);
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.process-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--fm-ink-mute);
}

/* =========================================================
   6. VISIT US SECTION (.visit-section)
   ========================================================= */
.visit-section {
  padding: 92px 0;
  background: #0D4059;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.visit-section .section-heading {
  color: #ffffff;
}

.visit-section .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

.visit-section .visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 40px;
}
@media (max-width: 920px) {
  .visit-section .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.visit-section .visit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 38px 34px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.visit-section .visit-card h3 {
  color: #ffffff;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin: 0 0 14px;
}

.visit-section .visit-card p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 24px;
  line-height: 1.7;
  font-size: 1rem;
}

.visit-section .visit-card .btn-primary {
  background: var(--fm-teal);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(21, 151, 165, 0.35);
  transition: all 0.25s ease;
  width: 100%;
}
.visit-section .visit-card .btn-primary:hover {
  background: var(--fm-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 151, 165, 0.5);
}

.visit-section .hours-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-section .hours-strip .h-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #ffffff;
  flex: 1;
  min-width: 180px;
}

.visit-section .hours-strip .h-item .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(54, 191, 197, 0.2);
  color: var(--fm-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-section .hours-strip .h-item .ic svg {
  width: 18px;
  height: 18px;
}

.visit-section .hours-strip .h-item strong {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.visit-section .visit-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.visit-section .visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* =========================================================
   7. COVERAGE SECTION (.coverage-section)
   ========================================================= */
.coverage-section {
  padding: 88px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--fm-border);
}

.coverage-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .coverage-head {
    grid-template-columns: 1fr;
  }
}

.coverage-head p {
  max-width: 580px;
  margin-top: 10px;
}

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--fm-bg-soft);
  border: 1px solid var(--fm-border);
  color: var(--fm-navy-deep);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 4px 12px -8px rgba(6, 42, 67, 0.08);
  transition: all 0.25s ease;
}
.coverage-pill:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: var(--fm-teal);
  color: var(--fm-teal-dark);
}
.coverage-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fm-teal);
  box-shadow: 0 0 0 3px rgba(21, 151, 165, 0.2);
}

.coverage-note {
  margin-top: 28px;
  font-size: 0.94rem;
  color: var(--fm-ink-mute);
}

/* =========================================================
   8. FAQ ACCORDION COMPATIBILITY (.faq-list, .faq-item)
   ========================================================= */
.contact-faq-sec {
  padding: 92px 0;
  background: #0D4059;
  color: #ffffff;
}

.contact-faq-sec .section-heading {
  color: #ffffff;
}

.contact-faq-sec .faq-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 40px auto 0;
}

.contact-faq-sec .faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.contact-faq-sec .faq-item:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--fm-teal-light);
}

.contact-faq-sec .faq-item[open] {
  border-color: var(--fm-teal-light);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.contact-faq-sec .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.05rem;
}
.contact-faq-sec .faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-sec .faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--fm-teal-light);
  transition: transform 0.25s ease;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
}
.contact-faq-sec .faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--fm-teal-light);
  color: var(--fm-navy-deep);
}

.contact-faq-sec .faq-item .faq-body {
  padding: 0 26px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-faq-sec .faq-item .faq-body strong {
  color: #ffffff;
}
