/* ============================================================
   CONTACT US PAGE — Fresh Light Theme
   Brand: #fe9402, #fd5f24, #f53548, #cd3576
   ============================================================ */

/* Prevent any element from causing horizontal scroll */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --c-orange: #fe9402;
  --c-orange2: #fd5f24;
  --c-red: #f53548;
  --c-purple: #cd3576;

  --grad-main: linear-gradient(135deg, #fe9402 0%, #fd5f24 30%, #f53548 65%, #cd3576 100%);
  --grad-soft: linear-gradient(135deg, rgba(254, 148, 2, .07) 0%, rgba(253, 95, 36, .07) 40%, rgba(245, 53, 72, .06) 70%, rgba(205, 53, 118, .06) 100%);

  --bg-page: #f7f8fc;
  --bg-white: #ffffff;
  --bg-light: #f0f2f8;

  --text-dark: #0f1c38;
  --text-mid: #3d4f6e;
  --text-soft: #6b7a99;

  --border-light: rgba(0, 0, 0, .08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .09);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);

  /* Variables from about-team.css for header & footer compatibility */
  --gs-orange: #fe9402;
  --gs-orange2: #fd5f24;
  --gs-red: #f53548;
  --gs-purple: #cd3576;
  --gs-navy: #0A1628;
  --gs-navy2: #0f1e38;
  --gs-white: #ffffff;
  --gs-gray: #f4f6fb;
  --gs-text: #1e293b;
  --gs-muted: #64748b;
  --gs-grad: linear-gradient(135deg, #fe9402 0%, #fd5f24 33%, #f53548 66%, #cd3576 100%);
  --gs-grad-r: linear-gradient(to right, #fe9402, #fd5f24, #f53548, #cd3576);
  --gs-grad-soft: linear-gradient(135deg, rgba(254, 148, 2, .08) 0%, rgba(253, 95, 36, .07) 40%, rgba(245, 53, 72, .06) 70%, rgba(205, 53, 118, .06) 100%);
  --gs-shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
  --gs-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  --gs-shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --gs-radius: 16px;
  --gs-radius-lg: 24px;
  --gs-trans: .3s ease;
}

/* ============================================================
   CONTACT HERO — Matches Assist AI Hero Background
   ============================================================ */
.contact-hero {
  position: relative;
  min-height: 420px;
  background: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
  border-bottom: 1px solid rgba(254, 148, 2, .12);
  box-sizing: border-box;
  max-width: 100%;
}

/* Dot-grid overlay — identical to Assist AI (60px, orange tint) */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254, 148, 2, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 148, 2, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Remove old radial-gradient mesh (was ::after) */
.contact-hero::after {
  content: none;
}

/* Aurora blobs — same as Assist AI: opacity .18, blur 90px */
.contact-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  will-change: transform;
  transition: transform 1.5s cubic-bezier(.25, .46, .45, .94);
}

.aurora-blob--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, #fe9402 0%, transparent 70%);
}

.aurora-blob--2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  right: -50px;
  background: radial-gradient(circle, #f53548 0%, transparent 70%);
}

.aurora-blob--3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, #cd3576 0%, transparent 70%);
  opacity: .25;
}

/* Particle canvas — same as Assist AI */
.contact-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1.5px solid rgba(254, 148, 2, .3);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
  background-color: rgba(254, 148, 2, .05);
}

.contact-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-hero__title span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero__sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.75;
}

.contact-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-soft);
}

.contact-hero .breadcrumb a {
  color: var(--c-orange2);
  text-decoration: none;
}

.contact-hero .breadcrumb a:hover {
  opacity: .75;
}

.contact-hero .breadcrumb i {
  font-size: .6rem;
  color: var(--text-soft);
}

/* ============================================================
   CONTACT STRIP — Info Cards
   ============================================================ */
.contact-strip {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}

.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid transparent;
  border-image: var(--grad-main) 1;
}

.strip-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 28px;
  border-right: 1px solid var(--border-light);
  transition: background .25s;
}

.strip-card:last-child {
  border-right: none;
}

.strip-card:hover {
  background: var(--bg-page);
}

.strip-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.strip-card--1 .strip-card__icon {
  background: rgba(254, 148, 2, .12);
  color: var(--c-orange);
}

.strip-card--2 .strip-card__icon {
  background: rgba(253, 95, 36, .12);
  color: var(--c-orange2);
}

.strip-card--3 .strip-card__icon {
  background: rgba(245, 53, 72, .12);
  color: var(--c-red);
}

