/* ==============================
   QUANTDATA — DESIGN SYSTEM
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Colors */
  --navy: #152d5b;
  --navy-light: #1c3a72;
  --navy-dark: #0d1e3d;
  --data-blue: #63B3D1;
  --accent: #3a4fa8;
  --accent-light: #4c62c1;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #F1F3F7;
  --gray-200: #E2E7F0;
  --gray-300: #C8D0DF;
  --gray-400: #9AA3B4;
  --gray-500: #6B7589;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --gray-800: #1A202C;
  --gray-900: #0F1621;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 31, 68, 0.14);
  --shadow-xl: 0 40px 96px rgba(10, 31, 68, 0.20);
}

/* ==============================
   RESET & BASE
   ============================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul {
  list-style: none;
}

/* ==============================
   TYPOGRAPHY
   ============================== */

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.3;
}

.heading-md {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

.body-md {
  font-size: 1rem;
  line-height: 1.75;
}

.caption {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==============================
   LAYOUT
   ============================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-padding);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--navy-light {
  background: var(--navy-light);
  color: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section--accent {
  background: var(--accent);
  color: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* ==============================
   NAVBAR
   ============================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: all 0.4s var(--ease-smooth);
  height: 76px;
  display: flex;
  align-items: center;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(21, 45, 91, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
  height: 68px;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo-img {
  height: 28px;
  width: auto;
  transition: transform 0.3s var(--ease-smooth);
}

.navbar.scrolled .navbar__logo-img {
  height: 24px;
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.05);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.navbar__logo-text .plus {
  color: var(--data-blue);
  font-size: 1.2rem;
  margin: 0 1px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-smooth);
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--data-blue);
  transition: width 0.3s var(--ease-smooth);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: 100%;
}

.navbar__cta {
  background: var(--data-blue);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  transition: background 0.3s var(--ease-smooth), transform 0.2s var(--ease-smooth) !important;
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  background: #7dcbe8 !important;
  transform: translateY(-1px) !important;
}

/* Mobile hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
  transition: opacity 0.3s;
}

.navbar__hamburger:hover {
  opacity: 0.8;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

/* Make middle line slightly shorter for a more premium feel */
.navbar__hamburger span:nth-child(2) {
  width: 18px;
  align-self: flex-end;
}

.navbar__hamburger:hover span {
  background: var(--data-blue);
  width: 24px;
}

/* ==============================
   HERO
   ============================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #162d5b 0%, #0d1e3d 100%);
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/High-tech city network overlay.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: var(--data-blue);
  top: -200px;
  right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-light);
  bottom: -100px;
  left: 10%;
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--data-blue);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 12s ease-in-out infinite;
  opacity: 0.08;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 40px) scale(1.05);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(25px, -35px) scale(1.08);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* Plus grid pattern */
.hero__plus-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__plus {
  position: absolute;
  color: rgba(99, 179, 209, 0.12);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  animation: plusFade 4s ease-in-out infinite;
  user-select: none;
}

@keyframes plusFade {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Grid dots */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99, 179, 209, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--data-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--data-blue);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.82rem, 3.15vw, 2.94rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.4s forwards;
}

.hero__headline .highlight {
  color: var(--data-blue);
  position: relative;
}

.hero__subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.6s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.8s forwards;
}

.hero__visual {
  position: relative;
  opacity: 0;
  animation: fadeRight 1s var(--ease-smooth) 0.5s forwards;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__3d-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: #ffffff;
  border: none;
}


.hero__3d-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--data-blue) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.15;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hero__stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(99, 179, 209, 0.4);
  transform: translateY(-4px);
}

.hero__stat-card--accent {
  background: rgba(99, 179, 209, 0.15);
  border-color: rgba(99, 179, 209, 0.3);
  grid-column: 1 / -1;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--data-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--data-blue);
  color: var(--navy);
  border-color: var(--data-blue);
}

.btn-primary:hover {
  background: #7dcbe8;
  border-color: #7dcbe8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 179, 209, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.25);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}

.btn-outline-navy:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ==============================
   SECTION HEADERS
   ============================== */

.section-header {
  margin-bottom: 72px;
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--data-blue);
}

.section-eyebrow--light {
  color: var(--data-blue);
}

