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

/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Color Palette - Light Mode Redesign */
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --color-brand-navy: #0B2D5B;
  --color-royal-blue: #153E7A;
  --color-gold-premium: #C9A34D;
  --color-gold-light: #E5C46B;
  --color-glow-emerald: #00D084;
  --color-glow-electric: #00BFFF;
  --color-white: #FFFFFF;
  --color-text-primary: #1A2B4A;
  --color-text-secondary: #4A5568;
  --color-text-muted: #718096;
  --card-bg: rgba(255, 255, 255, 1);
  --card-border: rgba(11, 45, 91, 0.1);
  --card-hover-border: rgba(11, 45, 91, 0.25);

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Blurs */
  --glow-shadow-blue: 0 10px 30px rgba(0, 191, 255, 0.15);
  --glow-shadow-gold: 0 10px 30px rgba(201, 163, 77, 0.15);
  --glow-shadow-emerald: 0 10px 30px rgba(0, 208, 132, 0.15);
  --card-shadow: 0 10px 40px rgba(11, 45, 91, 0.08);
  --glass-blur: blur(16px);
  --glass-blur-heavy: blur(30px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Typography Scale */
  --font-size-body: 18px;
  --font-size-hero: 60px;
  --font-size-page: 52px;
  --font-size-section: 42px;
  --font-size-sub: 30px;

  /* Layout */
  --container-max-width: 1400px;
  --header-height: 85px;
  --utility-bar-height: 40px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--utility-bar-height) + var(--header-height) + 60px) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  background-color: var(--bg-primary);
  /* Enterprise subtle grid background */
  background-image: linear-gradient(rgba(11, 45, 91, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(11, 45, 91, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  font-size: var(--font-size-body);
  line-height: 1.9;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   UTILITY / ANNOUNCEMENT BAR (top of page, above header)
   ========================================================================== */
.utility-bar {
  background: var(--color-brand-navy);
  height: var(--utility-bar-height);
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

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

.utility-bar-left {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-bar-left i {
  color: var(--color-gold-light);
  font-size: 0.8rem;
}

.utility-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-bar-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.utility-bar-link:hover {
  color: var(--color-gold-light);
}

.utility-bar-link i {
  font-size: 0.75rem;
}

/* Offset header below utility bar */
.header {
  top: var(--utility-bar-height) !important;
}

@media (max-width: 992px) {
  .utility-bar {
    display: none;
  }
  .header {
    top: 0 !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1.hero-title { font-size: var(--font-size-hero); font-weight: 800; }
h1.page-title { font-size: var(--font-size-page); font-weight: 800; }
h2.section-title { font-size: var(--font-size-section); font-weight: 700; }
h3.sub-title { font-size: var(--font-size-sub); font-weight: 700; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-brand-navy);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-royal-blue);
}

/* Selection */
::selection {
  background: var(--color-gold-premium);
  color: var(--bg-primary);
}

/* ==========================================================================
   GLOBAL UTILITIES & LAYOUTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-left: 32px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold-premium); }
.text-emerald { color: var(--color-glow-emerald); }
.text-electric {
  color: var(--color-royal-blue);
  transition: color var(--transition-fast);
}
.text-electric:hover {
  color: var(--color-gold-premium);
}
.text-muted { color: var(--color-text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-royal-blue) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(11, 45, 91, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, #1a4f9e 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
  border-radius: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 45, 91, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-brand-navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--color-gold-premium);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.3);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-brand-navy);
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: var(--bg-primary);
  border-color: var(--color-brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 45, 91, 0.1);
}

/* Background Grids & Glows */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(11, 45, 91, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: multiply;
}

.glow-blue {
  background: var(--color-glow-electric);
  width: 400px;
  height: 400px;
}

.glow-green {
  background: var(--color-glow-emerald);
  width: 350px;
  height: 350px;
}

.glow-gold {
  background: var(--color-gold-premium);
  width: 300px;
  height: 300px;
}

/* Clean Card Base */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: 0 15px 40px rgba(11, 45, 91, 0.12);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-glow-electric);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ==========================================================================
   HEADER / NAVIGATION  — White Navbar (logo-friendly, CFO Bridge style)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 45, 91, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 72px;
  top: 0 !important;
  box-shadow: 0 10px 40px rgba(11, 45, 91, 0.08);
  border-bottom: 1px solid rgba(11, 45, 91, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  text-decoration: none;
  border: none;
  outline: none;
  background: transparent;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height var(--transition-normal);
  border: none;
  outline: none;
  background: transparent;
  mix-blend-mode: multiply;
}
.header.scrolled .logo {
  height: 50px;
}

.logo-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-brand-navy);
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-brand-navy) 30%, var(--color-gold-premium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform var(--transition-normal);
}

.logo-container:hover .logo-text {
  transform: scale(1.02);
}

/* Desktop Nav Wrapper */
.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: center;
}

/* Menu items */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2b4a;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--color-gold-premium);
  background: transparent;
}

