/* ═══════════════════════════════════════════════
   StepAheadXcellence — style.css
   ═══════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:       #0f4c91;
  --blue-mid:   #1a6fd4;
  --blue-light: #3b8df0;
  --accent:     #00c9a7;
  --bg:         #f8faff;
  --surface:    #ffffff;
  --surface2:   #f0f4ff;
  --text:       #111827;
  --text-mid:   #374151;
  --text-muted: #6b7280;
  --border:     #e5e9f5;
  --shadow:     0 4px 24px rgba(15, 76, 145, 0.10);
  --shadow-lg:  0 12px 48px rgba(15, 76, 145, 0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }


/* ═══════════════════════════════════════════════
   PAGE SWITCHING
   ═══════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(15, 76, 145, 0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800;
  color: var(--blue); text-decoration: none;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}

.logo-img{
  height: 50px;
  width: auto;
  margin-right: 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid); padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; cursor: pointer;
}
.nav-links a:hover,
.nav-links a.current { color: var(--blue); background: var(--surface2); }
.nav-links .nav-cta {
  background: var(--blue); color: #fff !important; font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 76, 145, 0.3);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 32px 24px; z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: 8px;
  text-decoration: none; color: var(--text-mid); font-weight: 500;
  transition: all 0.2s; cursor: pointer;
}
.mobile-menu a:hover { background: var(--surface2); color: var(--blue); }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 32px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a3a7a 0%, #0f4c91 45%, #1a6fd4 100%);
}
.hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.blob-1 { width: 600px; height: 600px; background: #3b8df0; top: -100px; right: -100px; opacity: 0.22; }
.blob-2 { width: 400px; height: 400px; background: #00c9a7; bottom: -50px; left: -80px; opacity: 0.22; }
.blob-3 { width: 300px; height: 300px; background: #ff6b35; bottom: 100px; right: 200px; opacity: 0.10; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.hero-tag-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s ease infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}
.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-bottom: 34px; max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hstat-num {
  font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent);
}
.hstat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* Hero floating cards */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-cards-stack { position: relative; width: 320px; height: 360px; }
.hcard {
  position: absolute;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 16px;
  padding: 22px; color: #fff;
}
.hcard-1 { bottom: 0; left: 0; width: 255px; animation: float1 4s ease-in-out infinite; }
.hcard-2 { top: 0; right: 0; width: 230px; animation: float2 5s ease-in-out infinite; }
.hcard-3 {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 190px; animation: float3 4.5s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes float3 {
  0%,100% { transform: translate(-50%, -50%); }
  50%     { transform: translate(-50%, calc(-50% - 8px)); }
}
.hcard-icon { font-size: 1.7rem; margin-bottom: 8px; }
.hcard-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
.hcard-sub { font-size: 0.72rem; opacity: 0.65; }


/* ═══════════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════════ */
section { padding: 88px 32px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-mid); background: var(--surface2);
  border: 1px solid rgba(26, 111, 212, 0.15);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue-light); border-radius: 50%; display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800;
  color: var(--text); line-height: 1.2; margin-bottom: 14px;
}
.section-title span { color: var(--blue-mid); }
.section-sub { font-size: 0.97rem; color: var(--text-muted); max-width: 530px; line-height: 1.78; }
.section-header { margin-bottom: 52px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Shared buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.25s;
}
.btn-primary { background: var(--accent); color: #0a3a7a; }
.btn-primary:hover { background: #00b894; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,167,0.4); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }


/* ═══════════════════════════════════════════════
   WHY CHOOSE STEPAHEAD
   ═══════════════════════════════════════════════ */
.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(26,111,212,0.2); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(15, 76, 145, 0.22);
}
.why-card h3 { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 9px; }
.why-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.72; }


/* ═══════════════════════════════════════════════
   OUR SERVICES
   ═══════════════════════════════════════════════ */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: all 0.3s; display: flex; flex-direction: column; gap: 14px;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(26,111,212,0.22); }
