/* ══════════════════════════════════════════════════════════
   SHIVYA FORGE — contact.css
   Theme: #ff6600 orange · dark grey · white | Font: Nunito
══════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --orange:        #ff6600;
  --orange-dark:   #e05500;
  --orange-light:  #ff8533;
  --orange-bg:     #fff4ee;
  --grey-dark:     #1a1a2e;
  --grey-mid:      #4a4a6a;
  --grey-light:    #f4f4f6;
  --grey-border:   #e0e0e8;
  --white:         #ffffff;
  --text-primary:  #1a1a2e;
  --text-body:     #4a4a6a;
  --header-h:      76px;
  --topbar-h:      38px;
  --radius:        12px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.18);
  --transition:    0.32s cubic-bezier(.4,0,.2,1);

  --sf-bg:         #0d0d0d;
  --sf-body:       #181818;
  --sf-border:     rgba(255,255,255,.07);
  --sf-orange:     #ff6600;
  --sf-muted:      rgba(255,255,255,.52);
  --sf-link:       rgba(255,255,255,.76);
  --sf-radius:     8px;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; padding: 0; margin: 0; }
p    { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.orange-text { color: var(--orange); }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1.5px solid var(--orange-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--orange); }

.req-star { color: var(--orange); }

/* ── Reveal Animations ───────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 14px rgba(255,102,0,.3);
}
.btn-cta:hover { background: var(--orange-dark); box-shadow: 0 6px 20px rgba(255,102,0,.4); }

/* ══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--grey-dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: sticky;           /* FIX: sticky so it scrolls away naturally */
  top: 0;
  z-index: 110;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              opacity   0.35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

/* FIX: class added by JS on mobile scroll to hide top bar */
.top-bar.hide-topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.top-bar__item svg { color: var(--orange); flex-shrink: 0; }
.top-bar__item a   { color: var(--orange); font-weight: 700; transition: color var(--transition); }
.top-bar__item a:hover { color: var(--orange-light); }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: var(--topbar-h);      /* FIX: sits just below top bar by default */
  z-index: 100;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  transition: box-shadow var(--transition),
              height     var(--transition),
              top        0.35s cubic-bezier(.4,0,.2,1); /* FIX: animate top */
}
.header.scrolled {
  height: 62px;
  box-shadow: 0 4px 28px rgba(0,0,0,.15);
}

/* FIX: when top bar is hidden, header snaps to top:0 */
.header.topbar-hidden {
  top: 0;
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo ── */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
  display: block;
}
.header.scrolled .logo-img { height: 42px; }

.logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.logo-fallback__main {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: .03em;
}
.logo-o { color: var(--orange); }
.logo-fallback__sub {
  font-size: .65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__link {
  display: block;
  padding: 8px 13px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--text-body);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--orange); }
.nav__link:hover::after,
.nav__link.active::after { left: 13px; right: 13px; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Nav Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.show { display: block; opacity: 1; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--grey-dark);
  padding: 90px 24px 110px;
  text-align: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(255,102,0,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(255,102,0,.10) 0%, transparent 70%);
}
.page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.03) 39px, rgba(255,255,255,.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.03) 39px, rgba(255,255,255,.03) 40px);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero__title em { font-style: normal; color: var(--orange); }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-bottom: 0;
}
.page-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  z-index: 2;
}
.page-hero__wave svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item {
  padding: 24px 16px;
  border-right: 1px solid var(--grey-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num em {
  font-style: normal;
  color: var(--orange);
}
.stat-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 90px 0 100px;
  background: var(--grey-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* ── Form Card ── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 48px 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
}
.form-card__header { margin-bottom: 36px; }
.form-card__desc {
  font-size: .95rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* ── Form Layout ── */
.quote-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--grey-light);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,102,0,.12);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 4px rgba(229,62,62,.10);
}

.field-error {
  font-size: .77rem;
  font-weight: 700;
  color: #e53e3e;
  display: none;
}
.form-group.error .field-error { display: block; }

/* ── Captcha ── */
.form-captcha {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.captcha-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--orange-bg);
  border: 2px solid var(--orange-light);
  border-radius: var(--radius);
  padding: 12px 20px;
}
#captchaQ {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  flex: 1;
}
#captchaAns {
  width: 90px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--white);
  border: 2px solid var(--orange-light);
  border-radius: 8px;
  padding: 8px 12px;
  outline: none;
  transition: border-color var(--transition);
}
#captchaAns:focus { border-color: var(--orange); }
#captchaAns::-webkit-outer-spin-button,
#captchaAns::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── Submit Button ── */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 6px 24px rgba(255,102,0,.35);
}
.btn-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 10px 30px rgba(255,102,0,.45);
  transform: translateY(-2px);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit__icon { display: flex; }

