/* ============================================================
   SAVADUB LIMITED — MAIN STYLESHEET
   Theme: Modern · Techy · Global · Premium
   Stack: Bootstrap 5 + Custom CSS
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --clr-deep-blue: #081065;
  --clr-deep-blue-dark: #050c4a;
  --clr-deep-blue-light: #0d1880;
  --clr-red: #DD3333;
  --clr-red-dark: #b82929;
  --clr-red-glow: rgba(221,51,51,0.18);
  --clr-light-blue: #66A9BF;
  --clr-light-blue-glow: rgba(102,169,191,0.18);
  --clr-white: #ffffff;
  --clr-off-white: #f0f2ff;
  --clr-muted: #8e95c0;
  --clr-border: rgba(102,169,191,0.15);
  --clr-bg-deep: #060e50;
  --clr-surface: rgba(255,255,255,0.04);
  --clr-surface-hover: rgba(255,255,255,0.07);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --header-h: 72px;
  --section-py: 96px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-deep-blue);
  color: var(--clr-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

::selection {
  background: var(--clr-red);
  color: white;
}

img { max-width: 100%; }

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

/* ---- Typography Utility ---- */
.text-accent-red { color: var(--clr-red) !important; }
.text-accent-blue { color: var(--clr-light-blue) !important; }
.text-muted-custom { color: var(--clr-muted); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--clr-white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 540px;
}

.body-text {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.py-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.bg-deep { background-color: var(--clr-bg-deep); }
.z-2 { z-index: 2; }

/* ============================================================
   HEADER
   ============================================================ */
.savadub-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.savadub-header.scrolled {
  background: rgba(8,16,101,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.savadub-navbar {
  height: var(--header-h);
  padding: 0;
}

/* Logo */
.savadub-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.savadub-logo__mark {
  width: 38px;
  height: 38px;
  background: var(--clr-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.savadub-logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: white;
  line-height: 1;
}

.savadub-logo__tag {
  display: block;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--clr-muted);
  margin-top: 2px;
}

/* Nav Links */
.savadub-nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8) !important;
  letter-spacing: 0.03em;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast); 
  background: var(--transition-fast);
}

.savadub-nav-link:hover,
.savadub-nav-link.active {
  color: white !important;
  background: var(--clr-surface);
}

/* Dropdown */
.savadub-dropdown {
  background: #0d1880;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  margin-top: 8px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.savadub-dropdown .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.savadub-dropdown .dropdown-item:hover {
  background: var(--clr-surface);
  color: white;
}

/* Header CTAs */
.btn-savadub-header-ghost {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid var(--clr-border);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-savadub-header-ghost:hover {
  color: white !important;
  border-color: rgba(255,255,255,0.3);
  background: var(--clr-surface);
}

.btn-savadub-header-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white !important;
  background: var(--clr-red);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition-fast);
}

.btn-savadub-header-cta:hover {
  background: var(--clr-red-dark);
  transform: translateY(-1px);
}

/* Mobile Toggler */
.savadub-toggler {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: var(--clr-surface);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* Mobile nav collapse styling */
@media (max-width: 991.98px) {

  /* 1. Ensure the header stays above the mobile menu */
  .savadub-navbar { height: auto; }
  .savadub-header { 
    height: auto; 
    padding: 12px 0; 
    position: fixed; 
    background: rgba(8,16,101,0.95); 
    z-index: 1100; 
  }

  /* 2 */
  .navbar-collapse { 
      position: fixed;
      top: 0;
      left: 0;
      background: rgba(8, 16, 101, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px); 
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-md);
      padding: 100px 24px 24px; 
      margin-top: 12px;
      z-index: 1040;
  }

  /* 3. Keep the toggler and logo above the menu */
  .savadub-logo, 
  .savadub-toggler {
      position: relative;
      z-index: 1101; 
  }
  
  /* 4. Hamburger to X Animation */
  .savadub-toggler .toggler-bar {
      transition: all 0.3s ease;
  }

  .savadub-toggler:not(.collapsed) .toggler-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
  }
  .savadub-toggler:not(.collapsed) .toggler-bar:nth-child(2) {
      opacity: 0;
  }
  .savadub-toggler:not(.collapsed) .toggler-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
  } 
 
  .header-cta-group {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border);
  }

  .btn-savadub-header-ghost,
  .btn-savadub-header-cta {
    text-align: center;
  }

  /* Make the dropdown menu feel like part of the list instead of a floating box */
  .savadub-dropdown {
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 10px !important;
    padding-left: 15px !important; /* Indent sub-items */
  }

  .savadub-dropdown .dropdown-item {
    color: var(--clr-off-white) !important;
    padding: 10px 0 !important;
  }

  /* Ensure the main nav links have enough room to be tapped */
  .savadub-nav-link {
    padding: 12px 0 !important;
    font-size: 0.9rem;
  }
}

/* ============================================================
   BUTTONS (Global)
   ============================================================ */
.btn-savadub-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: white !important;
  background: var(--clr-red);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  letter-spacing: 0.02em;
}