.section-eyebrow--light::before {
  background: var(--data-blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 600px;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

/* ==============================
   HOW WE HELP
   ============================== */

.help-section {
  position: relative;
  overflow: hidden;
}

.help-section::before {
  content: '+';
  position: absolute;
  right: -40px;
  top: 40px;
  font-size: 300px;
  font-weight: 800;
  color: rgba(10, 31, 68, 0.03);
  line-height: 1;
  pointer-events: none;
}

.help-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.help-text p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 24px;
}

.help-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.help-pillar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.help-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--data-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-smooth);
}

.help-pillar:hover {
  border-color: var(--data-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.help-pillar:hover::before {
  transform: scaleY(1);
}

.help-pillar__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
}

.help-pillar__icon svg {
  width: 22px;
  height: 22px;
}

.help-pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.help-pillar p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ==============================
   WHO WE SERVE
   ============================== */

.serve-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.serve-bg-plus {
  position: absolute;
  color: rgba(99, 179, 209, 0.06);
  font-size: 200px;
  font-weight: 800;
  pointer-events: none;
  line-height: 1;
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.serve-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 52px 44px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.serve-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 179, 209, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.serve-card:hover {
  background: var(--white);
  border-color: var(--data-blue);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.serve-card:hover::after {
  opacity: 1;
}

.serve-card__type {
  display: inline-block;
  background: rgba(99, 179, 209, 0.15);
  color: var(--data-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.2;
}

.serve-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.serve-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

.serve-card ul li::before {
  content: '+';
  color: var(--data-blue);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ==============================
   OUR APPROACH
   ============================== */

.approach-section {
  background: var(--gray-50);
  position: relative;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-text p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 32px;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease-smooth);
}

.approach-step:hover {
  border-color: var(--data-blue);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.approach-step__num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.approach-step__body h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}

.approach-step__body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ==============================
   WHAT WE STAND FOR
   ============================== */

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s var(--ease-bounce);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--data-blue), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-smooth);
}

.value-card:hover {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  transition: transform 0.35s var(--ease-bounce);
}

.value-card:hover .value-card__icon {
  transform: rotate(10deg) scale(1.1);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ==============================
   CTA SECTION
   ============================== */

.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--accent));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99, 179, 209, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-plus-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   ABOUT PAGE
   ============================== */

.page-hero {
  background: var(--navy-dark);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 30, 61, 0.8) 0%, rgba(21, 45, 91, 0.7) 60%, rgba(30, 58, 108, 0.8) 100%);
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99, 179, 209, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
}

.page-hero__content {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==============================
   PHOTO SECTIONS
   ============================== */

/* Side-by-side image + text layout */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.photo-split--reverse {
  direction: rtl;
}

.photo-split--reverse > * {
  direction: ltr;
}

.photo-split__img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
}

.photo-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.photo-split__img:hover img {
  transform: scale(1.03);
}

.photo-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(99,179,209,0.2);
  pointer-events: none;
}

/* Full-bleed image section with overlay */
.photo-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 30, 61, 0.75) 0%, rgba(22, 45, 89, 0.65) 100%);
}

.photo-banner__content {
  position: relative;
  z-index: 1;
}

/* Image card with caption badge */
.img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.img-card:hover img {
  transform: scale(1.04);
}

.img-card__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,31,68,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99,179,209,0.3);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .photo-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .photo-split--reverse {
    direction: ltr;
  }
}

/* About differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease-smooth);
}

.diff-item:hover {
  border-color: var(--data-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.diff-item__plus {
  color: var(--data-blue);
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.2;
}

.diff-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 500;
}

/* Values list (about page) */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.35s var(--ease-smooth);
}

.value-item:hover {
  background: rgba(99, 179, 209, 0.12);
  border-color: rgba(99, 179, 209, 0.3);
  transform: translateX(8px);
}

.value-item__dot {
  width: 8px;
  height: 8px;
  background: var(--data-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==============================
   SERVICES PAGE
   ============================== */

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  transition: all 0.4s var(--ease-smooth);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
  transform: translateY(-4px);
}

.service-card__left {
  background: linear-gradient(135deg, var(--navy), var(--accent));
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card__left::after {
  content: '+';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.service-card__icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--data-blue);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
}

.service-card__left h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-top: auto;
}

.service-card__right {
  padding: 52px 52px;
}

