/* ===================================
   NLP CONSULTING — Design System
   =================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --navy-950: #001324;
  --blue-900: #04283f;
  --blue-700: #0b4a6f;
  --blue-600: #136795;
  --blue-500: #1c86be;
  --blue-400: #3fa9d9;
  --amber: #f0a73c;
  --white: #ffffff;
  --off-white: #f5f9fc;
  --gray-light: #e7eef5;
  --gray-mid: #6b7a8d;
  --gray-dark: #1b2530;

  --gradient-hero: linear-gradient(
    135deg,
    #001324 0%,
    #04283f 45%,
    #0b4a6f 100%
  );
  --gradient-brand: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  --gradient-brand-h: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  --gradient-amber: linear-gradient(135deg, var(--amber), #f7c873);

  --font-sans: "Plus Jakarta Sans", sans-serif;
  --font-display: "Outfit", sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-med: 0.55s var(--ease-out-expo);
  --transition-slow: 0.9s var(--ease-out-expo);

  --shadow-elegant: 0 20px 45px -15px rgba(0, 19, 36, 0.35);
  --shadow-card: 0 10px 30px -10px rgba(11, 74, 111, 0.18);
  --glow-blue: 0 0 40px rgba(28, 134, 190, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--blue-600);
  border-radius: 3px;
}

/* ══════════════════════════════
   LAYOUT HELPERS
══════════════════════════════ */
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
  position: relative;
}
.section-tight {
  padding: 4rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient-brand);
}

/* ══════════════════════════════
   TYPOGRAPHY
══════════════════════════════ */
h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
}

.display-xl {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.display-lg {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.display-md {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-display);
}
.body-lg {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray-mid);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary,
.btn-ghost,
.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(19, 103, 149, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(19, 103, 149, 0.65);
}

.btn-amber {
  background: var(--gradient-amber);
  color: var(--navy-950);
  box-shadow: 0 12px 30px -10px rgba(240, 167, 60, 0.55);
}
.btn-amber:hover {
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost.on-light {
  color: var(--blue-700);
  border-color: rgba(11, 74, 111, 0.3);
}
.btn-ghost.on-light:hover {
  background: rgba(11, 74, 111, 0.06);
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.1rem 0;
  transition: var(--transition-fast);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(0, 19, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.15rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-brand-h);
  transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px -8px rgba(19, 103, 149, 0.6);
  transition: var(--transition-fast);
}
.nav-cta:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: var(--transition-med);
}
#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.mobile-menu-link.active,
.mobile-menu-link:hover {
  color: var(--white);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-orb-1 {
  width: 420px;
  height: 420px;
  background: var(--blue-500);
  top: -120px;
  right: -80px;
  animation: float-slow 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px;
  height: 320px;
  background: var(--amber);
  opacity: 0.18;
  bottom: -100px;
  left: -60px;
  animation: float-slow 11s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 260px;
  height: 260px;
  background: var(--blue-400);
  opacity: 0.35;
  top: 40%;
  left: 45%;
  animation: float-slow 13s ease-in-out infinite;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(25px, -30px) scale(1.08);
  }
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}
@media (min-width: 992px) {
  .hero-split-inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 6rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero-slogan {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.3rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 3rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero card deck (carousel) */
.hero-split-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.card-deck {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
}
.deck-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.6s var(--ease-out-expo),
    opacity 0.6s var(--ease-out-expo);
}
.deck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deck-nav-btn {
  position: absolute;
  z-index: 20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(7, 14, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}
.deck-nav-btn:hover {
  background: var(--blue-600);
}
.deck-prev {
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.deck-next {
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.deck-dots {
  display: flex;
  gap: 0.5rem;
}
.deck-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.deck-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}
.delay-4 {
  transition-delay: 0.48s;
}

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 640px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition-med);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -18px rgba(11, 74, 111, 0.3);
  border-color: var(--blue-400);
}
.service-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.service-card:hover .service-card-media img {
  transform: scale(1.08);
}
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 19, 36, 0) 40%,
    rgba(0, 19, 36, 0.75) 100%
  );
}
.service-card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 10px 24px -8px rgba(19, 103, 149, 0.55);
}
.service-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
}
.service-card-body p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.tag-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 103, 149, 0.1);
  color: var(--blue-600);
}
.service-card-price {
  font-weight: 700;
  color: var(--blue-600);
  font-size: 0.95rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--blue-600);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}
.service-card-link svg {
  transition: transform 0.3s;
}
.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* Project cards */
.project-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition-med);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-400);
  box-shadow: 0 26px 50px -18px rgba(11, 74, 111, 0.28);
}
.project-card-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.project-card:hover .project-card-media img {
  transform: scale(1.06);
}
.project-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.project-card-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1rem;
}
.project-card h3 {
  font-size: 1.25rem;
  color: var(--navy-950);
}
.project-card p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}
.project-card.featured {
  background: var(--gradient-hero);
  border: none;
}
.project-card.featured .project-card-body {
  gap: 0.8rem;
}
.project-card.featured h3,
.project-card.featured .project-card-tagline {
  color: var(--white);
}
.project-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

/* Event / activity cards */
.event-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition-med);
}
.event-card:hover {
  transform: translateY(-6px);
}
.event-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.event-card:hover img {
  transform: scale(1.06);
}
.event-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(0, 19, 36, 0.92));
  color: var(--white);
}
.event-card-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.event-card-caption p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Glass utility */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════
   STATS / VALUES STRIP
══════════════════════════════ */
.strip-dark {
  background: var(--gradient-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.value-item {
  text-align: center;
  padding: 1.5rem;
}
.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  border-radius: 28px;
  background: var(--gradient-hero);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(63, 169, 217, 0.35),
      transparent 55%
    ),
    radial-gradient(circle at 85% 80%, rgba(240, 167, 60, 0.2), transparent 50%);
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.footer-logo img {
  height: 38px;
}
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-col a:hover {
  color: var(--blue-400);
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-social-btn:hover {
  background: var(--gradient-brand);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ══════════════════════════════
   FORMS
══════════════════════════════ */
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-dark);
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(28, 134, 190, 0.14);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.form-msg {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.form-msg.success {
  background: rgba(29, 185, 84, 0.12);
  color: #12833f;
  border: 1px solid rgba(29, 185, 84, 0.3);
}
.form-msg.error {
  background: rgba(220, 53, 69, 0.1);
  color: #c0293a;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

/* Contact info cards */
.contact-info-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-card);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ══════════════════════════════
   SECTION HEADER (inner pages)
══════════════════════════════ */
.page-hero {
  background: var(--gradient-hero);
  padding: 9.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero .hero-orb {
  opacity: 0.4;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}
.breadcrumb a:hover {
  color: var(--white);
}

/* Process steps */
.process-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .process-track {
    grid-template-columns: repeat(6, 1fr);
  }
}
.process-step {
  text-align: center;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--blue-400);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.process-step h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 0.3rem;
}
.process-step p {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* Utilities */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-1 {
  margin-top: 0.6rem;
}
.mt-2 {
  margin-top: 1.2rem;
}
.mt-3 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.6rem;
}
.mb-2 {
  margin-bottom: 1.2rem;
}
.mb-3 {
  margin-bottom: 2rem;
}
.mb-4 {
  margin-bottom: 3rem;
}
.max-w-sm {
  max-width: 620px;
}
.bg-off-white {
  background: var(--off-white);
}