.btn-savadub-primary:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-red-glow);
}

.btn-savadub-outline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: white !important;
  /* background: transparent; */
  background: var(--clr-light-blue-glow);
  border-color: var(--clr-light-blue);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
}

.btn-savadub-outline:hover {
  border-color: var(--clr-light-blue);
  background: var(--clr-light-blue-glow);
  transform: translateY(-2px);
}

.btn-savadub-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75) !important;
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
}

.btn-savadub-ghost:hover {
  color: white !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--clr-bg-deep);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102,169,191,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,169,191,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(8,16,101,0.8) 0%, transparent 60%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-orb--1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(221,51,51,0.12) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 400px; height: 400px;
  bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(102,169,191,0.1) 0%, transparent 70%);
}

.min-vh-hero {
  min-height: calc(100vh - var(--header-h) - 120px);
  padding: 60px 0 30px;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

.badge-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-light-blue);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: white;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 520px;
}

.hero-cta-group .btn {
  font-size: 0.95rem;
  padding: 14px 32px;
}

/* Hero Visual */
.hero-visual {
  width: 360px; height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-ring 20s linear infinite;
}

.ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(102,169,191,0.15);
  animation-duration: 30s;
}

.ring-2 {
  width: 75%; height: 75%;
  border-color: rgba(221,51,51,0.15);
  animation-duration: 20s;
  animation-direction: reverse;
}

.ring-3 {
  width: 50%; height: 50%;
  border-color: rgba(102,169,191,0.2);
  animation-duration: 15s;
}

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-mark {
  position: relative;
  z-index: 2;
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

/* Stats Bar */
.hero-stats-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-top: 48px;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid var(--clr-border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: white;
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  color: var(--clr-red);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: 4px;
}

/* ============================================================
   THREE GATES SECTION
   ============================================================ */
.three-gates-section { background: var(--clr-deep-blue); }

.gate-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-light-blue);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

.gate-card:hover {
  border-color: rgba(102,169,191,0.3);
  background: var(--clr-surface-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.gate-card--featured {
  border-color: var(--clr-red) !important;
  background: rgba(221,51,51,0.05);
}

.gate-card--featured::before {
  background: var(--clr-red) !important;
  transform: scaleX(1) !important;
}

.gate-card--featured:hover {
  border-color: var(--clr-red-dark) !important;
}

.gate-card__featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-red);
  background: var(--clr-red-glow);
  border: 1px solid rgba(221,51,51,0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.gate-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(102,169,191,0.1);
  color: var(--clr-light-blue);
  border: 1px solid rgba(102,169,191,0.2);
}

.gate-card--featured .gate-card__icon {
  background: var(--clr-red-glow);
  color: var(--clr-red);
  border-color: rgba(221,51,51,0.2);
}

.gate-card__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 10px;
}

.gate-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}

.gate-card__title span { color: var(--clr-light-blue); }
.gate-card--featured .gate-card__title span { color: var(--clr-red); }

.gate-card__text {
  color: var(--clr-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.gate-card__list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
}

.gate-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  border-bottom: 1px solid var(--clr-border);
}

.gate-card__list li:last-child { border-bottom: none; }

.gate-card__list li i {
  color: var(--clr-light-blue);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.gate-card--featured .gate-card__list li i { color: var(--clr-red); }

.gate-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--clr-light-blue) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}

.gate-card__cta:hover { gap: 14px; }
.gate-card--featured .gate-card__cta { color: var(--clr-red) !important; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-visual-stack {
  position: relative;
  padding: 20px;
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--clr-border);
  transition: all var(--transition-smooth);
}

.about-card:hover {
  transform: translateX(8px);
  border-color: rgba(102,169,191,0.3);
}

.about-card--1 { background: rgba(102,169,191,0.08); margin-left: 0; }
.about-card--2 { background: rgba(221,51,51,0.08); margin-left: 24px; }
.about-card--3 { background: rgba(102,169,191,0.08); margin-left: 48px; }

.about-card__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
}

.about-card--2 .about-card__label { color: var(--clr-red); }

.about-card__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.about-pillars-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pillar-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   VENTURES PREVIEW
   ============================================================ */
