/* =============================================
   DNT COMPLIANCE — STATIC SITE GLOBAL STYLES
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ---- CSS Variables (Light Mode Only) ---- */
:root {
  /* Common */
  --blue: #2563EB;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --success: #10B981;
  --navy: #0D1B3E;
  --navy-dark: #050811;
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.5s var(--ease-apple);

  /* Light Theme — Permanent */
  --bg-dark: #FFFFFF;
  --bg-light: #F1F5F9;
  --text-primary: #0F172A;
  --text-muted: #475569;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --glass: #FFFFFF;
  --glass-border: #E2E8F0;
  --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --card-hover: 0 10px 30px rgba(15, 23, 42, 0.12);

  /* Theme-aware backgrounds */
  --bg-surface: #FFFFFF;
  --bg-accent: #F8FAFC;

  /* Form specific */
  --form-bg: #FFFFFF;
  --form-text: #0F172A;
  --form-border: #CBD5E1;

  /* Card specific colors */
  --card-title: #2563EB;
  --card-text: #1E293B;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
.font-display {
  font-family: 'Playfair Display', serif;
}

.font-heading {
  font-family: 'Outfit', sans-serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ---- Colors utility ---- */
.text-navy {
  color: var(--navy);
}

.text-blue {
  color: var(--blue);
}

.text-gold {
  color: var(--gold);
}

.text-success {
  color: var(--success);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: var(--white);
}

.bg-navy {
  background-color: #0D1B3E !important;
}

.bg-blue {
  background-color: var(--blue);
}

.bg-gold {
  background-color: var(--gold);
}

.bg-light {
  background-color: var(--bg-accent) !important;
}

.bg-white {
  background-color: var(--bg-surface) !important;
}

.bg-success {
  background-color: var(--success);
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.05s linear;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background-color: var(--bg-accent);
  color: var(--text-primary);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section h1,
.cta-section h2,
.cta-section h3 {
  color: var(--text-primary);
  transition: color 0.5s var(--ease-apple);
}

.cta-section p {
  color: var(--text-muted);
  transition: color 0.5s var(--ease-apple);
}

.cta-section .btn-outline {
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}

.cta-section .btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-accent);
}

.cta-section .btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
}

/* ---- Logo Strip ---- */
.logo-strip {
  padding: 4rem 0;
  transition: background 0.3s;
}

.logo-strip {
  background: #F1F5F9;
}

.logo-strip img {
  filter: none;
  transition: filter 0.3s;
  opacity: 0.6;
}

.logo-strip img {
  filter: brightness(0);
  opacity: 0.5;
}

/* ---- Stats Row ---- */
.stats-row {
  border-bottom: 1px solid transparent;
  padding: 2rem 0;
}

.stats-row {
  border-bottom: 1px solid #E2E8F0;
}

.stat-num {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.5rem;
}

.stat-text {
  color: var(--text-primary);
  font-size: .9rem;
}

.stat-text {
  color: #0F172A;
}

/* =============================================
   NAVIGATION
   ============================================= */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .4s var(--ease-apple);
  background: transparent;
}

#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(25px) saturate(200%);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-gradient-text {
  background: linear-gradient(90deg, #3b82f6, #22d3ee, #60a5fa, #3b82f6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 12s linear infinite;
  /* Slowed down from 5s */
  display: inline-block;
  padding-bottom: 0.1em;
  /* Extra space for descenders like 'gy' */
}

@keyframes heroShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Initial state: White */
  transition: all 0.4s ease;
}

#main-nav.scrolled .nav-logo-icon img {
  filter: brightness(0);
  /* Scrolled state: Black */
}

.nav-logo-icon:hover {
  transform: scale(1.05);
}

/* ---- Accordion (FAQ) ---- */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid #E2E8F0;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color .3s;
}

.accordion-trigger {
  color: #0F172A;
  font-weight: 600;
}

.accordion-trigger:hover {
  color: var(--gold);
}

.accordion-icon {
  color: var(--gold);
  transition: transform .4s var(--ease-apple);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: all .4s var(--ease-apple);
  opacity: 0;
}

.accordion-body.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
  opacity: 1;
}

.accordion-copy {
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion-copy {
  color: #475569;
}

.nav-logo-text {
  display: block;
}

.nav-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  transition: all .4s ease;
  color: #FFFFFF !important;
  /* Force White at top */
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  50% {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6), 0 0 40px rgba(59, 130, 246, 0.3);
  }
}

.nav-logo-sub {
  font-size: .75rem;
  display: block;
  opacity: .7;
  transition: all .4s ease;
  color: #FFFFFF !important;
  /* Force White at top */
}

#main-nav.scrolled .nav-logo-name,
#main-nav.scrolled .nav-logo-sub {
  color: #0F172A !important;
  animation: none;
  text-shadow: none;
}

#main-nav.light-page .nav-logo-name,
#main-nav.light-page .nav-logo-sub {
  color: #0F172A !important;
  text-shadow: none;
}

#main-nav.light-page .nav-logo-icon img {
  filter: brightness(0);
  /* Black on light pages */
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s, background .2s;
  cursor: pointer;
}

#main-nav:not(.scrolled) .nav-link {
  color: #FFFFFF;
}

#main-nav:not(.scrolled) .nav-link:hover {
  color: var(--gold);
}

#main-nav.scrolled .nav-link,
#main-nav.light-page .nav-link {
  color: #0F172A;
}