.strip-card--4 .strip-card__icon {
  background: rgba(205, 53, 118, .12);
  color: var(--c-purple);
}

.strip-card__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 5px;
}

.strip-card__value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.strip-card__value a {
  color: var(--text-dark);
  text-decoration: none;
}

.strip-card__value a:hover {
  color: var(--c-orange2);
}

/* ============================================================
   MAIN CONTACT SECTION
   ============================================================ */
.contact-main {
  background: var(--bg-page);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  /* Prevent pseudo-element glow from causing horizontal scroll */
}

.contact-main::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 148, 2, .05) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Left Info Panel ---------- */
.contact-info-panel .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1.5px solid rgba(254, 148, 2, .28);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  background-color: rgba(254, 148, 2, .05);
}

.contact-info-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info-panel h2 span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-panel>p {
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 36px;
  font-size: .97rem;
}

/* Info items */
.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.info-item:hover {
  border-color: rgba(254, 148, 2, .35);
  transform: translateX(5px);
  box-shadow: 0 6px 22px rgba(254, 148, 2, .1);
}

.info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(245, 53, 72, .2);
}

.info-item__title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-orange2);
  margin-bottom: 4px;
}

.info-item__val {
  font-size: .91rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.55;
}

.info-item__val a {
  color: var(--text-dark);
  text-decoration: none;
}

.info-item__val a:hover {
  color: var(--c-orange2);
}

/* Social links */
.contact-socials {
  display: flex;
  gap: 10px;
}

.contact-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}

.contact-social-link:hover {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 53, 72, .28);
}

/* ---------- Right: Contact Form Card ---------- */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 50px 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Top gradient accent bar */
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-main);
  border-radius: 28px 28px 0 0;
}

/* Subtle corner glow */
.contact-form-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 148, 2, .07) 0%, transparent 70%);
  pointer-events: none;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.65;
}

/* AI badge */
.form-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.form-ai-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-main);
  animation: pulseDot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.6);
  }
}

/* Form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row--full {
  grid-template-columns: 1fr;
}

/* Floating label groups */
.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 16px 8px;
  color: var(--text-dark);
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: .93rem;
  transition: border-color .3s, box-shadow .3s, background .3s;
  outline: none;
  box-sizing: border-box;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(254, 148, 2, .12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: .88rem;
  color: var(--text-soft);
  pointer-events: none;
  transition: all .22s ease;
  transform-origin: left top;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label {
  top: 5px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-orange2);
}



.form-group select option {
  background: #fff;
  color: var(--text-dark);
}

/* Submit button */
.btn-contact-submit {
  width: 100%;
  padding: 17px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  letter-spacing: .02em;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(245, 53, 72, .35);
}

.btn-contact-submit:active {
  transform: translateY(0);
}

.btn-contact-submit .btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  animation: shimmer 2.5s ease infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(245, 53, 72, .3);
  animation: popIn .5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-mid);
  font-size: .9rem;
}

.form-success__countdown {
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-soft);
}

.form-success__countdown strong {
  color: var(--c-orange2);
  font-weight: 700;
}

/* Error banner */
.form-error {
  background: rgba(245, 53, 72, .08);
  border: 1.5px solid rgba(245, 53, 72, .35);
  color: #c0203a;
  font-size: .88rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Field highlight on validation error */
.form-group input.field-error,
.form-group textarea.field-error {
  border-color: var(--c-red) !important;
  box-shadow: 0 0 0 3px rgba(245, 53, 72, .12);
}

/* ============================================================
   WHY CHOOSE US — Feature Cards
   ============================================================ */
.contact-features {
  background: var(--bg-white);
  padding: 90px 0;
}

.contact-features .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1.5px solid rgba(254, 148, 2, .28);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  background-color: rgba(254, 148, 2, .05);
}

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

.cf-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: 22px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.cf-card:hover {
  border-color: rgba(254, 148, 2, .3);
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .1);
}

/* top accent line on hover */
.cf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  border-radius: 22px 22px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.cf-card:hover::before {
  transform: scaleX(1);
}

.cf-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 53, 72, .22);
}

.cf-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cf-card p {
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.contact-map {
  background: var(--bg-page);
}

.map-header {
  text-align: center;
  padding: 70px 0 40px;
}

.map-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1.5px solid rgba(254, 148, 2, .28);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  background-color: rgba(254, 148, 2, .05);
}

.map-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.map-header p {
  color: var(--text-mid);
  font-size: .95rem;
}

