/* ============================================================
   contact-page.css — SciencePreneur Website
   Styles for the Contact page sections:
   Hero accent span, Floating Cards, Contact Form + Sidebar,
   Map Section, Alternative Contact Methods, Bottom CTA.
   ============================================================ */

/* ── WhatsApp brand colors (local only) ─────────────────────── */
:root {
  --whatsapp-dark:  #075E54;
  --whatsapp-green: #25D366;
}

/* ══════════════════════════════════════════════════════════════
   1. HERO — accent span inside h1
   ══════════════════════════════════════════════════════════════ */
.page-hero .hero-accent {
  color: var(--accent-400);
}

/* ══════════════════════════════════════════════════════════════
   2. FLOATING QUICK CONTACT CARDS
   ══════════════════════════════════════════════════════════════ */
.contact-cards-wrap {
  margin-top: -36px;
  position: relative;
  z-index: 10;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Top color bar */
.contact-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.contact-card-bar--1 { background: linear-gradient(90deg, var(--primary-600), rgba(27,79,114,0.4)); }
.contact-card-bar--2 { background: linear-gradient(90deg, var(--accent-600),  rgba(26,158,143,0.4)); }
.contact-card-bar--3 { background: linear-gradient(90deg, var(--primary-500), rgba(27,107,147,0.4)); }
.contact-card-bar--4 { background: linear-gradient(90deg, var(--accent-500),  rgba(46,196,182,0.4)); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}

.contact-card-icon--1 { background: rgba(27,79,114,0.08);  border: 1px solid rgba(27,79,114,0.1); }
.contact-card-icon--2 { background: rgba(26,158,143,0.08); border: 1px solid rgba(26,158,143,0.1); }
.contact-card-icon--3 { background: rgba(27,107,147,0.08); border: 1px solid rgba(27,107,147,0.1); }
.contact-card-icon--4 { background: rgba(46,196,182,0.08); border: 1px solid rgba(46,196,182,0.1); }

.contact-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-900);
  margin-bottom: 2px;
}

.contact-card-sub {
  font-size: 11px;
  color: var(--neutral-400);
}

/* ══════════════════════════════════════════════════════════════
   3. MAIN CONTACT FORM + SIDEBAR
   ══════════════════════════════════════════════════════════════ */
.contact-main {
  padding: 64px 0 80px;
  background: var(--neutral-50);
}

.contact-main-grid {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

/* ── FORM COLUMN ────────────────────────────────────────────── */
.contact-form-col {
  flex: 1 1 62%;
}

.contact-form-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-500);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-col h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--primary-900);
  margin: 0 0 8px;
}

.contact-form-intro {
  font-size: 14px;
  color: var(--neutral-500);
  margin: 0 0 28px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}

/* Step labels */
.contact-step-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 12px;
}

.contact-step-label .required {
  color: #DC2626;
}

/* Divider between steps */
.contact-form-divider {
  height: 1px;
  background: var(--neutral-100);
  margin: 8px 0 24px;
  border: none;
}

/* ── INQUIRY TYPE (styled radio buttons) ───────────────────── */
.inquiry-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

/* Hide native radio */
.inquiry-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.inquiry-label {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--neutral-200);
  cursor: pointer;
  transition: all 0.2s ease;
}

.inquiry-label:hover {
  border-color: var(--accent-300);
  background: rgba(46,196,182,0.02);
}

/* Active state when radio is checked */
.inquiry-radio:checked + .inquiry-label {
  border-color: var(--accent-500);
  background: rgba(46,196,182,0.04);
}

.inquiry-radio:checked + .inquiry-label .inquiry-title {
  color: var(--accent-600);
}

.inquiry-radio:checked + .inquiry-label .inquiry-indicator::after {
  opacity: 1;
  transform: scale(1);
}

.inquiry-radio:checked + .inquiry-label .inquiry-indicator {
  border-color: var(--accent-500);
}

/* Custom radio indicator */
.inquiry-indicator {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  border: 2px solid var(--neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.inquiry-indicator::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--accent-500);
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.2s ease;
}

.inquiry-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.inquiry-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-800);
  display: block;
  transition: color 0.2s ease;
}

.inquiry-desc {
  font-size: 12px;
  color: var(--neutral-400);
  margin-top: 1px;
  display: block;
}

/* ── FORM FIELDS ────────────────────────────────────────────── */
.contact-fields-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.contact-fields-row {
  display: flex;
  gap: 16px;
}

.contact-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--neutral-300);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent-500);
  background: rgba(46,196,182,0.03);
}

.contact-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.8;
}

/* ── SUBMIT BUTTON ──────────────────────────────────────────── */
.contact-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46,196,182,0.3);
  transition: all 0.2s ease;
}

