/* ═══════════════════════════════════════════════════════════════════════
   contact.css — Dedicated stylesheet for Umbrella Trip /contact page
   Baseline: html { font-size: 62.5% } (1rem = 10px on desktop)
   Brand Palette: Navy #1A2B5E · Blue #1565C8 · Green #2E9E3E · Gold #EAB308
   Font: Inter (Max Font-Weight: 600)
   ═══════════════════════════════════════════════════════════════════════ */

/* Global Typography Constraint: Max font-weight 600 */
.contact-hero,
.contact-channels-section,
.contact-main-section,
.contact-faq-section,
.contact-emergency-strip {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.contact-hero b,
.contact-hero strong,
.contact-hero h1,
.contact-hero h2,
.contact-hero h3,
.contact-channels-section b,
.contact-channels-section strong,
.contact-channels-section h1,
.contact-channels-section h2,
.contact-channels-section h3,
.contact-main-section b,
.contact-main-section strong,
.contact-main-section h1,
.contact-main-section h2,
.contact-main-section h3,
.contact-faq-section b,
.contact-faq-section strong,
.contact-faq-section h1,
.contact-faq-section h2,
.contact-faq-section h3,
.contact-emergency-strip b,
.contact-emergency-strip strong,
.contact-emergency-strip h1,
.contact-emergency-strip h2,
.contact-emergency-strip h3 {
  font-weight: 600 !important;
}

/* ─── 1. HERO SECTION ─────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0b1329;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 20%, rgba(21, 101, 200, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(46, 158, 62, 0.16) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
  pointer-events: none;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 41, 0.6) 0%, rgba(11, 19, 41, 0.95) 100%);
  pointer-events: none;
}

/* Floating ambient glowing orbs */
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

.contact-orb-1 {
  top: 10%;
  left: 10%;
  width: 32rem;
  height: 32rem;
  background: rgba(21, 101, 200, 0.5);
  animation: floatOrbContact1 14s ease-in-out infinite alternate;
}

.contact-orb-2 {
  bottom: 12%;
  right: 8%;
  width: 36rem;
  height: 36rem;
  background: rgba(46, 158, 62, 0.4);
  animation: floatOrbContact2 18s ease-in-out infinite alternate;
}

.contact-orb-3 {
  top: 35%;
  right: 30%;
  width: 20rem;
  height: 20rem;
  background: rgba(14, 165, 233, 0.3);
}

@keyframes floatOrbContact1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.15);
  }
}

@keyframes floatOrbContact2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-30px, -25px) scale(1.1);
  }
}

.contact-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 8rem;
}

/* Breadcrumb */
.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1.6rem;
  border-radius: 5rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-breadcrumb a:hover {
  color: #6edc84;
}

.contact-breadcrumb .sep {
  font-size: 0.9rem;
  opacity: 0.5;
}

.contact-breadcrumb .active {
  color: #6edc84;
  font-weight: 600;
}

/* Eyebrow Badge */
.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(46, 158, 62, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.38);
  color: #4ade80;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  border-radius: 5rem;
  margin-bottom: 1.6rem;
}

.eyebrow-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

/* Headline */
.contact-hero-title {
  font-size: clamp(1.8rem, 2.4vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.contact-hero-subtitle {
  font-size: clamp(1.35rem, 1.4vw, 1.5rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 64rem;
  margin: 0 auto 2.8rem;
}

/* Trust Chips */
.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.7rem 1.6rem;
  border-radius: 5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.2s;
}

.trust-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ─── 2. QUICK CONTACT CHANNELS ───────────────────────────────────────── */
.contact-channels-section {
  padding: 0 0 2rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-channel-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 2.6rem 2.2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 26, 61, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 26, 61, 0.12);
  border-color: rgba(21, 101, 200, 0.3);
}

.ccc-icon {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
}

.ccc-icon-blue {
  background: rgba(21, 101, 200, 0.10);
  color: #1565C8;
}

.ccc-icon-green {
  background: rgba(46, 158, 62, 0.12);
  color: #2e9e3e;
}

.ccc-icon-navy {
  background: rgba(26, 43, 94, 0.10);
  color: #1A2B5E;
}

.ccc-icon-teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

.ccc-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.ccc-label {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.ccc-val {
  font-size: 1.45rem;
  font-weight: 600;
  color: #1A2B5E;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  word-break: break-word;
  transition: color 0.2s;
}

.ccc-val:hover {
  color: #1565C8;
}

.ccc-note {
  font-size: 1.15rem;
  color: #94a3b8;
}

.ccc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, color 0.25s, box-shadow 0.25s;
}

.btn-phone {
  background: rgba(21, 101, 200, 0.09);
  color: #1565C8;
}

.btn-phone:hover {
  background: #1565C8;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(21, 101, 200, 0.35);
}

.btn-wa {
  background: rgba(46, 158, 62, 0.12);
  color: #1e7a2e;
}

.btn-wa:hover {
  background: #2e9e3e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(46, 158, 62, 0.35);
}

.btn-mail {
  background: rgba(26, 43, 94, 0.08);
  color: #1A2B5E;
}

.btn-mail:hover {
  background: #1A2B5E;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(26, 43, 94, 0.35);
}

.btn-directions {
  background: rgba(13, 148, 136, 0.10);
  color: #0d9488;
}

.btn-directions:hover {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35);
}