.map-embed-wrap {
  position: relative;
  border-top: 3px solid transparent;
  border-image: var(--grad-main) 1;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, .06);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 430px;
  border: none;
  display: block;
  opacity: .95;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(245, 53, 72, .35);
  white-space: nowrap;
  z-index: 10;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .contact-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-card:nth-child(2) {
    border-right: none;
  }

  .strip-card:nth-child(3),
  .strip-card:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }

  .strip-card:nth-child(4) {
    border-right: none;
  }

  .contact-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 900px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 36px 28px;
  }

  /* Scale down blobs so they don't overflow on tablets */
  .aurora-blob--1 {
    width: 350px;
    height: 350px;
  }

  .aurora-blob--2 {
    width: 280px;
    height: 280px;
  }

  .aurora-blob--3 {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 680px) {
  .contact-strip__grid {
    grid-template-columns: 1fr;
  }

  .strip-card {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .strip-card:last-child {
    border-bottom: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-features__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  /* Further reduce blobs on small phones */
  .aurora-blob--1 {
    width: 220px;
    height: 220px;
    top: -80px;
    left: -60px;
  }

  .aurora-blob--2 {
    width: 180px;
    height: 180px;
    top: -50px;
  }

  .aurora-blob--3 {
    width: 160px;
    height: 160px;
    bottom: -60px;
  }
}


@media (max-width: 640px) {
  .contact-features__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 100px 0 60px;
  }

  .map-overlay-badge {
    font-size: .7rem;
    padding: 7px 14px;
  }
}


/* ============================================================
   HEADER — AI Enhancement (from about-team.css)
   ============================================================ */
.site-header {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254, 148, 2, .12);
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08), 0 1px 0 rgba(254, 148, 2, .15);
}

/* Animated grid lines in header bg */
.header__bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.header__grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(254, 148, 2, .08), transparent);
  animation: hline-pulse 3s ease-in-out infinite;
}

.header__grid-line--1 {
  left: 25%;
  animation-delay: 0s;
}

.header__grid-line--2 {
  left: 50%;
  animation-delay: .8s;
}

.header__grid-line--3 {
  left: 75%;
  animation-delay: 1.6s;
}

@keyframes hline-pulse {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.header__inner {
  position: relative;
  z-index: 1;
}

/* Logo glow */
.logo__wrapper {
  position: relative;
  display: inline-flex;
}

.logo__glow {
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: var(--gs-grad);
  opacity: 0;
  filter: blur(10px);
  transition: .3s;
}

.logo:hover .logo__glow {
  opacity: .18;
}

/* Nav link gradient underline */
.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gs-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}

.nav__item.active>.nav__link::after,
.nav__link:hover::after {
  transform: scaleX(1);
}

/* Nav button gradient */
.btn--nav {
  background: var(--gs-grad) !important;
  box-shadow: 0 4px 18px rgba(245, 53, 72, .35) !important;
  border-radius: 50px !important;
  gap: 7px;
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 53, 72, .45) !important;
}

/* Dropdown premium */
.dropdown {
  border: 1px solid rgba(254, 148, 2, .15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .13), 0 0 0 1px rgba(254, 148, 2, .08);
  border-radius: 18px;
}

.dropdown__link:hover {
  background: var(--gs-grad-soft);
  color: var(--gs-orange);
}

.dropdown__link i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FOOTER — AI Enhancement (from about-team.css)
   ============================================================ */
.footer {
  background: var(--gs-navy);
  position: relative;
  overflow: hidden;
}

.footer__top-bar {
  height: 3px;
  width: 100%;
  background: var(--gs-grad);
}

.footer__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
}

.footer__main {
  position: relative;
  z-index: 1;
  padding: 64px 0 44px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer__heading-accent {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--gs-grad);
  flex-shrink: 0;
}

/* Tech pills */
.footer__tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  transition: var(--gs-trans);
}

.tech-pill i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-pill:hover {
  background: rgba(254, 148, 2, .12);
  border-color: rgba(254, 148, 2, .4);
  color: #fff;
}

/* Contact icon */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.footer__contact-icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .85rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, .6);
  transition: var(--gs-trans);
}

.footer__contact a:hover {
  color: var(--gs-orange);
}

/* Social links gradient hover */
.footer__social-link {
  transition: var(--gs-trans);
}

.footer__social-link:hover {
  background: var(--gs-grad);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(245, 53, 72, .4);
}

/* Footer links hover */
.footer__links a:hover {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__links a i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--gs-trans);
}

.footer__bottom-links a:hover {
  color: var(--gs-orange);
}

/* ============================================================
   FOOTER RESPONSIVE — matches careers.css breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }
}