/* ===== Contact page ===== */
.contact-main {
  padding: 0;
  padding-top: 6rem;
  min-height: 60vh;
}

/* 1. Contact Us heading section */
.contact-header {
  background: #0C5780;
  padding: 4rem 1.5rem;
  text-align: center;
}
.contact-header-inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
}
.contact-subtitle {
  margin: 0 0 1rem;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}
.contact-divider {
  height: 4px;
  background: #f97316;
  width: 100%;
}

/* 2. Contact Details and Map section */
.contact-details-section {
  background: #fafafa;
  padding: 3rem 4rem 4rem;
}

.contact-details-title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #1f2937;
  text-align: center;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

/* Call Us column */
.contact-call-heading {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2A2A2A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-call-icon {
  color: #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-call-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Shared card style */
.contact-card {
  background: #E6F2FF;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-call-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-card-name {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}
.contact-card-phone {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  white-space: nowrap;
}
.contact-card-phone:hover {
  color: #1f5785;
  text-decoration: underline;
}

/* Email card */
.contact-email-map-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-email-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-email-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  word-break: break-all;
}
.contact-email-link:hover {
  color: #1f5785;
  text-decoration: underline;
}

/* Map card */
.contact-map-card {
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem;
}
.contact-map-heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-map-icon {
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-embed-wrap {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  min-height: 280px;
}
.contact-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 3. Support Our Work section */
.support-section {
  background: #e8f4fc;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.support-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 38%);
  min-height: 260px;
  align-items: center;
}
.support-content {
  padding: 2rem 1.5rem 2rem 4rem;
  max-width: 800px;
  z-index: 1;
  text-align: left;
}
.support-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
}
.support-desc {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
}
.support-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f97316;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}
.support-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
}
.support-image-wrap {
  position: relative;
  height: 100%;
  min-height: 260px;
  clip-path: circle(85% 100% at 85% 50%);
  -webkit-clip-path: circle(85% 100% at 85% 50%);
}
.support-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .support-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .support-content {
    max-width: none;
    padding: 2rem 1.5rem;
    order: 1;
  }
  .support-image-wrap {
    order: 0;
    min-height: 220px;
    clip-path: ellipse(100% 85% at 50% 0%);
    -webkit-clip-path: ellipse(100% 85% at 50% 0%);
  }
}

@media (max-width: 768px) {
  .contact-header {
    padding: 3rem 1rem;
  }
  .contact-details-section {
    padding: 2.5rem 1rem 3rem;
  }
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-call-col {
    order: 1;
  }
  .contact-email-map-col {
    order: 2;
  }
  .contact-map-embed-wrap {
    min-height: 240px;
  }
  .support-content {
    padding: 1.75rem 1.25rem;
  }
  .support-image-wrap {
    min-height: 200px;
  }
}