.nav-link i {
  font-size: 0.7rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
  color: #5a7a9a;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
  color: var(--color-gold-premium);
}

/* Active underline indicator */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-gold-premium);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-item:hover .nav-link::after {
  transform: scaleX(1);
}

/* Mega Menu Dropdowns */
.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(860px, 95vw);
  background: #ffffff;
  border: 1px solid rgba(11, 45, 91, 0.1);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(11, 45, 91, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1001;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-column-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gold-premium);
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(11, 45, 91, 0.1);
  padding-bottom: 8px;
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-list-item a {
  font-size: 0.875rem;
  color: #334466;
  display: block;
  padding: 4px 0;
  transition: all var(--transition-fast);
}

.mega-list-item a:hover {
  color: var(--color-brand-navy);
  transform: translateX(4px);
  font-weight: 500;
}

/* Standard Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  transform: translateY(10px);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(11, 45, 91, 0.1);
  border-radius: 10px;
  padding: 12px 8px;
  box-shadow: 0 15px 40px rgba(11, 45, 91, 0.12), 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  font-size: 0.875rem;
  color: #334466;
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.dropdown-item a:hover {
  background: rgba(11, 45, 91, 0.06);
  color: var(--color-brand-navy);
  font-weight: 500;
}

/* Header CTA Area */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header .btn-primary {
  padding: 10px 22px;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-royal-blue) 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(11, 45, 91, 0.25);
  white-space: nowrap;
}

.header .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 45, 91, 0.35);
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, #1a4f9e 100%);
}

.header .btn-primary::before {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--color-brand-navy);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(11, 45, 91, 0.08);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #05070c;
  border-top: 1px solid var(--card-border);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  
  /* Override variables for light-on-dark contrast in footer */
  --color-text-muted: #8E9BAE;
  --color-text-secondary: #C7CEDB;
  --color-text-primary: #FFFFFF;
  --card-border: rgba(255, 255, 255, 0.08);
}

.footer .grid-bg {
  opacity: 0.5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr 1.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Footer logo needs white background since logo has white bg, show it in a white pill */
.footer-logo-wrapper {
  display: inline-flex;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  align-self: flex-start;
}

.footer-logo-wrapper .logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-royal-blue);
  color: var(--color-white);
  border-color: var(--color-glow-electric);
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow-blue);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 24px;
}

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

.footer-link a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.footer-link a:hover {
  color: var(--color-gold-premium);
  transform: translateX(4px);
  display: inline-block;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 6px;
  border-radius: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--color-white);
}

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

.newsletter-btn {
  background: var(--color-gold-premium);
  color: var(--bg-primary);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--color-gold-light);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.footer-credits {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credits a {
  color: var(--color-gold-premium);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-credits a:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-link a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-link a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   WHATSAPP FLOATING WIDGET
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  color: var(--color-text-secondary);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   GLOBAL MOUSE LIGHT EFFECT
   ========================================================================== */
#glow-cursor {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 62, 122, 0.12) 0%, rgba(21, 62, 122, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: screen;
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.18; transform: scale(1.05); }
  100% { opacity: 0.12; transform: scale(1); }
}

@keyframes text-shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(11, 45, 91, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 80px 0 20px;
  box-sizing: border-box;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 45, 91, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 10px;
}

.mobile-menu-item {
  border-bottom: 1px solid var(--card-border);
}

.mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-menu-link:hover, .mobile-menu-link:focus {
  background: rgba(11, 45, 91, 0.05);
  color: var(--color-brand-navy);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(11, 45, 91, 0.02);
  display: none;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu-link {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--card-border);
}

.mobile-submenu-link:hover {
  color: var(--color-brand-navy);
  background: rgba(11, 45, 91, 0.05);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .mega-menu {
    width: 720px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    align-items: flex-start;
  }
  :root {
    --header-height: 70px;
    --utility-bar-height: 0px;
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-container {
    display: none;
  }
  .nav-menu, .header-cta .btn {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-logo-col {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-logo-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .grid-3-col {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DYNAMIC SERVICE DETAIL PAGE
   ========================================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.check-list-item:last-child {
  margin-bottom: 0;
}

.check-list-item i {
  margin-top: 3px;
  font-size: 1.2rem;
}

.metric-bubble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.metric-bubble {
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-color: var(--color-gold-premium);
}

.metric-bubble-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
