/* =========================================
   GET IN TOUCH (Background Image + Text)
========================================= */

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 460px;              /* banner height like screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* ✅ Replace with your real image path */
  background-image: url("images/get-in-touch-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay to make text readable */
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.35), rgba(0,0,0,0.78) 70%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Centered content */
.contact-hero__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 90px 20px;
  text-align: center;
}

/* Title */
.contact-hero__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.2px;
}

/* Subtitle text */
.contact-hero__text {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
}

/* Button */
.contact-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #0f4e63;
  color: #ffffff;
  text-decoration: none;

  padding: 15px 28px;
  border-radius: 10px;

  font-weight: 700;
  font-size: 1rem;

  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.contact-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.35);
}

.contact-hero__btn-icon {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-hero {
    min-height: 420px;
  }

  .contact-hero__container {
    padding: 80px 16px;
  }

  .contact-hero__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-hero__btn {
    width: 100%;
    max-width: 320px;
  }
}
/* =========================================
   CONTACT CARDS (Clickable)
========================================= */

.contact-cards {
  background: #ffffff;
  padding: 60px 20px 80px;
}

.contact-cards__grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Card base */
.contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;

  text-decoration: none;
  display: flex;
  flex-direction: column;

  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: #d7e2ee;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

/* Icon badge */
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eef3f7;
  display: grid;
  place-items: center;

  font-size: 1.35rem;
  color: #0f4e63;
  margin-bottom: 14px;
}

/* Title */
.contact-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

/* Text */
.contact-card__text {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Small anchor spacer if you use #business-hours */
.business-hours-anchor {
  scroll-margin-top: 110px; /* keeps it visible under sticky navbar */
  height: 1px;
}

/* Responsive */
@media (max-width: 1050px) {
  .contact-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .contact-cards {
    padding: 50px 16px 70px;
  }

  .contact-cards__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   CONTACT FORM (Matches screenshot)
========================================= */

.contact-form-section {
  background: #ffffff;
  padding: 70px 20px;
}

.contact-form-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.contact-form-card {
  width: 100%;
  max-width: 820px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 28px 22px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

.contact-form-header h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
}

.contact-form-header p {
  margin: 0 0 22px;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* Grid for fields (2 columns like screenshot) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.field label span {
  color: #e11d48; /* red asterisk */
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
  padding: 12px 12px;
}

/* Full-width row (Message) */
.field-full {
  grid-column: 1 / -1;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(15, 78, 99, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 78, 99, 0.12);
}

/* Submit button */
.contact-submit {
  margin-top: 18px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #0f4e63;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 16px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.14);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.20);
}

.send-icon {
  font-size: 0.95rem;
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 700px) {
  .contact-form-card {
    padding: 22px 18px 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CTA STRIP (kept + styled nicely)
========================================= */

.cta-strip {
  background: #ffffff;
  padding: 0 20px 80px;
}

.cta-strip__inner {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-strip__inner h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-btn {
  text-decoration: none;
  background: #0f4e63;
  color: #ffffff;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #0f4e63;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.12);
}

.cta-btn--ghost {
  background: #ffffff;
  color: #0f4e63;
  border: 1px solid #dbe6ef;
}

@media (max-width: 700px) {
  .cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================
   FIND US (Map Section)
========================================= */

.find-us {
  background: #ffffff;
  padding: 70px 20px 90px;
}

.find-us__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.find-us__title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
}

.find-us__subtitle {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Map card */
.find-us__card {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;

  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;

  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

/* Responsive map size */
.find-us__map {
  width: 100%;
  height: 520px;              /* similar size to screenshot */
  border: 0;
  display: block;
}

/* Clickable overlay link (does not block map use unless clicked) */
.find-us__overlay-link {
  position: absolute;
  inset: 0;
  text-decoration: none;
  display: block;
  outline: none;

  /* Makes overlay not interfere with map interactions unless user targets CTA area */
  pointer-events: none;
}

/* CTA pill at bottom center */
.find-us__cta {
  pointer-events: auto; 
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);

  background: rgba(15, 78, 99, 0.95);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;

  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  display: inline-flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.find-us__overlay-link:hover .find-us__cta {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.22);
}
/* auto map interaction on link hover */
.find-us__overlay-link { pointer-events: auto; 
}

.find-us__arrow {
  transition: transform 0.18s ease;
}

.find-us__overlay-link:hover .find-us__arrow {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 700px) {
  .find-us {
    padding: 60px 16px 80px;
  }

  .find-us__map {
    height: 420px;
  }

  .find-us__cta {
    bottom: 12px;
    font-size: 0.93rem;
    padding: 11px 14px;
  }
}
/* =========================================
   URGENT SUPPORT CTA (Under map)
========================================= */

.urgent-support {
  background: #0f4e63;
  padding: 80px 20px;
  text-align: center;
}

.urgent-support__content {
  max-width: 900px;
  margin: 0 auto;
}

.urgent-support__title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
}

.urgent-support__text {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Button */
.urgent-support__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #ffffff;
  color: #0f172a;
  text-decoration: none;

  padding: 14px 26px;
  border-radius: 10px;

  font-weight: 700;
  font-size: 1rem;

  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);

  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.urgent-support__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.urgent-support__icon {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .urgent-support {
    padding: 70px 16px;
  }

  .urgent-support__btn {
    width: 100%;
    max-width: 320px;
  }
}