/* ============================================================
   GDB INTERNATIONAL SCHOOL — CONTACT PAGE STYLES
   ============================================================ */

/* ── TICKER DIAMOND ── */
.ticker-diamond {
  font-size: 0.45rem;
  vertical-align: middle;
  color: var(--green);
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}


.map-embed-container {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--rlg);
  overflow: hidden;
  border: 2px solid rgba(26,122,26,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.map-embed-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.page-hero:hover .page-hero-bg img { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,30,10,0.93) 0%, rgba(10,30,10,0.75) 55%, rgba(150,10,10,0.28) 100%);
}

/* Decorative grid lines */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: flex; justify-content: space-evenly;
}
.hero-grid-lines span {
  display: block; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0.04) 60%, transparent);
}

.page-hero-content {
  position: relative; z-index: 10;
  max-width: 1440px; width: 100%; margin: 0 auto;
  padding: 0 clamp(28px,7vw,100px);
}
.ph-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.ph-breadcrumb a { color: var(--green); transition: color 0.2s; }
.ph-breadcrumb a:hover { color: var(--green-bright); }
.ph-breadcrumb i { font-size: 0.55rem; color: rgba(255,255,255,0.25); }
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 18px;
}
.ph-title em { font-style: italic; color: var(--green); }
.ph-sub {
  font-family: var(--font-body); font-size: clamp(0.95rem,1.5vw,1.1rem);
  color: rgba(255,255,255,0.75); max-width: 560px;
  line-height: 1.75; margin-bottom: 28px;
}
.ph-tags {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.ph-tags span {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 16px; border-radius: 100px;
}
.ph-tags i { color: var(--green); }
.page-hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; color: rgba(255,255,255,0.35); font-size: 1rem;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%,100%{transform: translateX(-50%) translateY(0)}
  50%{transform: translateX(-50%) translateY(8px)}
}

/* ── SECTION TAG ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-tag i { color: var(--red); font-size: 0.7rem; }

/* ═════════════════════════════════════════════
   CONTACT CARDS
═════════════════════════════════════════════ */
.contact-cards-section {
  background: var(--black);
  padding: 0;
  border-bottom: 2px solid rgba(245,208,0,0.15);
}
.contact-cards-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.c-card {
  display: flex; align-items: center; gap: 18px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.c-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.c-card:hover::after { transform: scaleX(1); }
.c-card:last-child { border-right: none; }
.c-card:hover {
  background: rgba(255,255,255,0.04);
}
.c-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s;
}
.c-card:hover .c-card-icon { transform: scale(1.1) rotate(-5deg); }
.c-card-icon--gold  { background: rgba(245,208,0,0.15);  color: var(--yellow); }
.c-card-icon--green { background: rgba(26,122,26,0.18);  color: var(--green-bright); }
.c-card-icon--red   { background: rgba(204,17,17,0.15);  color: var(--red-light); }
.c-card-icon--dark  { background: rgba(255,255,255,0.08);color: rgba(255,255,255,0.8); }
.c-card-body { flex: 1; overflow: hidden; }
.c-card-label {
  display: block;
  font-family: var(--font-sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 4px;
}
.c-card-value {
  display: block;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.c-card-note {
  display: block;
  font-family: var(--font-body); font-size: 0.75rem;
  color: rgba(255,255,255,0.35); margin-top: 3px;
}
.c-card-arrow {
  color: rgba(255,255,255,0.2); font-size: 0.8rem; flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}
.c-card:hover .c-card-arrow { transform: translateX(4px); color: var(--green-bright); }

/* ═════════════════════════════════════════════
   MAIN CONTACT SECTION
═════════════════════════════════════════════ */
.contact-main-section {
  background: var(--off-white);
  padding: clamp(80px,9vw,130px) 0;
}
.contact-main-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(28px,5vw,80px);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 70px; align-items: start;
}

/* ── Form side ── */
.form-header { margin-bottom: 36px; }
.form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 900; color: var(--black);
  line-height: 1.1; margin-bottom: 12px;
}
.form-header h2 em { font-style: italic; color: var(--green); }
.form-intro {
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--mid-grey); line-height: 1.75;
}

/* Subject tabs */
.subject-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.stab {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--light-grey);
  border-radius: 100px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--mid-grey); background: var(--white);
  cursor: pointer; transition: all 0.25s;
}
.stab i { font-size: 0.7rem; }
.stab:hover { border-color: var(--green); color: var(--green); background: rgba(26,122,26,0.04); }
.stab.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-sans); font-size: 0.67rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--black-3);
}
.req { color: var(--red); }