.service-card__right p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.service-point::before {
  content: '+';
  color: var(--data-blue);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ==============================
   SERVICES CTA GRID
   ============================== */

.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==============================
   CONTACT PAGE
   ============================== */

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 44px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  background: var(--white);
}

.contact-action:hover {
  border-color: var(--data-blue);
  background: var(--gray-50);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-action__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-action__icon svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '+';
  position: absolute;
  right: -30px;
  top: -20px;
  font-size: 200px;
  font-weight: 800;
  color: rgba(10, 31, 68, 0.025);
  line-height: 1;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: all 0.3s var(--ease-smooth);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--data-blue);
  box-shadow: 0 0 0 4px rgba(99, 179, 209, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  max-width: 280px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer__logo-text .plus {
  color: var(--data-blue);
}

.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease-smooth);
}

.footer__col ul li a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 0.82rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.35);
  min-height: unset;
}

.footer__bottom .plus-divider {
  display: flex;
  gap: 8px;
  margin: 0;
  color: rgba(99, 179, 209, 0.4);
  font-size: 0.7rem;
}

/* ==============================
   DIVIDERS
   ============================== */

.plus-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 60px 0;
  color: var(--gray-300);
}

.plus-divider::before,
.plus-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.plus-divider--dark::before,
.plus-divider--dark::after {
  background: rgba(255, 255, 255, 0.08);
}

.plus-divider span {
  font-size: 1.2rem;
  color: var(--data-blue);
  font-weight: 700;
}

/* ==============================
   ANIMATIONS
   ============================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ==============================
   STATS BAR
   ============================== */

.stats-bar {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-bar__item {
  text-align: center;
  padding: 20px 40px;
  border-right: 1px solid var(--gray-200);
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--data-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-bar__label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* ==============================
   PARTNER/TRUST LOGOS STRIP
   ============================== */

.trust-strip {
  padding: 50px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-strip__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-300);
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease-smooth);
}

.trust-logo:hover {
  color: var(--gray-500);
}

/* ==============================
   PAGE TRANSITIONS
   ============================== */

.page-transition {
  animation: fadeIn 0.5s var(--ease-smooth);
}

/* ==============================
   MOBILE MENU
   ============================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
  padding: 0 20px;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s var(--ease-smooth);
}

.mobile-menu a:hover {
  color: var(--data-blue);
}

.mobile-menu__close {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.2rem;
  line-height: 1;
  background: none;
  border: none;
  transition: color 0.3s;
  padding: 10px;
  margin-right: -10px;
}

.mobile-menu__close:hover {
  color: var(--white);
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__left {
    padding: 40px;
  }

  .service-card__right {
    padding: 40px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__visual {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .help-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .approach-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .help-pillars {
    grid-template-columns: 1fr;
  }

  .stats-bar__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .services-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px 0;
  }

  .footer__bottom .plus-divider {
    display: none;
  }

  .trust-strip__logos {
    gap: 32px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .serve-card {
    padding: 36px 28px;
  }
}

/* ==============================
   MISC UTILITIES
   ============================== */

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-data-blue {
  color: var(--data-blue);
}

.text-navy {
  color: var(--navy);
}

.text-gray {
  color: var(--gray-500);
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-gap-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tooltip for nav active state */
.nav-active {
  color: var(--white) !important;
}

.nav-active::after {
  width: 100% !important;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-smooth) 1.5s both;
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Number counter animation */
.counter-animated {
  display: inline-block;
}

/* ==============================
   MODAL / POPUP
   ============================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth) !important;
}

.modal--open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.85);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  background: var(--white);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: 20px;
  padding: 40px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px);
  transition: transform 0.4s var(--ease-bounce) !important;
  z-index: 10;
}

.modal--open .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 11;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  color: var(--navy);
}

/* Form refinement for modal */
.modal .contact-form-wrapper {
  margin-top: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}

.modal .contact-form-wrapper::before {
  display: none;
}

@media (max-width: 600px) {
  .modal__content {
    padding: 30px 20px;
    width: 95%;
  }
}

/* ==============================
   NAVBAR REFINEMENT (Desktop)
   ============================== */
@media (min-width: 993px) {
  .navbar__nav {
    gap: 32px; /* Slightly reduced gap to fit more items */
  }
}