.venture-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.venture-card:hover {
  border-color: rgba(102,169,191,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.venture-card__logo {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.venture-card__logo--lawsava   { background: linear-gradient(135deg, #081065, #1a2fa8); border: 1px solid rgba(102,169,191,0.3); }
.venture-card__logo--saviliate { background: linear-gradient(135deg, #8b1010, #DD3333); }
.venture-card__logo--medichaven{ background: linear-gradient(135deg, #0b5563, #66A9BF); }

.venture-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 4px;
}

.venture-card__sector {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
  display: block;
  margin-bottom: 14px;
}

.venture-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.venture-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--clr-light-blue) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.venture-card__link:hover { gap: 14px; }

/* ============================================================
   LABS PREVIEW
   ============================================================ */
.labs-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 12px;
  background: var(--clr-surface);
  transition: all var(--transition-smooth);
}

.labs-track:hover {
  border-color: rgba(102,169,191,0.3);
  background: var(--clr-surface-hover);
  transform: translateX(4px);
}

.labs-track__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-light-blue);
  font-size: 1.1rem;
}

.labs-track__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 4px;
}

.labs-track__desc {
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.6;
}

/* Tech Stack Grid */
.tech-stack-grid {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.tech-stack-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: default;
}

.tech-tag:hover {
  background: rgba(102,169,191,0.2);
  border-color: var(--clr-light-blue);
  transform: translateY(-2px);
}

.tech-stack-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
  font-size: 0.875rem;
  color: var(--clr-muted);
}

.tech-stack-cta a {
  color: var(--clr-red) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.tech-stack-cta a:hover { gap: 10px; }

/* ============================================================
   MOBILITY PREVIEW
   ============================================================ */
.mobility-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.mobility-card--pro {
  background: rgba(102,169,191,0.05);
  border-color: rgba(102,169,191,0.2);
}

.mobility-card--essential {
  background: rgba(221,51,51,0.05);
  border-color: rgba(221,51,51,0.15);
}

.mobility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.mobility-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.mobility-card__header i {
  font-size: 1.6rem;
}

.mobility-card--pro .mobility-card__header i { color: var(--clr-light-blue); }
.mobility-card--essential .mobility-card__header i { color: var(--clr-red); }

.mobility-card__header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin: 0;
}

.mobility-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mobility-card ul {
  list-style: none;
  padding: 0; margin: 0;
  flex-grow: 1;
}

.mobility-card ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobility-card ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mobility-card--pro ul li::before { background: var(--clr-light-blue); }
.mobility-card--essential ul li::before { background: var(--clr-red); }

.mobility-card ul li:last-child { border-bottom: none; }

.mobility-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  transition: gap var(--transition-fast);
}

.mobility-card--pro .mobility-card__cta { color: var(--clr-light-blue) !important; }
.mobility-card--essential .mobility-card__cta { color: var(--clr-red) !important; }
.mobility-card__cta:hover { gap: 14px; }

/* Mobility Process */
.mobility-process {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.mobility-process__title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.mobility-process__steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 100px;
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clr-red);
}

.process-step__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-weight: 500;
}

.process-step__arrow {
  color: var(--clr-border);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .mobility-process__steps { gap: 8px; }
  .process-step { min-width: 80px; }
  .process-step__num { font-size: 1.1rem; }
  .process-step__label { font-size: 0.7rem; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(221,51,51,0.1) 0%, transparent 60%),
    linear-gradient(135deg, var(--clr-deep-blue-dark) 0%, var(--clr-deep-blue) 100%);
}

.cta-banner__btns .btn { font-size: 1rem; padding: 16px 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.savadub-footer {
  background: var(--clr-deep-blue-dark);
  border-top: 1px solid var(--clr-border);
}

.footer-top { padding: 64px 0 48px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
  max-width: 320px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social__link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-social__link:hover {
  border-color: var(--clr-light-blue);
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1);
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--clr-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: white; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin: 0;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--clr-muted);
  transition: color var(--transition-fast);
}

.footer-legal-link:hover { color: white; }
.footer-legal-sep { color: var(--clr-border); margin: 0 8px; }

/* ============================================================
   AOS DEFAULTS
   ============================================================ */
[data-aos] { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  :root { --section-py: 64px; }
  .hero-stats-bar .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .hero-stats-bar .stat-item:last-child { border-bottom: none; }
  .hero-stats-bar .col-6:nth-child(even) .stat-item { border-left: 1px solid var(--clr-border); }
  .about-card--2 { margin-left: 16px; }
  .about-card--3 { margin-left: 32px; }

  .navbar-collapse {
    width: 100%;
    left: 0;
    right: 0;
  }
}

@media (max-width: 767.98px) {
  :root { --section-py: 48px; }
  .hero-section { padding-top: 100px; }
  .min-vh-hero { min-height: unset; padding: 40px 0 24px; }
  .hero-headline { font-size: 2.2rem; }
  .gate-card { padding: 28px 24px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .cta-banner__btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .mobility-process__steps .process-step__arrow { display: none; }
  .mobility-process__steps { justify-content: space-between; }
}

@media (max-width: 575.98px) {
  .hero-stats-bar .stat-item { border-right: none; }
  .hero-stats-bar .col-6:nth-child(even) .stat-item { border-left: none; }
  .hero-stats-bar .stat-item { border-bottom: 1px solid var(--clr-border); }
}



/* NEW ADDITION FOR MOBILE MENU HAMBURGER PLACING WHEN DROPDOWN OPEN */
/* Hamburger to X Animation */
.savadub-toggler {
    position: relative;
    z-index: 1050; /* Ensures it stays above the menu */
    transition: all 0.3s ease;
}

/* When the menu is OPEN (Bootstrap removes .collapsed class) */
.savadub-toggler:not(.collapsed) .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.savadub-toggler:not(.collapsed) .toggler-bar:nth-child(2) {
    opacity: 0;
}

.savadub-toggler:not(.collapsed) .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}