.contact-submit-btn:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,196,182,0.35);
}

.contact-form-note {
  font-size: 11px;
  color: var(--neutral-400);
  text-align: center;
  margin: 10px 0 0;
}

/* ── SIDEBAR COLUMN ─────────────────────────────────────────── */
.contact-sidebar-col {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sidebar: Quick Links (dark card) */
.sidebar-quicklinks {
  background: linear-gradient(165deg, var(--primary-800), var(--primary-600));
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--white);
}

.sidebar-quicklinks h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 18px;
  color: var(--white);
}

.sidebar-quicklinks-intro {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  line-height: 1.6;
}

.sidebar-quicklink-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sidebar-quicklink-item:last-child {
  margin-bottom: 0;
}

.sidebar-quicklink-item:hover {
  background: rgba(255,255,255,0.1);
}

.sidebar-quicklink-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sidebar-quicklink-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.sidebar-quicklink-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  display: block;
}

.sidebar-quicklink-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
}

/* Sidebar: Social Media */
.sidebar-social {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}

.sidebar-social h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-800);
  margin: 0 0 14px;
}

.sidebar-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.social-item:hover {
  border-color: var(--neutral-200);
  background: var(--neutral-100);
}

.social-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.social-item-icon--li  { background: rgba(27,79,114,0.1);  border: 1px solid rgba(27,79,114,0.15);  color: var(--primary-600); }
.social-item-icon--x   { background: rgba(15,36,64,0.1);   border: 1px solid rgba(15,36,64,0.15);   color: var(--primary-800); }
.social-item-icon--yt  { background: rgba(220,38,38,0.1);  border: 1px solid rgba(220,38,38,0.15);  color: #DC2626; }
.social-item-icon--rg  { background: rgba(26,158,143,0.1); border: 1px solid rgba(26,158,143,0.15); color: var(--accent-600); }

.social-item-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-800);
  display: block;
}

.social-item-handle {
  font-size: 10px;
  color: var(--neutral-400);
  display: block;
}

/* Sidebar: Response Time */
.sidebar-response {
  background: var(--accent-100);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--accent-200);
}

.sidebar-response-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sidebar-response-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.sidebar-response-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-600);
  margin-bottom: 4px;
  display: block;
}

.sidebar-response-text {
  font-size: 13px;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.6;
}

/* Sidebar: FAQ Teaser */
.sidebar-faq {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}

.sidebar-faq h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-800);
  margin: 0 0 12px;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-100);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item:hover .faq-question {
  color: var(--primary-600);
}

.faq-question {
  font-size: 13px;
  color: var(--neutral-600);
  transition: color 0.2s ease;
}

.faq-arrow {
  font-size: 12px;
  color: var(--accent-500);
  font-weight: 600;
  flex-shrink: 0;
  margin-left: 8px;
}

/* ══════════════════════════════════════════════════════════════
   4. MAP SECTION
   ══════════════════════════════════════════════════════════════ */
.contact-map {
  padding: 0 0 80px;
  background: var(--neutral-50);
}

.contact-map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}

/* Map placeholder (replace with <iframe> when ready) */
.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Grid lines */
.map-grid-h,
.map-grid-v {
  position: absolute;
  background: rgba(168,218,240,0.3);
  pointer-events: none;
}

.map-grid-h { left: 0; right: 0; height: 1px; }
.map-grid-v { top: 0; bottom: 0; width: 1px; }

.map-grid-h:nth-child(1)  { top: 0%; }
.map-grid-h:nth-child(2)  { top: 20%; }
.map-grid-h:nth-child(3)  { top: 40%; }
.map-grid-h:nth-child(4)  { top: 60%; }
.map-grid-h:nth-child(5)  { top: 80%; }
.map-grid-h:nth-child(6)  { top: 100%; }
.map-grid-v:nth-child(7)  { left: 0%; }
.map-grid-v:nth-child(8)  { left: 14%; }
.map-grid-v:nth-child(9)  { left: 28%; }
.map-grid-v:nth-child(10) { left: 42%; }
.map-grid-v:nth-child(11) { left: 56%; }
.map-grid-v:nth-child(12) { left: 70%; }
.map-grid-v:nth-child(13) { left: 84%; }

/* Map pin */
.map-pin-wrap {
  position: relative;
  z-index: 2;
}

.map-pin-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--accent-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(46,196,182,0.4);
  border: 3px solid var(--white);
}

.map-pin-label {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  text-align: center;
}

.map-pin-label-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-800);
  display: block;
}

.map-pin-label-sub {
  font-size: 10px;
  color: var(--neutral-400);
  display: block;
}