#main-nav.scrolled .nav-link:hover,
#main-nav.light-page .nav-link:hover {
  color: #2563EB;
}

.nav-link.active {
  color: #FFFFFF !important;
}

#main-nav.scrolled .nav-link.active {
  color: #2563EB !important;
}

.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-wrap.pinned .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-services-btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: color .2s;
}

#main-nav:not(.scrolled) .nav-services-btn {
  color: #FFFFFF;
}

#main-nav.scrolled .nav-services-btn,
#main-nav.light-page .nav-services-btn {
  color: #0F172A;
}

#main-nav:not(.scrolled) .nav-services-btn:hover {
  color: var(--gold);
}

#main-nav.scrolled .nav-services-btn:hover,
#main-nav.light-page .nav-services-btn:hover {
  color: #2563EB;
}

.nav-services-wrap:hover .nav-services-btn svg,
.nav-services-wrap.pinned .nav-services-btn svg {
  transform: rotate(180deg);
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 800px;
  transform: translateX(-50%) translateY(15px);
  background: rgba(5, 8, 17, 0.95);
  backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  padding: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-apple);
  pointer-events: none;
  overflow: hidden;
}

.nav-services-wrap:hover .services-dropdown,
.nav-services-wrap.pinned .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.services-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* =============================================
   FLIP CARDS (Expertise)
   ============================================= */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 380px;
  perspective: 2000px;
  cursor: pointer;
}

.flip-card:hover {
  transform: scale(1.02);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
}

.flip-card-front {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px) saturate(180%);
  color: #0F172A !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

/* Shine Sweep Effect */
.flip-card-front::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 55%,
      transparent 100%);
  transform: rotate(-45deg);
  animation: cardShine 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes cardShine {
  0% {
    transform: translate(-30%, -30%) rotate(-45deg);
  }

  20% {
    transform: translate(30%, 30%) rotate(-45deg);
  }

  100% {
    transform: translate(30%, 30%) rotate(-45deg);
  }
}

.card-number {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  line-height: 1;
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
}

.card-overline {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #64748B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.flip-card-front h3 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

/* Specific Glowing Effects (FRONT & PILL) */
.card-compliance .flip-card-front {
  border-bottom: 5px solid #f59e0b !important;
  box-shadow: 0 15px 45px rgba(245, 158, 11, 0.15) !important;
}

.card-seo .flip-card-front {
  border-bottom: 5px solid #3b82f6 !important;
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15) !important;
}

.card-tech .flip-card-front {
  border-bottom: 5px solid #10b981 !important;
  box-shadow: 0 15px 45px rgba(16, 185, 129, 0.15) !important;
}

.card-compliance .pill-icon {
  background: rgba(245, 158, 11, 0.12) !important;
  color: #f59e0b !important;
}

.card-seo .pill-icon {
  background: rgba(37, 99, 235, 0.12) !important;
  color: #3b82f6 !important;
}

.card-tech .pill-icon {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #10b981 !important;
}

.flip-card-back {
  background: #0F172A !important;
  color: #FFFFFF !important;
  transform: rotateY(180deg);
  text-align: left;
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Ambient Aurora on Back */
.flip-card-back::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  animation: backAurora 10s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes backAurora {
  0% {
    transform: translate(-10%, -10%) rotate(0deg);
  }

  100% {
    transform: translate(10%, 10%) rotate(10deg);
  }
}

/* Diagonal Backgrounds on Back (Soft & Lower Focused) */
.card-compliance .flip-card-back {
  background: linear-gradient(135deg, #0F172A 20%, rgba(245, 158, 11, 0.4) 100%, #f59e0b 160%) !important;
}

.card-seo .flip-card-back {
  background: linear-gradient(135deg, #0F172A 20%, rgba(59, 130, 246, 0.4) 100%, #3b82f6 160%) !important;
}

.card-tech .flip-card-back {
  background: linear-gradient(135deg, #0F172A 20%, rgba(16, 185, 129, 0.4) 100%, #10b981 160%) !important;
}

/* Back Content Animation: SLIDING REVEAL */
.flip-card-back h4 {
  font-size: 1.6rem !important;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flip-card-back .flip-list {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flip-card-back .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flip-card:hover .flip-card-back h4,
.flip-card:hover .flip-card-back .flip-list,
.flip-card:hover .flip-card-back .btn {
  opacity: 1;
  transform: translate(0, 0);
}

.flip-card:hover .flip-card-back h4 {
  transition-delay: 0.3s;
}

.flip-card:hover .flip-card-back .flip-list {
  transition-delay: 0.45s;
}

.flip-card:hover .flip-card-back .btn {
  transition-delay: 0.6s;
}

.card-compliance .flip-card-back .btn {
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #fff;
}

.card-seo .flip-card-back .btn {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #fff;
}

.card-tech .flip-card-back .btn {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #fff;
}

.pill-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  /* Smoother squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.pill-icon svg {
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.flip-card:hover .pill-icon {
  transform: translateY(-5px);
}

.flip-card-back .pill-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.hover-tip {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.flip-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
  width: 100%;
  padding: 0;
}

.flip-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flip-list li::before {
  content: '✓';
  color: #f59e0b;
  font-weight: bold;
}

.pill-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-compliance .pill-icon {
  background: rgba(245, 158, 11, 0.1) !important;
  color: #f59e0b !important;
}

.card-seo .pill-icon {
  background: rgba(37, 99, 235, 0.1) !important;
  color: #3b82f6 !important;
}

.card-tech .pill-icon {
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
}

.hover-tip {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.flip-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.flip-list li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flip-list li::before {
  content: '✓';
  color: #f59e0b;
  font-weight: bold;
}

.flip-card-hint {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  animation: pulse-gold 2s infinite;
}

.overline {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #D97706 !important;
  /* Force Amber consistently */
}

@keyframes pulse-gold {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .flip-card {
    height: 380px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.5rem;
  }

  .flip-card-back ul {
    font-size: 0.85rem;
  }
}

.services-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}

.services-col {
  padding-left: 1rem;
  border-left: 4px solid var(--border);
}

.services-col.gold {
  border-left-color: var(--gold);
}

.services-col.blue {
  border-left-color: var(--blue);
}

.services-col.green {
  border-left-color: var(--success);
}

.services-col-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
  font-size: .95rem;
  transition: color .2s;
}

.services-col-title:hover {
  color: var(--blue);
}

.services-col ul li a {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s, padding-left .2s;
}

.services-col ul li a:hover {
  color: var(--blue);
  padding-left: 4px;
}

/* =============================================
   NEW GENERIC DROPDOWN SYSTEM
   ============================================= */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .6rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  transition: all .3s ease;
  background: transparent;
  border: none;
  white-space: nowrap;
}

#main-nav:not(.scrolled) .nav-dropdown-btn {
  color: #FFFFFF;
}

#main-nav.scrolled .nav-dropdown-btn,
#main-nav.light-page .nav-dropdown-btn {
  color: #0F172A;
}

