.ContactPage {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 48px);
}

.ContactHero {
  width: min(1200px, 100%);
  margin: 0 auto;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
  background: radial-gradient(circle at top left, #e2fbff 0%, #ffffff 55%);
  border: 1px solid rgba(2, 132, 137, 0.12);
  box-shadow: 0 35px 80px rgba(2, 84, 103, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.ContactHeroContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ContactEyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00838f;
  margin: 0;
}

.ContactTitle {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #031f25;
  line-height: 1.15;
}

.ContactLead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #476370;
}

.ContactHighlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.ContactHighlights li {
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 31, 37, 0.08);
  color: #05313a;
  font-size: 0.92rem;
}

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

.ContactPrimaryButton,
.ContactSecondaryButton {
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.ContactPrimaryButton {
  background: linear-gradient(120deg, #00d3db, #00a0a9);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 163, 170, 0.3);
}

.ContactPrimaryButton:hover,
.ContactPrimaryButton:focus-visible,
.ContactSecondaryButton:hover,
.ContactSecondaryButton:focus-visible {
  transform: translateY(-2px);
}

.ContactSecondaryButton {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(3, 31, 37, 0.15);
  color: #05313a;
  box-shadow: 0 12px 24px rgba(3, 31, 37, 0.06);
}

.ContactSupport {
  margin: 0;
  color: #05313a;
  font-weight: 600;
}

.ContactHeroCard {
  border-radius: 20px;
  padding: 24px;
  background: rgba(13, 36, 61, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(13, 36, 61, 0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ContactHeroBadge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ContactHeroAddress {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ContactHeroList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ContactHeroLink {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.ContactHeroLink:hover {
  color: #b6f3ff;
}

.ContactDetailsSection {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.ContactDetailsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.ContactCard {
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(6, 32, 36, 0.08);
  box-shadow: 0 25px 50px rgba(6, 32, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ContactCardLabel {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a5b64;
}

.ContactCardTitle {
  margin: 0;
  font-size: 1.25rem;
  color: #031f25;
}

.ContactCardBody {
  margin: 0;
  color: #2f4a56;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ContactLink {
  color: #004b51;
  text-decoration: none;
  font-weight: 600;
}

.ContactLink:hover,
.ContactLink:focus-visible {
  color: #00363a;
}

.ContactSocialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ContactSocialLink {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 75, 81, 0.24);
  background: #dff1f3;
  color: #003f45;
  text-decoration: none;
  font-weight: 600;
}

.ContactSocialLink:hover,
.ContactSocialLink:focus-visible {
  background: #cfeaed;
  color: #002f33;
}

.ContactMapSection {
  width: min(1200px, 100%);
  margin: 0 auto;
  border-radius: 32px;
  padding: clamp(20px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(6, 32, 36, 0.08);
  box-shadow: 0 30px 60px rgba(6, 32, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ContactMapHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ContactMapTitle {
  margin: 4px 0;
  font-size: 1.8rem;
  color: #031f25;
}

.ContactMapSubtitle {
  margin: 0;
  color: #4a6572;
  max-width: 580px;
  line-height: 1.5;
}

.ContactMapWrapper {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.ContactMap {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.ContactMapPending {
  background: linear-gradient(120deg, #f0f4f7 0%, #e2e8f0 50%, #f0f4f7 100%);
}

.ContactMapReady {
  background: transparent;
}

.ContactMapSkeleton,
.ContactMapInlineSkeleton {
  position: relative;
  background: linear-gradient(120deg, #f0f4f7 0%, #e2e8f0 50%, #f0f4f7 100%);
  background-size: 200% 100%;
  animation: shimmer 1.25s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ContactMapInlineSkeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(2px);
}

.ContactMapSpinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-top-color: #00d3db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 640px) {
  .ContactHero {
    padding: 20px;
  }
  .ContactHighlights {
    grid-template-columns: 1fr;
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ContactMain {
  background-color: #f7fafc; /* Light gray background */
  padding-inline: 20px;
}

.ContactSection {
  width: 100%;
}

.ContactContainer {
  margin: 0 auto;
  text-align: center;
}

.ContactTitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: #062024;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .ContactTitle {
    font-size: 20px;
  }
}

.ContactSubContainerWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}

.ContactInfo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1284px) {
  .ContactInfo {
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .ContactInfo {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.ContactItem {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  padding: 16px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .ContactItem {
    padding: 14px;
  }
}
@media (max-width: 480px) {
  .ContactItem {
    padding: 12px;
  }
}

.ContactItem p {
  color: #4a5568;
  margin: 0;
  font-size: 16px;
}
@media (max-width: 780px) {
  .ContactItem p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .ContactItem p {
    font-size: 12px;
  }
}

.ContactLink {
  color: #00d3db;
  text-decoration: none;
  white-space: nowrap;
}

.ContactLink:hover {
  color: #1a4e9e;
}

.ContactSocialLinks {
  display: flex;
  gap: 1rem;
}
@media (max-width: 780px) {
  .ContactSocialLinks {
    flex-direction: column;
    gap: 0;
  }
}

.ContactSocialLink {
  color: #00d3db;
  text-decoration: none;
  font-size: 1rem;
}

.ContactSocialLink:hover {
  color: #1a4e9e;
}

.ContactIconPhone,
.ContactIconPin,
.ContactIconSocial {
  width: 20px;
  height: 20px;
  background-color: #00d3db;
  border-radius: 50%;
  flex-shrink: 0;
}

.ContactMap {
  width: 100%;
  height: 300px; /* Reduced height for minimalism */
  max-width: 800px; /* Narrower container for minimalism */
  border-radius: 0.5rem;
  overflow: hidden;
}

.ContactMapSkeleton {
  position: relative;
  background: linear-gradient(120deg, #f0f4f7 0%, #e2e8f0 50%, #f0f4f7 100%);
  background-size: 200% 100%;
  animation: shimmer 1.25s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ContactMapSpinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-top-color: #00d3db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}