/* ── Success Message ── */
.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: #f0fff4;
  border: 2px solid #48bb78;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #276749;
}
.form-success.show { display: flex; }
.form-success svg { color: #38a169; flex-shrink: 0; }
.form-success strong { display: block; font-size: 1rem; font-weight: 800; }
.form-success p { font-size: .88rem; margin: 2px 0 0; color: #2f855a; }

/* ── Info Panel ── */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:hover {
  box-shadow: 0 8px 28px rgba(255,102,0,.14);
  transform: translateY(-3px);
}

.info-card__icon {
  width: 46px;
  height: 46px;
  background: var(--orange-bg);
  border: 2px solid rgba(255,102,0,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.info-card__body h4 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-body);
  margin-bottom: 4px;
}
.info-card__body p,
.info-card__body a,
.info-card__body span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
}
.info-card__body a:hover { color: var(--orange); }

/* ── Why Box ── */
.why-box {
  background: var(--grey-dark);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.why-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.why-box__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
}
.why-list li svg { color: var(--orange); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   MAP SECTION
══════════════════════════════════════════════════════════ */
.map-section {
  padding: 80px 0 90px;
  background: var(--white);
}
.map-header { margin-bottom: 40px; }
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
}
.map-wrapper iframe { display: block; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--sf-bg);
  color: var(--sf-link);
  font-size: .9rem;
  position: relative;
}
.footer__top-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 40%, var(--orange-light) 60%, transparent 100%);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px;
  padding-top: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--sf-border);
}

/* Brand col */
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.footer__logo-main {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .03em;
}
.footer__logo-sub {
  font-size: .6rem;
  font-weight: 700;
  color: var(--sf-orange);
  letter-spacing: .25em;
  text-transform: uppercase;
}
.footer__desc {
  font-size: .86rem;
  color: var(--sf-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer__desc strong { color: var(--white); }
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--sf-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sf-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer__social:hover {
  border-color: var(--sf-orange);
  color: var(--sf-orange);
  background: rgba(255,102,0,.08);
}

/* Heading */
.footer__heading {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sf-orange);
  display: inline-block;
}

/* Quick Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__links li::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--sf-orange);
  flex-shrink: 0;
  border-radius: 1px;
}
.footer__links a {
  font-size: .88rem;
  color: var(--sf-link);
  font-weight: 500;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--sf-orange); }

/* Contact col */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer__contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,102,0,.12);
  border-radius: var(--sf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sf-orange);
  flex-shrink: 0;
}
.footer__contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__contact-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sf-orange);
}
.footer__contact-item a,
.footer__contact-item span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--sf-link);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--sf-orange); }

/* Bottom bar */
.footer__bottom {
  background: rgba(0,0,0,.3);
  padding: 16px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .8rem;
  color: var(--sf-muted);
  flex-wrap: wrap;
}
.footer__credit { display: flex; align-items: center; gap: 4px; }
.heart { color: var(--sf-orange); font-size: 1rem; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .info-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  /* FIX: on mobile the top-bar is NOT sticky — it scrolls away normally.
     The header then sticks to top:0 via JS adding .topbar-hidden */
  .top-bar {
    position: relative;   /* overrides sticky on mobile — scrolls with page */
  }
  .header {
    position: sticky;
    top: 0;               /* always at top on mobile regardless of top bar */
  }

  /* --- Hamburger visible --- */
  .hamburger { display: flex; }

  /* --- Nav slides in from right --- */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 24px) 24px 36px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
    z-index: 150;
    transition: right var(--transition);
    overflow-y: auto;
  }
  .nav.open { right: 0; }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 24px;
  }
  .nav__list li { width: 100%; }

  .nav__link {
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-border);
    width: 100%;
  }
  .nav__link::after { display: none; }
  .nav__link:hover,
  .nav__link.active { color: var(--orange); padding-left: 8px; }

  .btn-cta { width: 100%; text-align: center; padding: 14px 22px; border-radius: 12px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--grey-border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--grey-border); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }

  .info-panel { display: flex; flex-direction: column; }
}

@media (max-width: 680px) {
  .top-bar__inner { gap: 14px; }
  .top-bar__item:nth-child(3) { display: none; }

  .form-card { padding: 28px 22px 32px; }
  .form-row { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 40px;
  }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
}

@media (max-width: 420px) {
  .page-hero { padding: 70px 16px 90px; }
  .contact-section { padding: 60px 0 70px; }
  .form-card { padding: 22px 16px 24px; }
  .stats-strip { padding: 32px 0; }
}