.nav-dropdown-btn:hover {
  color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.05);
}

#main-nav.scrolled .nav-dropdown-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.nav-dropdown-btn svg {
  transition: transform 0.3s ease;
  width: 14px;
  height: 14px;
}

.nav-dropdown-wrap:hover .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.25rem 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  perspective: 1000px;
  transform-origin: top;
  transform: rotateX(-15deg) translateY(8px) scale(0.98);
  filter: blur(4px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-dropdown-wrap:hover .nav-dropdown-content,
.nav-dropdown-wrap.pinned .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg) translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.nav-dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-dropdown-content ul li {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-wrap:hover .nav-dropdown-content ul li,
.nav-dropdown-wrap.pinned .nav-dropdown-content ul li {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays */
.nav-dropdown-content ul li:nth-child(1) {
  transition-delay: 0.05s;
}

.nav-dropdown-content ul li:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-dropdown-content ul li:nth-child(3) {
  transition-delay: 0.15s;
}

.nav-dropdown-content ul li:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-dropdown-content ul li:nth-child(5) {
  transition-delay: 0.25s;
}

.nav-dropdown-content ul li:nth-child(6) {
  transition-delay: 0.3s;
}

.nav-dropdown-content ul li:nth-child(7) {
  transition-delay: 0.35s;
}

.nav-dropdown-content ul li:nth-child(8) {
  transition-delay: 0.4s;
}

.nav-dropdown-content ul li:nth-child(9) {
  transition-delay: 0.45s;
}

.nav-dropdown-content ul li:nth-child(10) {
  transition-delay: 0.5s;
}

.nav-dropdown-content ul li a {
  display: block;
  padding: 0.35rem 1.15rem;
  color: #334155;
  font-size: 0.82rem;
  transition: all 0.2s ease;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-dropdown-content ul li:last-child a {
  border-bottom: none;
}

.nav-dropdown-content ul li a:hover {
  background: rgba(245, 158, 11, 0.05);
  color: var(--gold);
  padding-left: 1.3rem;
}

/* Mega Menu Style */
.nav-dropdown-content.mega-menu {
  width: 820px;
  left: -100px;
  transform: rotateX(-15deg) translateY(8px) scale(0.98);
  padding: 1.25rem;
}

.nav-dropdown-wrap:hover .nav-dropdown-content.mega-menu,
.nav-dropdown-wrap.pinned .nav-dropdown-content.mega-menu {
  transform: rotateX(0deg) translateY(0) scale(1);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.mega-menu-grid>div {
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  padding-right: 1rem;
}

.mega-menu-grid>div:last-child {
  border-right: none;
  padding-right: 0;
}

.mega-menu-col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0F172A;
  margin-bottom: 0.6rem;
  display: block;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.35rem;
  width: fit-content;
}

.mega-menu-grid ul li a {
  padding: 0.2rem 0;
  font-size: 0.8rem;
  color: #475569;
  border-bottom: none;
  line-height: 1.25;
}

.mega-menu-grid ul li a:hover {
  background: transparent;
  color: var(--gold);
  padding-left: 0.2rem;
}

#main-nav .container {
  max-width: 1400px;
}

.services-dropdown-footer {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-dropdown-footer a {
  color: var(--white);
  font-weight: 500;
  transition: color .2s;
}

.services-dropdown-footer a:hover {
  color: var(--blue);
}

.services-dropdown-footer span {
  color: var(--gold);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% {
    transform: translate(-100%, -100%) rotate(30deg);
  }

  100% {
    transform: translate(100%, 100%) rotate(30deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1.2s var(--ease-apple), transform 1.2s var(--ease-apple);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  transform: translateX(-40px) scale(0.95);
}

.reveal-right {
  transform: translateX(40px) scale(0.95);
}

.reveal.visible.reveal-left,
.reveal.visible.reveal-right {
  transform: translate(0) scale(1);
}



.floating {
  animation: floating 3.5s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Nav CTA */
.nav-cta-btn {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
  }
}

.nav-cta-btn {
  background: var(--gold);
  color: var(--navy);
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(245, 158, 11, .25);
}

.nav-cta-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.04);
}

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 10000;
  transition: opacity 0.3s var(--ease-apple);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease-apple);
}

#main-nav:not(.scrolled):not(.light-page) .hamburger-inner,
#main-nav:not(.scrolled):not(.light-page) .hamburger-inner::before,
#main-nav:not(.scrolled):not(.light-page) .hamburger-inner::after {
  background-color: #FFFFFF;
}