.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--light-grey); font-size: 0.85rem; pointer-events: none;
  transition: color 0.25s;
}
.input-icon--textarea { top: 16px; transform: none; }
.input-wrap:focus-within .input-icon { color: var(--green); }

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%; padding: 13px 16px 13px 42px;
  border: 2px solid var(--light-grey);
  border-radius: var(--r);
  font-family: var(--font-body); font-size: 0.93rem; color: var(--black);
  background: var(--white); outline: none; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.input-wrap textarea { padding-left: 42px; min-height: 140px; }
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(26,122,26,0.09);
}
.input-wrap input.error,
.input-wrap textarea.error { border-color: var(--red); }

/* Checkbox */
.form-check-group { margin-bottom: 24px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem; color: var(--mid-grey);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  border: 2px solid var(--light-grey); border-radius: 4px;
  background: var(--white); transition: all 0.2s;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--green); border-color: var(--green);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.checkbox-label a { color: var(--green); text-decoration: underline; }

/* Submit button */
.btn-submit {
  width: 100%; padding: 16px 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  color: #fff; border: none; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(26,122,26,0.3);
  transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,122,26,0.4); }
.btn-submit:active { transform: translateY(0); }

/* Form success */
.form-success {
  margin-top: 24px;
  background: var(--off-white); border: 1.5px solid rgba(26,122,26,0.25);
  border-radius: var(--r); padding: 24px;
  text-align: center;
  animation: fadeSlideUp 0.5s ease forwards;
}
@keyframes fadeSlideUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.form-success i { font-size: 2rem; color: var(--green); display: block; margin-bottom: 10px; }
.form-success strong { font-family: var(--font-sans); font-size: 1rem; color: var(--green); display: block; margin-bottom: 6px; }
.form-success p { font-family: var(--font-body); font-size: 0.88rem; color: #555; margin: 0; }

/* ── Info panel ── */
.contact-info-panel {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 100px;
}
.info-block {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--rlg);
  padding: 28px 30px;
  transition: box-shadow 0.3s;
}
.info-block:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.07); }
.info-block-title {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-dim); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.info-block-title i { color: var(--green); }

.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; }
.il-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(26,122,26,0.09); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.85rem;
}
.il-body { flex: 1; }
.il-label {
  display: block; font-family: var(--font-sans); font-size: 0.6rem;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid-grey); margin-bottom: 2px;
}
.il-val {
  display: block; font-family: var(--font-body); font-size: 0.88rem;
  color: var(--black); line-height: 1.5; text-decoration: none;
}
a.il-val:hover { color: var(--green); }

/* Departments */
.info-block--departments {}
.dept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dept-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--off-white); border-radius: var(--r);
  padding: 12px 14px; transition: background 0.2s;
}
.dept-item:hover { background: rgba(26,122,26,0.06); }
.dept-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid rgba(26,122,26,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.85rem;
}
.dept-name {
  display: block; font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 700; color: var(--black); margin-bottom: 2px;
}
.dept-phone {
  display: block; font-family: var(--font-body); font-size: 0.78rem;
  color: var(--mid-grey); text-decoration: none; transition: color 0.2s;
}
.dept-phone:hover { color: var(--green); }