/* ─── 3. MAIN SECTION: ENQUIRY FORM & SIDEBAR ─────────────────────────── */
.contact-main-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
  background: #f8fafc;
}

/* Left: Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 2.2rem;
  padding: 3.8rem 3.4rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 36px rgba(15, 26, 61, 0.05);
}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  margin-bottom: 2.8rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 2.2rem;
}

.cfh-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #1565C8, #1A2B5E);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-kicker {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e9e3e;
  margin-bottom: 0.4rem;
}

.contact-form-title {
  font-size: clamp(1.75rem, 1.9vw, 2.15rem);
  font-weight: 600;
  color: #1A2B5E;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.contact-form-desc {
  font-size: 1.35rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Alert Box */
.contact-alert {
  padding: 1.4rem 1.8rem;
  border-radius: 1.2rem;
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.contact-alert.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.contact-alert.alert-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* Form Controls */
.cf-group {
  display: flex;
  flex-direction: column;
}

.cf-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2B5E;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cf-label i {
  color: #1565C8;
  font-size: 1.15rem;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1.35rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  background: #ffffff;
  border-color: #1565C8;
  box-shadow: 0 0 0 3.5px rgba(21, 101, 200, 0.12);
}

.cf-textarea {
  resize: vertical;
  min-height: 10rem;
}

.cf-error {
  font-size: 1.18rem;
  color: #dc2626;
  margin-top: 0.4rem;
  min-height: 1.5rem;
}

/* CAPTCHA Card */
.cf-captcha-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 1.2rem;
  padding: 1.2rem 1.8rem;
}

.cf-captcha-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cf-captcha-badge {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #1A2B5E;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 0.6rem;
}

.cf-captcha-question {
  font-size: 1.45rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.05em;
}

.btn-refresh-captcha {
  background: transparent;
  border: none;
  color: #1565C8;
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.35rem;
  transition: transform 0.25s, color 0.2s;
}

.btn-refresh-captcha:hover {
  color: #2e9e3e;
  transform: rotate(45deg);
}

.cf-captcha-right {
  width: 24rem;
  max-width: 100%;
}

.cf-captcha-input {
  background: #ffffff;
  border: 2px solid #1565C8 !important;
  border-radius: 1.1rem;
  padding: 1.15rem 1.6rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.45rem;
  color: #0f172a;
  box-shadow: 0 0 0 4px rgba(21, 101, 200, 0.15), 0 2px 8px rgba(21, 101, 200, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, transform 0.2s ease;
}

.cf-captcha-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.cf-captcha-input:hover {
  border-color: #0d47a1 !important;
  box-shadow: 0 0 0 5px rgba(21, 101, 200, 0.22), 0 4px 12px rgba(21, 101, 200, 0.12);
}

.cf-captcha-input:focus {
  background: #ffffff;
  border-color: #2e9e3e !important;
  box-shadow: 0 0 0 5px rgba(46, 158, 62, 0.25), 0 4px 14px rgba(46, 158, 62, 0.15) !important;
}

/* Submit Button */
.cf-submit-btn {
  width: 100%;
  padding: 1.35rem 2.4rem;
  background: linear-gradient(135deg, #1565C8 0%, #1A2B5E 100%);
  color: #ffffff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.45rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(21, 101, 200, 0.3);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.cf-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 101, 200, 0.42);
  background: linear-gradient(135deg, #2e9e3e 0%, #1e7a2e 100%);
}

.cf-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}


/* ─── Right: Sidebar Info ─── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.sidebar-block {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem 2.6rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 30px rgba(15, 26, 61, 0.04);
}

.sb-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.sb-icon {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.2rem;
  background: rgba(21, 101, 200, 0.10);
  color: #1565C8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.sb-kicker {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2e9e3e;
}

.sb-title {
  font-size: 1.65rem;
  font-weight: 600;
  color: #1A2B5E;
  margin: 0;
}

.sb-address {
  font-size: 1.35rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.sb-directions-note {
  font-size: 1.2rem;
  color: #64748b;
  background: #f8fafc;
  border-radius: 0.8rem;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

/* Map Wrapper */
.contact-map-wrapper {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
}

/* Operating Hours List */
.sb-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sb-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 1.28rem;
}

.sb-hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sb-hours-list .day {
  color: #475569;
}

.sb-hours-list .time {
  font-weight: 600;
  color: #1A2B5E;
}

.sb-hours-list .time-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 5rem;
}