#main-nav.scrolled .hamburger-inner,
#main-nav.scrolled .hamburger-inner::before,
#main-nav.scrolled .hamburger-inner::after {
  background-color: #0F172A;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Morph to X animation */
.mobile-menu-btn.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.mobile-menu-btn.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* Force dark hamburger on active regardless of scroll */
.mobile-menu-btn.is-active .hamburger-inner,
.mobile-menu-btn.is-active .hamburger-inner::before,
.mobile-menu-btn.is-active .hamburger-inner::after {
  background-color: #0F172A !important;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid #E2E8F0;
  padding: 1rem;
}

#mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  #mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #0F172A;
  transition: background .2s;
}

.mobile-nav-link:hover {
  background: #F1F5F9;
}

.mobile-services-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #0F172A;
  background: none;
}

.mobile-services-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-services-btn svg {
  transition: transform .2s;
}

.mobile-services-btn.open svg {
  transform: rotate(180deg);
}

#mobile-services-sub {
  display: none;
  padding-left: 1rem;
}

#mobile-services-sub.open {
  display: block;
}

.mobile-sub-link:hover {
  color: var(--blue);
}

/* =============================================
   MOBILE MULTI-DROPDOWN SYSTEM
   ============================================= */
.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #0F172A;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mobile-dropdown-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.mobile-dropdown-btn svg {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.mobile-dropdown-btn.open {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.05);
}

.mobile-dropdown-btn.open svg {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-sub-menu {
  display: none;
  padding: 0.25rem 0 0.5rem 0.5rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-sub-menu.open {
  display: block;
}

.mobile-sub-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-sub-link:hover {
  color: #2563EB;
  padding-left: 1.25rem;
}

.mobile-cta-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  padding: .75rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-top: .75rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all .25s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(245, 158, 11, .25);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: #162d5c;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: #1d4ed8;
}

.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-success:hover {
  background: #059669;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 2rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: all .4s var(--ease-apple);
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
}

.btn-ghost {
  border: 2px solid #1E293B;
  color: #1E293B;
  background: transparent;
  backdrop-filter: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.05);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
  padding: 3rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.overline {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

.overline-gold {
  color: var(--gold);
}

.overline-white {
  color: var(--white);
}

.section-title {
  color: var(--text-primary);
}

.section-title-white {
  color: var(--white);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, .75);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple), border-color .4s;
  color: var(--text-primary);
}

.card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-title {
  color: var(--card-title);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: color 0.5s var(--ease-apple);
}

.card-text {
  color: var(--card-text);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.5s var(--ease-apple);
}

.card-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
}

.card-link:hover {
  color: var(--gold);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #CBD5E1;
}

.card-body {
  padding: 1.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon-gold {
  background: rgba(245, 158, 11, .1);
  color: var(--gold);
}

.card-icon-blue {
  background: rgba(37, 99, 235, .1);
  color: var(--blue);
}

.card-icon-green {
  background: rgba(16, 185, 129, .1);
  color: var(--success);
}

.card-icon-navy {
  background: rgba(13, 27, 62, .08);
  color: var(--navy);
}

/* =============================================
   HERO
   ============================================= */
/* =============================================
   AURORA HERO & GLOBE
   ============================================= */
.aurora-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #1f1f8c;
  /* Brighter blue as requested */
  overflow: hidden;
  color: #FFFFFF;
}

.aurora-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.7;
}

@keyframes aurora {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.4;
  }

  33% {
    transform: scale(1.2) translate(5%, 5%) rotate(5deg);
    opacity: 0.6;
  }

  66% {
    transform: scale(0.9) translate(-5%, 2%) rotate(-3deg);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1) translate(2%, -5%) rotate(2deg);
    opacity: 0.4;
  }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
  padding: 4rem 0;
  text-align: left !important;
}

.hero-content {
  text-align: left !important;
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (min-width: 1024px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .btn-shine {
    position: relative;
    overflow: hidden;
  }

  .btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    animation: shine 4s infinite linear;
  }

  @keyframes shine {
    0% {
      left: -60%;
    }

    20% {
      left: 120%;
    }

    100% {
      left: 120%;
    }
  }

  .hero-text-col {
    width: 55%;
    text-align: left;
  }

  .hero-visual-col {
    width: 45%;
    display: flex;
    justify-content: flex-end;
    position: relative;
  }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-align: left !important;
}

.text-blue {
  color: #60a5fa;
}

