/* =========================================================
   Cat Corner — Contact Us (page-contact-us.php)
   DS-compliant, plain CSS, scoped under .cc-contact.
   Palette: Oatmeal #F8FAFC base · Electric Cyan #00B4D8 (30%)
   · Goldenrod #FFC300 (CTA-only, 10%) · Pitch Black #000.
   Support: Cream #F3E9D5 editorial warmth.
   Fonts: Outfit (display, !important to beat elementor-kit-74
   Chewy rule) · Plus Jakarta Sans (body) · Chewy (stickers only).
   Shares the .cc-btn / sticker / eyebrow / toy-shadow-card
   language with about-us.css so the site reads as one system.
   ========================================================= */

.cc-contact {
  --cc-cyan:    #00B4D8;
  --cc-cyan-700:#0090AD;
  --cc-cyan-300:#7FDCEC;
  --cc-cyan-100:#D6F2F8;
  --cc-gold:    #FFC300;
  --cc-oatmeal: #F8FAFC;
  --cc-black:   #000000;
  --cc-ink-soft:#2A2A2A;
  --cc-muted:   #6B7280;
  --cc-line:    #E4E9EE;
  --cc-cream:   #F3E9D5;
  --cc-orange:    #F26C2A; /* secondary CTA (WhatsApp) — matches About/Terms */
  --cc-orange-700:#D9591C;

  background: var(--cc-oatmeal);
  color: var(--cc-black);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow-x: clip;
}

.cc-contact *,
.cc-contact *::before,
.cc-contact *::after { box-sizing: border-box; }

.cc-contact__wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Headings — force Outfit over the elementor-kit-74 Chewy rule */
.cc-contact h1,
.cc-contact h2,
.cc-contact h3,
.cc-contact h4 {
  font-family: 'Outfit', system-ui, sans-serif !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  color: var(--cc-black);
  margin: 0;
  line-height: 1.15 !important;
}

.cc-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-cyan-700);
}
.cc-contact__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cc-cyan);
  border-radius: 2px;
}

/* Shared buttons (same as about-us.css) */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 9999px;
  border: 2px solid var(--cc-black);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cc-btn--gold {
  background: var(--cc-gold);
  color: var(--cc-black);
  box-shadow: 3px 3px 0 var(--cc-black);
}
.cc-btn--gold:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--cc-black); }
.cc-btn--wa {
  background: var(--cc-orange);
  color: #fff !important;
  box-shadow: 3px 3px 0 var(--cc-black);
}
.cc-btn--wa:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--cc-black); background: var(--cc-orange-700); }
.cc-btn--outline {
  background: #fff;
  color: var(--cc-black);
}
.cc-btn--outline:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--cc-black); }

/* ───────────────────────── HERO (cyan band) ───────────────────────── */
.cc-contact-hero {
  position: relative;
  background: var(--cc-cyan);
  padding: 80px 0 128px;
  overflow: hidden;
  text-align: center;
}
.cc-contact-hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.10;
  pointer-events: none;
}
.cc-contact-hero__bubble--a { width: 300px; height: 300px; top: -110px; left: -80px; }
.cc-contact-hero__bubble--b { width: 200px; height: 200px; bottom: 10px; right: -50px; opacity: 0.08; }

.cc-contact-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cc-contact-hero__eyebrow { color: #003c47; justify-content: center; }
.cc-contact-hero__eyebrow::before { background: #003c47; }

.cc-contact-hero__title {
  font-size: clamp(38px, 5.6vw, 62px) !important;
  color: #fff !important;
  margin: 18px 0 0;
  text-shadow: 0 2px 0 rgba(0,0,0,0.08);
}
.cc-contact-hero__title em {
  font-style: normal;
  color: var(--cc-black);
}
.cc-contact-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: #013038;
  max-width: 52ch;
  margin: 20px auto 0;
  font-weight: 500;
}
.cc-contact-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

/* ───────────────── CONTACT METHOD CARDS (overlap hero) ───────────────── */
.cc-contact-methods {
  position: relative;
  margin-top: -76px;
  z-index: 5;
}
.cc-contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cc-contact-card {
  background: #fff;
  border: 2px solid var(--cc-black);
  border-radius: 20px;
  box-shadow: 4px 4px 0 var(--cc-black);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.cc-contact-card:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--cc-black); }