/* ─── 5. FAQ ACCORDION SECTION ────────────────────────────────────────── */
.contact-faq-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
  background: #f8fafc;
  border-top: 1px solid var(--color-border-light, #e2e8f0);
}

/* ─── Reusable Section Typography (aligned with Home page) ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(46, 158, 62, 0.09);
  border: 1px solid rgba(46, 158, 62, 0.28);
  color: #1e7a2e;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 5rem;
  margin-bottom: 1.4rem;
}

.section-heading-main {
  font-size: var(--fluid-section-title, clamp(2.0rem, 2.2vw + 0.2rem, 2.8rem));
  font-weight: 600;
  color: #1A2B5E;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section-heading-main span {
  color: #1565C8;
}

.section-lead {
  font-size: clamp(1.35rem, 1.4vw, 1.5rem);
  color: #64748b;
  line-height: 1.65;
  max-width: 64rem;
}

.c-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.4rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.c-faq-item.active {
  border-color: rgba(21, 101, 200, 0.4);
  box-shadow: 0 8px 24px rgba(21, 101, 200, 0.08);
}

.c-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.8rem 2.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2B5E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
}

.c-faq-question:hover {
  color: #1565C8;
}

.c-faq-icon {
  font-size: 1.25rem;
  color: #94a3b8;
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
}

.c-faq-item.active .c-faq-icon {
  transform: rotate(180deg);
  color: #1565C8;
}

.c-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 2.4rem;
}

.c-faq-item.active .c-faq-answer {
  max-height: 40rem;
  padding: 0 2.4rem 2rem;
}

.c-faq-answer p {
  font-size: 1.38rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ─── 6. EMERGENCY / WHATSAPP DISPATCH STRIP ──────────────────────────── */
.contact-emergency-strip {
  padding: 0 0 clamp(3.5rem, 4.5vw, 4.8rem);
  background: #f8fafc;
}

.emergency-box {
  background: linear-gradient(135deg, #0f1a3d 0%, #1a2b5e 60%, #1565C8 100%);
  border-radius: 2.2rem;
  padding: 3.4rem 3.6rem;
  box-shadow: 0 16px 40px rgba(15, 26, 61, 0.15);
  position: relative;
  overflow: hidden;
}

.emergency-box::before {
  content: '';
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(46, 158, 62, 0.10);
  pointer-events: none;
}

.emergency-icon-pulse {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(74, 222, 128, 0);
  }
}

.emergency-kicker {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 0.4rem;
}

.emergency-title {
  font-size: clamp(1.75rem, 1.9vw, 2.15rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.emergency-desc {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.55;
  max-width: 58rem;
}

.emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
}

.btn-emergency-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: #ffffff;
  color: #1A2B5E;
  padding: 1.2rem 2.2rem;
  border-radius: 1.1rem;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.25s, transform 0.2s, color 0.25s;
}

.btn-emergency-call:hover {
  background: #2e9e3e;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-emergency-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: #25d366;
  color: #ffffff;
  padding: 1.2rem 2.2rem;
  border-radius: 1.1rem;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: background 0.25s, transform 0.2s;
}

.btn-emergency-wa:hover {
  background: #1eb855;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ─── 7. RESPONSIVE BREAKPOINTS ───────────────────────────────────────── */
@media (max-width: 1199px) {
  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .contact-hero-body {
    padding: 7rem 0 3.5rem;
  }

  .contact-form-card {
    padding: 3rem 2.4rem;
  }

  .emergency-box {
    padding: 3rem 2.4rem;
  }

  .emergency-actions {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }

  .contact-channels-section {
    margin-top: -2rem;
  }

  .cf-captcha-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cf-captcha-right {
    width: 100%;
  }

  .emergency-box .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .contact-hero-body {
    padding: 6rem 0 3rem;
  }

  .contact-trust-row {
    flex-direction: column;
    align-items: center;
  }

  .trust-chip {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 2.4rem 1.8rem;
  }

  .contact-form-header {
    flex-direction: column;
  }
}