.hero-sub {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.hero-sub strong {
  color: #FFFFFF;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-top: 2rem;
  text-align: left !important;
}

.btn-amber {
  background: #f59e0b;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-amber:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

#globe-container {
  width: 440px;
  height: 440px;
  position: relative;
  filter: none;
  /* Removed drop-shadow to fix "pixel light" issue */
}

@media (max-width: 768px) {
  #globe-container {
    width: 320px;
    height: 320px;
    margin: 0;
  }

  .hero-text-col {
    text-align: left;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-btns {
    justify-content: flex-start;
  }
}

/* =============================================
   STATS BAR (DARK NAVY)
   ============================================= */
.stats-bar-section {
  background: #1f1f8c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #f59e0b;
}

.stat-label {
  font-size: 0.85rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* =============================================
   NAVBAR (OVER AURORA)
   ============================================= */
#main-nav:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#main-nav:not(.scrolled) .nav-link {
  color: #FFFFFF !important;
}

#main-nav:not(.scrolled) .nav-link.active {
  color: #f59e0b !important;
}

#main-nav:not(.scrolled) .mobile-menu-btn svg {
  stroke: #FFFFFF;
}

#main-nav:not(.scrolled) .theme-toggle {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

#main-nav.scrolled .nav-link {
  color: #0f172a !important;
}

/* CARDS RE-SYNC (Ensure consistency in light mode) */
.card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.75rem);
}

.hero-sub {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.trust-strip {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  font-weight: 500;
}

.trust-icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-5-3 {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid-5-3 {
    grid-template-columns: 5fr 3fr;
  }
}

.grid-half {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .grid-half {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   PAGE HERO (inner pages) — Northern Lights Edition
   ============================================= */

/* --- Keyframe Animations --- */
@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: .55;
  }

  33% {
    transform: translate(40px, -30px) scale(1.1) rotate(8deg);
    opacity: .7;
  }

  66% {
    transform: translate(-20px, 20px) scale(.95) rotate(-5deg);
    opacity: .5;
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: .55;
  }
}

@keyframes aurora-drift-2 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: .4;
  }

  40% {
    transform: translate(-60px, 30px) scale(1.15) rotate(-10deg);
    opacity: .6;
  }

  80% {
    transform: translate(30px, -20px) scale(.9) rotate(6deg);
    opacity: .35;
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: .4;
  }
}

@keyframes silk-shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  20% {
    opacity: .8;
  }

  80% {
    opacity: .4;
  }

  100% {
    transform: translateY(-120px) translateX(30px);
    opacity: 0;
  }
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Base Page Hero --- */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0D1B3E !important;
  /* Force Permanent Navy */
  color: #FFFFFF !important;
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: #FFFFFF !important;
}

.page-hero p,
.page-hero .hero-sub {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Aurora orbs */
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Silk gradient overlay (top layer) */
.page-hero .silk-overlay {
  position: absolute;
  inset: 0;
  background-size: 300% 300%;
  animation: silk-shimmer 8s ease infinite;
  opacity: .18;
  z-index: 1;
  pointer-events: none;
}

/* Particles canvas wrapper */
.page-hero .aurora-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-hero .aurora-particles span {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

/* Content sits above all effects */
.tilt-card {
  transition: transform 0.1s ease-out, box-shadow 0.3s ease !important;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.btn-magnetic {
  display: inline-flex;
  transition: transform 0.15s ease-out !important;
  will-change: transform;
}

/* Fix dropdown interaction */
.nav-services-wrap {
  position: relative;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  animation: hero-text-in .7s ease both;
}

/* -----------------------------------------------
   GOLD VARIANT — Statutory & Compliance
   Gold aurora + deep navy background
   ----------------------------------------------- */
.page-hero.hero-gold {
  background: linear-gradient(160deg, #0a1628 0%, #0D1B3E 50%, #1a1200 100%);
}

.page-hero.hero-gold::before {
  width: 580px;
  height: 580px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(245, 158, 11, .55) 0%, rgba(217, 119, 6, .3) 40%, transparent 70%);
  animation: aurora-drift 12s ease-in-out infinite;
}

.page-hero.hero-gold::after {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: 10%;
  background: radial-gradient(circle, rgba(245, 158, 11, .35) 0%, rgba(180, 80, 0, .2) 45%, transparent 70%);
  animation: aurora-drift-2 16s ease-in-out infinite;
}

.page-hero.hero-gold .silk-overlay {
  background: linear-gradient(270deg, rgba(245, 158, 11, .0), rgba(253, 186, 116, .12), rgba(245, 158, 11, .0), rgba(253, 230, 138, .1));
}

.page-hero.hero-gold .aurora-particles span {
  background: rgba(245, 158, 11, .8);
}

.page-hero.hero-gold .overline {
  color: #FCD34D;
}

/* -----------------------------------------------
   BLUE VARIANT — Digital Marketing
   Blue/cyan aurora + deep navy background
   ----------------------------------------------- */
.page-hero.hero-blue {
  background: linear-gradient(160deg, #060f24 0%, #0D1B3E 45%, #001040 100%);
}

.page-hero.hero-blue::before {
  width: 600px;
  height: 600px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, .6) 0%, rgba(56, 189, 248, .3) 40%, transparent 70%);
  animation: aurora-drift 14s ease-in-out infinite;
}

.page-hero.hero-blue::after {
  width: 380px;
  height: 380px;
  bottom: -60px;
  left: 8%;
  background: radial-gradient(circle, rgba(99, 102, 241, .45) 0%, rgba(37, 99, 235, .2) 45%, transparent 70%);
  animation: aurora-drift-2 18s ease-in-out infinite;
}

.page-hero.hero-blue .silk-overlay {
  background: linear-gradient(270deg, rgba(37, 99, 235, .0), rgba(56, 189, 248, .1), rgba(37, 99, 235, .0), rgba(147, 197, 253, .08));
}

.page-hero.hero-blue .aurora-particles span {
  background: rgba(56, 189, 248, .85);
}

.page-hero.hero-blue .overline {
  color: #7DD3FC;
}

/* -----------------------------------------------
   GREEN VARIANT — IT & Technology
   Emerald/teal aurora + deep dark background
   ----------------------------------------------- */
.page-hero.hero-green {
  background: linear-gradient(160deg, #071611 0%, #0D1B3E 45%, #021a10 100%);
}

.page-hero.hero-green::before {
  width: 560px;
  height: 560px;
  top: -130px;
  left: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, .6) 0%, rgba(5, 150, 105, .35) 40%, transparent 70%);
  animation: aurora-drift 13s ease-in-out infinite;
}

.page-hero.hero-green::after {
  width: 420px;
  height: 420px;
  bottom: -90px;
  right: 12%;
  background: radial-gradient(circle, rgba(52, 211, 153, .4) 0%, rgba(6, 95, 70, .25) 45%, transparent 70%);
  animation: aurora-drift-2 17s ease-in-out infinite;
}

.page-hero.hero-green .silk-overlay {
  background: linear-gradient(270deg, rgba(16, 185, 129, .0), rgba(52, 211, 153, .1), rgba(16, 185, 129, .0), rgba(167, 243, 208, .08));
}

.page-hero.hero-green .aurora-particles span {
  background: rgba(52, 211, 153, .85);
}

.page-hero.hero-green .overline {
  color: #6EE7B7;
}

/* -----------------------------------------------
   MAIN/BRAND VARIANT — General Pages
   Navy background + Gold/Blue aurora
   ----------------------------------------------- */
.page-hero.hero-main {
  background: linear-gradient(160deg, #060f24 0%, #0D1B3E 50%, #0a1628 100%);
}

.page-hero.hero-main::before {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, .4) 0%, rgba(37, 99, 235, .2) 40%, transparent 70%);
  animation: aurora-drift 15s ease-in-out infinite;
}