.cc-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cc-cyan-100);
  color: var(--cc-cyan-700);
  border: 2px solid var(--cc-black);
  margin-bottom: 16px;
}
.cc-contact-card__label {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-cyan-700);
}
.cc-contact-card__value {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cc-black);
  margin-top: 6px;
}
.cc-contact-card__value a { color: var(--cc-black); text-decoration: none; }
.cc-contact-card__value a:hover { color: var(--cc-cyan-700); }
.cc-contact-card__sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--cc-muted);
  margin-top: 6px;
}
.cc-contact-card__link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cc-cyan-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cc-contact-card__link:hover { gap: 9px; }

/* ───────────────── VISIT / MAP SECTION ───────────────── */
.cc-contact-visit {
  padding: 90px 0 84px;
}
.cc-contact-visit__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}
.cc-contact-visit__title {
  font-size: clamp(28px, 4vw, 42px) !important;
  margin: 14px 0 0;
}
.cc-contact-visit__title u {
  text-decoration: none;
  background: linear-gradient(transparent 62%, var(--cc-cyan-300) 0);
  padding: 0 2px;
}
.cc-contact-visit__intro {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--cc-ink-soft);
  margin: 18px 0 24px;
  max-width: 48ch;
}

.cc-contact-detail {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.cc-contact-detail__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--cc-cyan-100);
  color: var(--cc-cyan-700);
}
.cc-contact-detail__k {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--cc-black);
  margin-bottom: 3px;
}
.cc-contact-detail__v,
.cc-contact-detail__v a {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cc-ink-soft);
  text-decoration: none;
}
.cc-contact-detail__v a:hover { color: var(--cc-cyan-700); text-decoration: underline; }
.cc-contact-detail__v--grow { flex: 1; }
.cc-contact-hours {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--cc-ink-soft);
}
.cc-contact-hours span:last-child { font-weight: 700; color: var(--cc-black); }

/* Social row */
.cc-contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.cc-contact-social__label {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--cc-black);
  margin-right: 2px;
}
.cc-contact-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--cc-black);
  box-shadow: 3px 3px 0 var(--cc-black);
  color: var(--cc-black);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.cc-contact-social__link:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--cc-black);
  background: var(--cc-cyan);
  color: #fff;
}

/* Map frame */
.cc-contact-map {
  position: relative;
}
.cc-contact-map__frame {
  position: relative;
  border: 3px solid var(--cc-black);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--cc-black);
  overflow: hidden;
  background: #fff;
  transform: rotate(1.5deg);
}
.cc-contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.cc-contact-map__pin {
  position: absolute;
  z-index: 3;
  top: -14px;
  left: 24px;
  transform: rotate(-5deg);
  font-family: 'Chewy', 'Comic Sans MS', cursive;
  font-size: 16px;
  color: var(--cc-black);
  background: var(--cc-gold);
  border: 2px solid var(--cc-black);
  border-radius: 9999px;
  padding: 7px 15px;
  box-shadow: 3px 3px 0 var(--cc-black);
  white-space: nowrap;
}

/* ───────────────────── FINAL CTA BAND ───────────────────── */
.cc-contact-cta {
  padding: 0 32px 88px;
}
.cc-contact-cta__card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cc-cyan);
  border: 2px solid var(--cc-black);
  border-radius: 28px;
  box-shadow: 6px 6px 0 var(--cc-black);
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cc-contact-cta__card::before,
.cc-contact-cta__card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #000;
  opacity: 0.06;
  pointer-events: none;
}
.cc-contact-cta__card::before { width: 140px; height: 140px; top: -40px; right: -30px; }
.cc-contact-cta__card::after  { width: 90px;  height: 90px;  bottom: -24px; left: -20px; }
.cc-contact-cta__title {
  position: relative;
  font-size: clamp(24px, 3.6vw, 36px) !important;
  color: #fff !important;
}
.cc-contact-cta__title em { font-style: normal; color: var(--cc-black); }
.cc-contact-cta__sub {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #013038;
  font-weight: 500;
  margin: 16px auto 30px;
  max-width: 50ch;
}
.cc-contact-cta__btns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 980px) {
  .cc-contact-methods__grid { grid-template-columns: repeat(2, 1fr); }
  .cc-contact-visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .cc-contact-map__frame { transform: rotate(0); }
}

@media (max-width: 600px) {
  .cc-contact__wrap { padding: 0 20px; }
  .cc-contact-hero { padding: 56px 0 104px; }
  .cc-contact-methods { margin-top: -64px; }
  .cc-contact-methods__grid { grid-template-columns: 1fr; gap: 14px; }
  .cc-contact-visit { padding: 64px 0 60px; }
  .cc-contact-map__frame iframe { height: 320px; }
  .cc-contact-cta { padding: 0 20px 64px; }
  .cc-contact-cta__card { padding: 40px 24px; }
}
