/* ═══════════════════════════════
   CONTACT PAGE
═══════════════════════════════ */
.grc-contact-page {
  --p: #1B6CA8;
  --a: #2FBCD3;
  --dark: #1a1a2e;
}

/* ── Reset Astra containers ── */
#main.site-main,
#primary,
.ast-article-single,
.entry-content,
.site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.gc {
  font-family: 'Poppins', sans-serif;
}

/* ══ HERO ══
   Single column now that the 3 stat cards (address/email/phone) have been
   removed — they duplicated the contact rows shown just below in the body. */
.gc-hero {
  position: relative;
  background: var(--dark);
  padding: 140px 48px 90px;
  overflow: hidden;
}

.gc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(27,108,168,.4) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 90%, rgba(47,188,211,.15) 0%, transparent 50%);
  pointer-events: none;
}

.gc-hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.gc-hero__inner {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto 0 0;
}

.gc-hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,188,211,.15);
  border: 1px solid rgba(47,188,211,.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--a); margin-bottom: 20px;
}

.gc-hero__pill span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--a); animation: gc-blink 1.8s ease-in-out infinite;
}

@keyframes gc-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .3; transform: scale(.6); }
}

.gc-hero__h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; margin: 0 0 18px;
  letter-spacing: -.02em;
}

.gc-hero__h1 em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--a);
  color: transparent;
}

.gc-hero__sub {
  font-size: .95rem; font-weight: 300;
  color: rgba(255,255,255,.6);
  max-width: 480px; line-height: 1.8;
}

.gc-hero__bar {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--p), var(--a));
}

/* ══ BODY ══ */
.gc-body {
  background: #f4f7fb;
  padding: 96px 48px;
}

.gc-body__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px; align-items: start;
}

/* ── LEFT ── */
.gc-left { display: flex; flex-direction: column; gap: 14px; }

.gc-left__eyebrow {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--a);
}

.gc-left__title {
  font-size: 1.8rem; font-weight: 800;
  color: var(--dark); line-height: 1.2;
  margin: 0 0 4px;
}

.gc-left__title em { font-style: normal; color: var(--p); }

.gc-left__intro {
  font-size: .875rem; font-weight: 300;
  color: #5a6478; line-height: 1.8; margin: 0 0 6px;
}

/* contact rows */
.gc-row {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid #e4eaf3;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.gc-row:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 32px rgba(27,108,168,.11);
  border-color: #b8d4ec;
}

.gc-row__icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--p), var(--a));
  display: flex; align-items: center; justify-content: center;
}

.gc-row__icon svg {
  width: 19px; height: 19px;
  stroke: #fff; fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

.gc-row__tag {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: #9aa0b4; margin-bottom: 3px;
}

.gc-row__val {
  font-size: .875rem; font-weight: 600;
  color: var(--dark); line-height: 1.45;
}

/* socials */
.gc-socs { display: flex; gap: 10px; }

.gc-soc {
  width: 46px; height: 46px; border-radius: 12px;
  background: #fff; border: 1px solid #e4eaf3;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .22s, border-color .22s, transform .2s, box-shadow .22s;
}

.gc-soc:hover {
  background: var(--p); border-color: var(--p);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(27,108,168,.28);
}

.gc-soc svg { width: 18px; height: 18px; fill: #8a94aa; transition: fill .22s; }
.gc-soc:hover svg { fill: #fff; }

/* ── RIGHT: MAP ── */
.gc-map {
  position: relative; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,46,.14);
  min-height: 540px;
}

.gc-map iframe {
  display: block; width: 100%; height: 100%;
  min-height: 540px; border: none;
}

/* responsive */
@media (max-width: 1020px) {
  .gc-body__inner { grid-template-columns: 1fr; }
  .gc-map { min-height: 380px; }
  .gc-map iframe { min-height: 380px; }
}

@media (max-width: 720px) {
  .gc-hero { padding: 120px 24px 56px; }
  .gc-body { padding: 60px 20px; }
}