.page-hero.hero-main::after {
  width: 450px;
  height: 450px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(37, 99, 235, .3) 0%, rgba(245, 158, 11, .15) 45%, transparent 70%);
  animation: aurora-drift-2 20s ease-in-out infinite;
}

.page-hero.hero-main .silk-overlay {
  background: linear-gradient(270deg, rgba(245, 158, 11, .0), rgba(37, 99, 235, .08), rgba(245, 158, 11, .0), rgba(253, 186, 116, .06));
}

.page-hero.hero-main .aurora-particles span {
  background: rgba(245, 158, 11, .7);
}

.page-hero.hero-main .overline {
  color: var(--gold);
}

/* Particle positions (pre-defined stagger) */
.aurora-particles span:nth-child(1) {
  left: 10%;
  width: 2px;
  height: 2px;
  animation-duration: 6s;
  animation-delay: 0s;
}

.aurora-particles span:nth-child(2) {
  left: 20%;
  width: 3px;
  height: 3px;
  animation-duration: 8s;
  animation-delay: 1s;
}

.aurora-particles span:nth-child(3) {
  left: 35%;
  width: 2px;
  height: 2px;
  animation-duration: 7s;
  animation-delay: 2s;
}

.aurora-particles span:nth-child(4) {
  left: 50%;
  width: 4px;
  height: 4px;
  animation-duration: 9s;
  animation-delay: .5s;
}

.aurora-particles span:nth-child(5) {
  left: 65%;
  width: 2px;
  height: 2px;
  animation-duration: 6.5s;
  animation-delay: 3s;
}

.aurora-particles span:nth-child(6) {
  left: 80%;
  width: 3px;
  height: 3px;
  animation-duration: 8.5s;
  animation-delay: 1.5s;
}

.aurora-particles span:nth-child(7) {
  left: 90%;
  width: 2px;
  height: 2px;
  animation-duration: 7.5s;
  animation-delay: 4s;
}

.aurora-particles span:nth-child(8) {
  left: 15%;
  width: 2px;
  height: 2px;
  animation-duration: 10s;
  animation-delay: 2.5s;
}

.aurora-particles span:nth-child(9) {
  left: 45%;
  width: 3px;
  height: 3px;
  animation-duration: 5.5s;
  animation-delay: .8s;
}

.aurora-particles span:nth-child(10) {
  left: 72%;
  width: 2px;
  height: 2px;
  animation-duration: 9.5s;
  animation-delay: 3.5s;
}

.page-hero-light {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, var(--bg-light), var(--white));
}


/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
  color: var(--white);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
  border-color: var(--gold);
  background: rgba(13, 27, 62, 0.4);
  box-shadow: 0 10px 50px rgba(245, 158, 11, .15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem 1.25rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-body {
  padding: 2rem;
}

.popular .pricing-body {
  padding-top: 2.75rem;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--text-primary);
}

.price-period {
  font-size: .9rem;
  color: var(--text-muted);
  margin-left: .25rem;
}

.pricing-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}

.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

/* =============================================
   FAQ / ACCORDION
   ============================================= */
.accordion {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.accordion-item {
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: all .3s;
}

.accordion-trigger:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--gold);
}

.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--text-muted);
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion-body.open {
  max-height: 600px;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   TABS (Comparison)
   ============================================= */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: .6rem 1.25rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  background: var(--bg-accent);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s var(--ease-apple);
}

