/* ─── CONTACT PAGE ──────────────────────────────── */

/* ── HERO BANNER — contained box on light background ── */
.contact-banner-section {
  background: #f3f5fb;
  padding-top: calc(80px + 36px); /* fixed nav height + breathing room */
  padding-bottom: 52px;
}
/* Breadcrumb above the banner */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--c-muted);
}
.contact-breadcrumb a { color: var(--c-muted); text-decoration: none; transition: color .2s; }
.contact-breadcrumb a:hover { color: var(--c-primary); }
.contact-breadcrumb span:last-child { color: var(--c-ink); }

/* The boxed, rounded slider */
.c-banner-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(22,56,131,.18), 0 2px 8px rgba(0,0,0,.06);
}

/* Body text inside each slide */
.c-hero-body {
  position: relative; z-index: 2;
  padding: clamp(20px,5vw,56px);
  padding-bottom: clamp(32px,6vh,56px);
}
.c-hero-body h1 {
  font-family: var(--font);
  font-size: clamp(2rem,4.6vw,3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0;
}

.c-slide {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.c-slide--1 {
  background-image: linear-gradient(135deg, rgba(11,30,78,.82) 0%, rgba(22,56,131,.72) 45%, rgba(26,63,154,.72) 75%, rgba(13,36,96,.82) 100%), url("../../../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
}
.c-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,.06) 0%, transparent 65%);
  pointer-events: none;
}
.c-slide-sub {
  color: rgba(255,255,255,.65);
  font-size: var(--tx-base);
  margin-top: 12px;
  max-width: 420px;
  line-height: 1.55;
}

/* ── CONTACT CATEGORIES (Bootstrap row handles columns) ── */
.contact-cats-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 28px;
}
/* Each category item — Bootstrap col provides width */
.contact-cat-item {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.contact-cat-item p {
  font-size: var(--tx-sm);
  color: var(--c-ink);
  margin-bottom: 5px;
  line-height: 1.4;
}
.contact-cat-item a {
  color: var(--c-primary);
  font-size: var(--tx-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.contact-cat-item a:hover { color: var(--c-accent-h); text-decoration: underline; }

/* ── CONTENT SPLIT — Bootstrap col-lg-6 provides columns ── */
.c-left {
  background: #fff;
  border-right: 1px solid rgba(22,56,131,.1);
  padding: clamp(40px,6vw,80px) clamp(20px,4vw,52px) clamp(40px,6vw,80px) clamp(20px,5vw,68px);
  min-height: 520px;
}
.c-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.c-left h2 {
  font-family: var(--font);
  font-size: clamp(1.4rem,2.2vw,2rem);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.12;
  letter-spacing: -.4px;
  margin-bottom: 14px;
  max-width: 450px;
}
.c-left > p {
  font-size: var(--tx-sm);
  color: var(--c-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Info items — Bootstrap col-6 provides the 2-col layout */
.c-info-item h6 {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-faint); margin-bottom: 7px;
}
.c-info-item p   { font-size: var(--tx-sm); color: var(--c-ink); line-height: 1.55; margin: 0; }
.c-info-item a   { font-size: var(--tx-sm); color: var(--c-ink); display: block; line-height: 1.55; transition: color .2s; }
.c-info-item a:hover { color: var(--c-primary); }
.c-social-row    { display: flex; gap: 7px; margin-top: 5px; }
.c-social-row a  {
  width: 29px; height: 29px; border-radius: 50%;
  border: 1.5px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink2); font-size: 12px;
  transition: all .2s;
}
.c-social-row a:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.c-right {
  background: #f3f5fb;
  padding: clamp(48px,6vw,80px) clamp(20px,5vw,64px);
  min-height: 520px;
}
.c-deco {
  position: absolute;
  top: -28px;
  right: clamp(28px,5vw,52px);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  z-index: 4;
}

/* ── FORM CARD ────────────────────────────────────── */
.c-form-card {
 
  border-radius: 14px;
  padding: clamp(26px,3vw,40px) clamp(22px,2.5vw,36px);
  max-width: 460px;
 
}
.c-form-card h4 {
  font-family: var(--font);
  font-size: var(--tx-xl); font-weight: 700;
  color: var(--c-ink); letter-spacing: -.2px;
  margin-bottom: 5px;
}
.c-form-card > p { font-size: var(--tx-sm); color: var(--c-muted); line-height: 1.5; margin-bottom: 26px; }
.cf-group { margin-bottom: 18px; }
.cf-input {
  width: 100%;
  background: none;
  border: none; border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  padding: 9px 0;
  font-family: var(--font); font-size: var(--tx-sm);
  color: var(--c-ink); outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.cf-input:focus         { border-color: var(--c-primary); }
.cf-input::placeholder  { color: var(--c-faint); }
textarea.cf-input       { resize: none; min-height: 70px; line-height: 1.6; display: block; }
.cf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary); color: #fff;
  font-family: var(--font); font-size: var(--tx-sm); font-weight: 600;
  padding: 12px 24px; border-radius: var(--r-pill); border: none;
  cursor: pointer; transition: background .2s, transform .15s;
  margin-top: 6px;
}
.cf-btn:hover    { background: var(--c-accent-h); transform: translateY(-1px); }
.cf-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.cf-msg         { margin-top: 12px; padding: 10px 14px; border-radius: 8px; font-size: var(--tx-sm); font-weight: 600; display: none; }
.cf-msg.success { display: block; background: rgba(22,56,131,.07); color: var(--c-primary); border: 1px solid rgba(22,56,131,.14); }
.cf-msg.error   { display: block; background: rgba(220,38,38,.06); color: #b91c1c; border: 1px solid rgba(220,38,38,.14); }

/* ── MAP ───────────────────────────────────────────── */
.c-map        { width: 100%; height: 400px; background: #dde3f0; overflow: hidden; position: relative; }
.c-map iframe { width: 100%; height: 100%; border: none; display: block; }
.c-map-ph     { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.c-map-ph i   { font-size: 2.5rem; color: var(--c-primary); }
.c-map-ph h5  { font-size: var(--tx-base); color: var(--c-ink); margin: 0; }
.c-map-ph p   { font-size: var(--tx-sm); color: var(--c-muted); margin: 0; }

/* ── RESPONSIVE ─────────────────────────────────────── */
/* Bootstrap handles col stacking at lg breakpoint (992px).
   Only custom overrides needed below that. */
@media (max-width: 991px) {
  .c-left  { border-right: none; border-bottom: 1px solid rgba(22,56,131,.1); }
  .c-deco  { display: none; }
}
@media (max-width: 640px) {
  .contact-banner-section { padding-top: calc(70px + 24px); padding-bottom: 36px; }
  .c-banner-slider        { border-radius: 14px; }
  .c-slide                { min-height: 280px; }
  .c-hero-body h1         { letter-spacing: -1.5px; }
  .c-form-card            { padding: 22px 16px; }
  .c-map                  { height: 280px; }
}