/* Map embed note */
.map-embed-note {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  color: var(--neutral-500);
}

/* Map bottom info bar */
.map-info-bar {
  background: var(--white);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.map-info-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.map-info-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--neutral-600);
}

.map-info-item span:first-child {
  font-size: 14px;
}

.map-social-icons {
  display: flex;
  gap: 8px;
}

.map-social-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--neutral-500);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.map-social-icon:hover {
  background: var(--neutral-100);
  border-color: var(--neutral-300);
  color: var(--primary-700);
}

/* ══════════════════════════════════════════════════════════════
   5. ALTERNATIVE CONTACT METHODS
   ══════════════════════════════════════════════════════════════ */
.contact-alt {
  padding: 64px 0;
  background: var(--white);
}

.contact-alt-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-alt-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-500);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-alt-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary-900);
  margin: 0;
}

.contact-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-alt-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-alt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-alt-card-header {
  padding: 28px 24px;
  text-align: center;
}

.contact-alt-card-header--email    { background: linear-gradient(135deg, var(--primary-800), var(--primary-500)); }
.contact-alt-card-header--whatsapp { background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp-green)); }
.contact-alt-card-header--meeting  { background: linear-gradient(135deg, var(--primary-800), var(--accent-600)); }

.contact-alt-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
}

.contact-alt-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  display: block;
}

.contact-alt-card-body {
  background: var(--white);
  padding: 24px;
  text-align: center;
}

.contact-alt-desc {
  font-size: 14px;
  color: var(--neutral-500);
  margin: 0 0 10px;
  line-height: 1.6;
}

.contact-alt-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 16px;
  display: block;
}

.contact-alt-btn {
  padding: 11px 24px;
  background: var(--accent-500);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(46,196,182,0.25);
  transition: all 0.2s ease;
}

.contact-alt-btn:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   6. BOTTOM CTA
   ══════════════════════════════════════════════════════════════ */
.contact-cta {
  padding: 72px 0;
  background: linear-gradient(165deg, var(--primary-900), var(--primary-700));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,182,0.05), transparent);
  pointer-events: none;
}

.contact-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.contact-cta-quote-mark {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--accent-300);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.contact-cta h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.4;
}

.contact-cta h2 .accent {
  color: var(--accent-400);
}

.contact-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 28px;
}

.contact-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.contact-cta-btn-primary {
  padding: 14px 28px;
  background: var(--accent-500);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(46,196,182,0.4);
  transition: all 0.25s ease;
}

.contact-cta-btn-primary:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  color: var(--white);
}

.contact-cta-btn-secondary {
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.contact-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE: TABLET (≤ 992px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {

  /* Quick cards: 2×2 */
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Form + sidebar: stack */
  .contact-main-grid {
    flex-direction: column;
  }

  .contact-sidebar-col {
    flex: none;
    width: 100%;
  }

  /* Map info bar: stack */
  .map-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Alt contact: 1 col */
  .contact-alt-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   2b. PHOTO BANNER — meeting photo between cards and form
   ══════════════════════════════════════════════════════════════ */

.contact-photo-banner {
  padding: 0 0 64px;
  background: var(--white);
}

.contact-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-photo-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Dark gradient overlay at bottom */
.contact-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(4, 26, 48, 0.72) 100%
  );
  pointer-events: none;
}

/* Caption inside photo */
.contact-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.contact-photo-caption-text {
  color: var(--white);
}

.contact-photo-caption-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.3;
}

.contact-photo-caption-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.contact-photo-caption-badge {
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  text-align: center;
  white-space: nowrap;
}

.contact-photo-caption-badge span:first-child {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent-300);
  line-height: 1;
}

.contact-photo-caption-badge span:last-child {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .contact-photo-img {
    height: 280px;
  }

  .contact-photo-caption {
    padding: 20px 24px;
  }

  .contact-photo-caption-text h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact-photo-img {
    height: 220px;
    object-position: center 40%;
  }

  .contact-photo-caption {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .contact-photo-caption-badge {
    display: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE: MOBILE (≤ 576px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {

  .contact-cards-wrap {
    margin-top: -20px;
  }

  /* Quick cards: 1 col */
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-main {
    padding: 40px 0 60px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-fields-row {
    flex-direction: column;
    gap: 14px;
  }

  .contact-form-col h2 {
    font-size: 24px;
  }

  .map-info-items {
    flex-direction: column;
    gap: 10px;
  }

  .contact-alt-header h2 {
    font-size: 22px;
  }

  .contact-cta h2 {
    font-size: 22px;
  }

  .contact-cta-btn-primary,
  .contact-cta-btn-secondary {
    width: 100%;
    text-align: center;
  }
}