.tab-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* =============================================
   TABLE
   ============================================= */
.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.comparison-table th {
  text-align: center;
  padding: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: .9rem 1rem;
  text-align: center;
  font-size: .9rem;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tr:nth-child(even) td {
  background: var(--bg-accent);
}

.table-yes {
  color: var(--success);
}

.table-no {
  color: var(--text-muted);
  opacity: 0.5;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
  color: var(--text-primary);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
}

.team-img {
  height: 240px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-left: 3.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    align-items: center;
    justify-content: flex-end;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 24px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -11px;
    width: 22px;
    height: 22px;
  }
}

.timeline-card {
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  flex: 1;
  max-width: 450px;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-card {
    margin-right: calc(50% + 2rem);
  }

  .timeline-item:nth-child(even) .timeline-card {
    margin-left: calc(50% + 2rem);
  }
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
  color: var(--text-primary);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-body {
  padding: 1.5rem;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--form-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1px solid var(--form-border);
  border-radius: 12px;
  font-size: .95rem;
  color: var(--form-text);
  background: var(--form-bg);
  transition: all .3s var(--ease-apple);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
  background: var(--form-bg);
}

.form-input,
.form-textarea,
.form-select {
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #CBD5E1;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94A3B8;
}

.form-label {
  color: #0F172A;
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-accent);
  color: var(--text-primary);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.75rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-desc {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.6;
  margin: 0.75rem 0 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
  font-size: .82rem;
  margin-bottom: .6rem;
  transition: color .2s;
  text-decoration: none;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

.footer-contact-item:hover {
  color: var(--gold-dark);
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-primary);
}

.footer-col-title::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
}

.footer-col-title.gold::before {
  background: var(--gold);
}

.footer-col-title.blue::before {
  background: var(--blue);
}

.footer-col-title.green::before {
  background: var(--success);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer-links a {
  font-size: .82rem;
  color: var(--text-muted);
  transition: color .2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-dark);
}

.footer-links.blue a:hover {
  color: var(--blue);
}

.footer-links.green a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-socials {
  display: flex;
  gap: .6rem;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all .2s;
  border: 1px solid var(--border);
}

.social-btn:hover {
  background: var(--blue);
  color: #FFFFFF;
  transform: translateY(-2px);
  border-color: var(--blue);
}

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
#whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, .4);
  transition: transform .2s;
}

#whatsapp-btn:hover {
  transform: scale(1.12);
}

/* =============================================
   COOKIE CONSENT
   ============================================= */
#cookie-consent {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  max-width: 420px;
  background: #FFFFFF;
  backdrop-filter: blur(25px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

#cookie-consent.show {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-btns {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  padding: .4rem .9rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  border: none;
}

.cookie-decline {
  background: #F1F5F9;
  color: var(--text-muted);
  padding: .4rem .9rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  cursor: pointer;
  border: 1px solid #E2E8F0;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: .5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 9999px;
}

.hidden {
  display: none;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* Misc helpers */
.star {
  color: var(--gold);
}

.badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 20px;
  font-size: .8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.badge-gold {
  background: rgba(245, 158, 11, .1);
  color: var(--gold);
}

.badge-blue {
  background: rgba(37, 99, 235, .1);
  color: var(--blue);
}

.badge-green {
  background: rgba(16, 185, 129, .1);
  color: var(--success);
}

.badge-navy {
  background: rgba(13, 27, 62, .08);
  color: var(--navy);
}

/* Blog filters */
.filter-btn {
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  background: var(--bg-accent);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  color: #FFFFFF;
}

.filter-btn:hover:not(.active) {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Contact card */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-accent);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--text-primary);
}

.contact-info-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.contact-info-card {
  background: #F8FAFC;
}

.contact-info-card:hover {
  background: #EFF6FF;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  flex-shrink: 0;
  color: var(--blue);
}

/* Process steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  color: var(--gold);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.process-num {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  color: var(--gold-dark);
}

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}

/* =============================================
   ANIMATIONS & INTERACTIVE ELEMENTS
   ============================================= */