.service-header { display: flex; align-items: center; gap: 14px; }
.service-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; flex-shrink: 0;
}
.si-blue   { background: linear-gradient(135deg, #e8f1ff, #c5d9ff); }
.si-teal   { background: linear-gradient(135deg, #e0faf5, #b3f0e4); }
.si-orange { background: linear-gradient(135deg, #fff3ed, #ffd6c2); }
.si-purple { background: linear-gradient(135deg, #f0ebff, #d9caff); }
.si-green  { background: linear-gradient(135deg, #e8f8ec, #c2eacb); }
.si-indigo { background: linear-gradient(135deg, #ebeeff, #c8cdff); }
.service-card h3 { font-weight: 700; font-size: 1rem; color: var(--text); }
.service-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }
.service-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  color: var(--blue-mid); background: var(--surface2);
  border: 1px solid rgba(26,111,212,0.15);
  padding: 4px 12px; border-radius: 100px;
  align-self: flex-start; margin-top: auto;
}


/* ═══════════════════════════════════════════════
   OUR CLIENTS
   ═══════════════════════════════════════════════ */
.clients-section { background: var(--surface); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.client-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 111, 212, 0.22);
}
.client-card:hover::before { transform: scaleX(1); }

.client-logo-wrap {
  width: 160px; height: 100px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.client-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.client-card:hover .client-img { filter: grayscale(0%); }

/* Placeholder shown when image fails or isn't yet set */
.client-placeholder {
  display: none;               /* shown via onerror JS */
  flex-direction: column;
  align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: var(--surface2);
  border: 2px dashed var(--border);
  border-radius: 12px;
  gap: 8px;
}
.client-placeholder-icon { font-size: 2rem; opacity: 0.45; }
.client-placeholder-text {
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-info { border-top: 1px solid var(--border); padding-top: 18px; }
.client-name {
  font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 4px;
}
.client-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Trust badge strip */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-mid);
}
.trust-icon { font-size: 1rem; }
.trust-divider {
  width: 1px; height: 24px; background: var(--border);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   CONTACT CTA BANNER
   ═══════════════════════════════════════════════ */
.contact-cta {
  background: linear-gradient(135deg, #0a3a7a, #1a6fd4);
  padding: 88px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-cta .container { position: relative; z-index: 2; }
.contact-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.contact-cta p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 490px; margin: 0 auto 32px; line-height: 1.78; }


/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.page-top-pad { padding-top: 70px; }

.page-hero {
  background: linear-gradient(135deg, #0a3a7a, #1a6fd4);
  padding: 80px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff;
}
.page-hero .section-label::before { background: var(--accent); }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800;
  color: #fff; margin: 14px 0;
}
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.78; }

.contact-body { padding: 80px 32px; background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; max-width: 1040px; margin: 0 auto; align-items: start;
}

/* Contact info sidebar */
.cinfo-block h3 {
  font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: var(--text); margin-bottom: 24px;
}
.cinfo-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.cinfo-icon {
  width: 42px; height: 42px; background: var(--surface2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--border);
}
.cinfo-label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
}
.cinfo-val { font-size: 0.88rem; color: var(--text); font-weight: 500; word-break: break-all; }

/* Form card */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px 40px; box-shadow: var(--shadow-lg);
}
.form-card-title {
  font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--text); margin-bottom: 4px;
}
.form-card-sub { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 28px; }
.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; }

label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.03em; }

input, select, textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.1);
  background: #fff;
}
textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%; padding: 14px; margin-top: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; border: none; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,76,145,0.32); }

.form-note { font-size: 0.74rem; color: var(--text-muted); margin-top: 12px; text-align: center; line-height: 1.6; }

/* Form success state */
.form-success-msg { display: none; text-align: center; padding: 48px 24px; }
.form-success-msg .check { font-size: 3.5rem; margin-bottom: 16px; }
.form-success-msg h3 {
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.form-success-msg p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer { background: #0a1628; padding: 60px 32px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; margin-bottom: 44px;
}
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.78; max-width: 280px; }
.footer-col h4 {
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  text-decoration: none; font-size: 0.86rem; color: rgba(255,255,255,0.52);
  transition: color 0.2s; cursor: pointer;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }


/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 48px; }
  .trust-strip { flex-direction: column; gap: 14px; }
  .trust-divider { width: 40px; height: 1px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-card { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  section, .contact-body, .contact-cta, .page-hero { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 24px; }
}