/* Social */
.info-block--social {}
.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.soc-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  border: 1.5px solid transparent;
}
.soc-btn i { font-size: 1rem; width: 16px; }
.soc-btn--fb  { background: #f0f4ff; color: #1877F2; border-color: #dce8ff; }
.soc-btn--fb:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.soc-btn--ig  { background: #fef0f7; color: #E1306C; border-color: #fcd9ec; }
.soc-btn--ig:hover  { background: #E1306C; color: #fff; border-color: #E1306C; }
.soc-btn--wa  { background: #f0faf2; color: #25D366; border-color: #c8edd0; }
.soc-btn--wa:hover  { background: #25D366; color: #fff; border-color: #25D366; }
.soc-btn--yt  { background: #fff0f0; color: #FF0000; border-color: #ffd5d5; }
.soc-btn--yt:hover  { background: #FF0000; color: #fff; border-color: #FF0000; }

/* ═════════════════════════════════════════════
   MAP SECTION
═════════════════════════════════════════════ */
.map-section {
  background: var(--white);
  padding: clamp(70px,8vw,120px) 0 0;
}
.map-header {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(28px,5vw,80px);
  text-align: center; margin-bottom: 48px;
}
.map-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 900; color: var(--black);
  line-height: 1.1; margin-bottom: 12px;
}
.map-header h2 em { font-style: italic; color: var(--green); }
.map-header p { font-family: var(--font-body); font-size: 1rem; color: var(--mid-grey); max-width: 480px; margin: 0 auto; }

.map-wrap {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(28px,5vw,80px);
  padding-bottom: clamp(70px,8vw,120px);
}
.map-placeholder {
  width: 100%; height: 460px; border-radius: var(--rlg);
  overflow: hidden; position: relative;
  border: 2px solid rgba(26,122,26,0.12);
  background: #e8ede8;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Grid background pattern */
.map-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,122,26,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,122,26,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Animated pin */
.map-pin-anim {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
}
.pin-ring {
  position: absolute;
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid rgba(26,122,26,0.4);
  animation: pingOut 2s ease-out infinite;
}
.pin-ring--2 { animation-delay: 1s; }
@keyframes pingOut {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.pin-icon {
  position: relative; z-index: 5;
  font-size: 3.5rem; color: var(--red);
  filter: drop-shadow(0 6px 16px rgba(204,17,17,0.4));
  animation: pinBounce 1.5s ease-in-out infinite;
}
@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Info overlay card */
.map-overlay-card {
  position: absolute; top: 24px; left: 24px; z-index: 10;
  background: var(--white); border-radius: var(--r);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border-left: 4px solid var(--green);
}
.moc-logo img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--green);
}
.moc-body { display: flex; flex-direction: column; gap: 2px; }
.moc-body strong { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 800; color: var(--black); }
.moc-body span { font-family: var(--font-body); font-size: 0.78rem; color: var(--mid-grey); }
.moc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--green); text-decoration: none; margin-top: 4px;
  transition: color 0.2s;
}
.moc-link:hover { color: var(--green-bright); }

.map-embed-note {
  position: absolute; bottom: 20px; right: 24px;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 6px;
}

/* ═════════════════════════════════════════════
   FAQ SECTION
═════════════════════════════════════════════ */
.faq-section {
  background: var(--off-white);
  padding: clamp(70px,8vw,120px) 0;
}
.faq-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(28px,5vw,80px);
}
.faq-header {
  text-align: center; max-width: 560px;
  margin: 0 auto 56px;
}
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 900; color: var(--black);
  line-height: 1.1; margin-bottom: 0;
}
.faq-header h2 em { font-style: italic; color: var(--red); }

.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover { border-color: rgba(26,122,26,0.2); box-shadow: 0 6px 28px rgba(0,0,0,0.06); }
.faq-item.open { border-color: var(--green); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 700;
  color: var(--black); text-align: left; cursor: pointer;
  background: transparent; border: none;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(26,122,26,0.03); }
.faq-q span { display: flex; align-items: center; gap: 10px; line-height: 1.4; }
.faq-q-icon { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }
.faq-chevron { font-size: 0.75rem; color: var(--mid-grey); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--green); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 20px; }
.faq-a p {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--mid-grey); line-height: 1.75;
  border-top: 1px solid var(--light-grey); padding-top: 16px;
}
.faq-a a { color: var(--green); text-decoration: underline; }

/* ═════════════════════════════════════════════
   CTA SECTION
═════════════════════════════════════════════ */
.contact-cta-section {
  background: linear-gradient(135deg, var(--green-dim) 0%, var(--black) 65%);
  padding: clamp(80px,9vw,130px) 0;
  position: relative; overflow: hidden;
}
.contact-cta-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,208,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-section::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,17,17,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-inner {
  max-width: 760px; margin: 0 auto;
  padding: 0 clamp(28px,5vw,80px);
  text-align: center; position: relative; z-index: 2;
}
.cta-deco {
  display: block; font-size: 4rem;
  color: rgba(245,208,0,0.12); margin-bottom: 20px;
  line-height: 1;
}
.cta-kicker {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-kicker i { color: var(--yellow); font-size: 0.65rem; }
.contact-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,4.5vw,3.6rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px;
}
.contact-cta-inner h2 em { font-style: italic; color: var(--yellow); }
.contact-cta-inner p {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(255,255,255,0.65); max-width: 500px;
  margin: 0 auto 40px; line-height: 1.8;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 100px;
  transition: all 0.3s; box-shadow: 0 6px 28px rgba(245,208,0,0.35);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(245,208,0,0.45); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.3); color: #fff;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 34px; border-radius: 100px; transition: all 0.3s;
}
.btn-cta-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ═════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .contact-cards-inner { grid-template-columns: repeat(2, 1fr); }
  .c-card:nth-child(2) { border-right: none; }
  .c-card:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .c-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
  .contact-main-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-info-panel { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-cards-inner { grid-template-columns: 1fr; }
  .c-card { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.07); }
  .c-card:first-child { border-top: none; }
  .form-row { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .social-row { grid-template-columns: 1fr 1fr; }
  .map-placeholder { height: 320px; }
}
@media (max-width: 480px) {
  .subject-tabs { gap: 6px; }
  .stab { padding: 8px 12px; font-size: 0.65rem; }
  .social-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-outline { text-align: center; justify-content: center; }
}