/* 1. Client Logo Carousel */
.logo-carousel {
  padding: 4rem 0;
  overflow: hidden;
  background: transparent;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.logo-track {
  display: flex;
  width: calc(250px * 10);
  animation: logo-scroll 40s linear infinite;
  align-items: center;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.logo-item img {
  max-width: 140px;
  max-height: 50px;
  filter: grayscale(1);
  opacity: .5;
  transition: all .4s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

/* 2. Magnetic Buttons & Interactivity */
.btn-magnetic {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.tilt-card {
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* 3. Advanced Scroll Reveal Styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-up {
  transform: translateY(50px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}

/* Staggered Delay Utilities */
.reveal-delay-1 {
  transition-delay: 0.1s !important;
}

.reveal-delay-2 {
  transition-delay: 0.2s !important;
}

.reveal-delay-3 {
  transition-delay: 0.3s !important;
}

.reveal-delay-4 {
  transition-delay: 0.4s !important;
}

.reveal-delay-5 {
  transition-delay: 0.5s !important;
}

.reveal-delay-6 {
  transition-delay: 0.6s !important;
}

.reveal-delay-7 {
  transition-delay: 0.7s !important;
}

.reveal-delay-8 {
  transition-delay: 0.8s !important;
}

.reveal-delay-9 {
  transition-delay: 0.9s !important;
}

.reveal-delay-10 {
  transition-delay: 1.0s !important;
}

/* 4. Dropdown List Item Delays */
.services-col ul li {
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s ease;
}

.nav-services-wrap:hover .services-col ul li,
.nav-services-wrap.pinned .services-col ul li {
  opacity: 1;
  transform: translateY(0);
}

.services-col ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.services-col ul li:nth-child(2) {
  transition-delay: 0.15s;
}

.services-col ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.services-col ul li:nth-child(4) {
  transition-delay: 0.25s;
}

.services-col ul li:nth-child(5) {
  transition-delay: 0.3s;
}

/* Column Hover Lift */
.services-col {
  transition: transform .3s ease, border-color .3s ease;
}

.services-col:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.01);
}

/* =============================================
   TESTIMONIAL CARDS — Previously Unstyled
   ============================================= */
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  color: #0F172A;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #CBD5E1;
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testi-quote {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-quote {
  color: #475569;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.testi-author {
  border-top-color: #E2E8F0;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-primary);
}

.testi-info p {
  font-size: .8rem;
  color: var(--text-muted);
}

.testi-info h4 {
  color: #0F172A;
}

.testi-info p {
  color: #64748B;
}

/* =============================================
   ENGAGEMENT CARDS — Previously Unstyled
   ============================================= */
.engagement-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
  color: var(--text-primary);
}

.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.engagement-card.active {
  border-color: var(--gold);
  background: rgba(13, 27, 62, 0.5);
  box-shadow: 0 10px 50px rgba(245, 158, 11, .15);
}

.engagement-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  color: #0F172A;
}

.engagement-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #CBD5E1;
}

.engagement-card.active {
  border-color: var(--gold);
  background: #FFFBF0;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.engagement-card .card-title {
  color: #2563EB;
}

.engagement-card.active .card-title {
  color: var(--gold-dark);
}

.engagement-card .card-text {
  color: #475569;
}

.engagement-card .pricing-feature {
  color: #475569;
}

/* =============================================
   LIGHT MODE — Global Section Overrides
   ============================================= */

/* Section backgrounds in light mode */
.bg-light {
  background-color: #F1F5F9 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

/* Section headings, subtitles always readable */
.section-title {
  color: #0F172A;
}

.section-subtitle {
  color: #475569;
  text-align: justify;
}

.overline {
  color: #2563EB;
}

/* Accordion in light mode */
.accordion-item {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.accordion-trigger {
  color: #0F172A;
}

.accordion-trigger:hover {
  color: var(--gold-dark);
}

.accordion-body-inner {
  color: #475569;
}

/* Pricing in light mode */
.pricing-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #0F172A;
}

.pricing-card.popular {
  border-color: var(--gold);
  background: #FFFBF0;
}

.price-amount {
  color: #0F172A;
}

.pricing-feature {
  color: #475569;
}

/* Card text globally in light mode */
.card-text {
  color: #1E293B;
}

.card-title {
  color: #2563EB;
}

/* Badge backgrounds in light mode */
.badge-navy {
  background: #EFF6FF;
  color: #1E40AF;
}

/* Blog cards in light mode */
.blog-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

/* Team cards in light mode */
.team-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}



/* Mobile menu light mode overrides (menu stays dark intentionally) */


/* Scrollbar styling for dark/light */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* =============================================
   CONTACT.HTML — Form Grid & Info Cards
   ============================================= */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid .form-group:last-of-type,
  .form-grid button[type="submit"] {
    grid-column: 1 / -1;
  }
}

/* Override rgba(255,255,255,0.5) sub-text in contact info cards */
.contact-info-card [style*="rgba(255,255,255,0.5)"],
.contact-info-card p[style*="rgba(255"] {
  color: var(--text-muted) !important;
}

.contact-info-card [style*="rgba(255,255,255,0.5)"],
.contact-info-card p[style*="rgba(255"] {
  color: #64748B !important;
}

/* Contact page "Why Contact Us" box — always has navy bg, keep white text */
[style*="background:var(--navy)"] h4,
[style*="background:var(--navy)"] li {
  color: inherit;
}

/* =============================================
   PACKAGES.HTML — Accordion Glassmorphism Items
   ============================================= */
/* Accordion triggers with inline color:var(--white) in glass containers */
.accordion-item[style*="rgba(255,255,255,0.03)"] .accordion-trigger {
  color: #F8FAFC;
}

.accordion-item[style*="rgba(255,255,255,0.03)"] {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
}

.accordion-item[style*="rgba(255,255,255,0.03)"] .accordion-trigger {
  color: #0F172A !important;
}

.accordion-item[style*="rgba(255,255,255,0.03)"] .accordion-body-inner {
  color: #475569 !important;
}

/* Contact page bottom sections with rgba bg */
[style*="background:rgba(255,255,255,0.01)"],
[style*="background:rgba(255,255,255,0.02)"] {
  transition: background 0.5s ease;
}

[style*="background:rgba(255,255,255,0.01)"],
[style*="background:rgba(255,255,255,0.02)"] {
  background: #F8FAFC !important;
}

/* Packages page "Enterprise" column in comparison — navy color unreadable in light */
th[style*="color:#0D1B3E"] {
  color: #0F172A !important;
}




/* Specific Centering for CTA Section */
.cta-section {
  text-align: center;
}

.cta-section .reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .hero-btns {
  justify-content: center !important;
}

.cta-section p {
  text-align: center !important;
}