/* ================================================================
   contact.css — Contact Us page ONLY
   style.css must be loaded first.
   ================================================================ */

/* ── HERO  FILE: contact-hero-bg.jpg
   Screenshot: full-width photo with nav overlaid (white text),
   "Let's connect" in white italic serif centered in photo.
   Photo has a desaturated/dark tone.
   ================================================================ */
.ct-hero {
  position: relative;
  height: clamp(220px, 28vw, 320px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}
.ct-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  z-index: 0;
  filter: grayscale(60%) brightness(.75);
}
.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}
.ct-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font);
  font-size: var(--h1);
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

/* ── CONTACT US SECTION
   Screenshot: very light grey bg (#f0f3f4),
   3 white cards in a row.
   Each card: label text top, image fills middle, number text, outline btn bottom.
   ================================================================ */
.ct-cards-section {
  background: #eef1f3;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Individual card */
.ct-card {
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ct-card-label {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}
/* Image area inside card */
.ct-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8e4de; /* warm beige for WhatsApp card */
}
.ct-card-img--blue { background: #dff0f0; }
.ct-card-img--purple { background: #ede8f5; }
.ct-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ct-card-value {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #111;
  margin-top: 0.15rem;
}
.ct-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #111;
  color: #111;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  margin-top: 0.25rem;
}
.ct-card-btn:hover { background: #111; color: #fff; }

/* ── LOCATE US SECTION
   Screenshot: white bg, H2 centered, wide+short map embed,
   address text centered, "Get direction" outline btn
   ================================================================ */
.ct-locate-section {
  background: #fff;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.ct-locate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
/* Wide short map — matches screenshot ratio exactly */
.ct-map-wrap {
  width: 100%;
  max-width: 1040px;
  aspect-ratio: 21 / 5;
  overflow: hidden;
  border: 1px solid #ddd;
}
.ct-map-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.ct-address {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 760px) {
  .ct-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .ct-map-wrap   { aspect-ratio: 16/7; }
}
@media (max-width: 560px) {
  .ct-hero       { height: 200px; }
  .ct-hero-title { font-size: 2rem; }
  .ct-map-wrap   { aspect-ratio: 4/3; }
}
