/* Modern Redesigned Design System - gautammanthan.com */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
:root {
  /* Color Palette - HSL Tailored (Light Mode) */
  --primary-hue: 224;
  --secondary-hue: 45; /* Gold/Amber Accent */
  
  --bg-primary: hsl(var(--primary-hue), 30%, 98%);
  --bg-secondary: hsl(var(--primary-hue), 25%, 94%);
  --bg-surface: hsla(var(--primary-hue), 20%, 100%, 0.7);
  --bg-surface-solid: hsl(var(--primary-hue), 20%, 100%);
  --bg-glass: hsla(var(--primary-hue), 20%, 100%, 0.6);
  --border-color: hsla(var(--primary-hue), 20%, 85%, 0.5);
  
  --text-primary: hsl(var(--primary-hue), 40%, 12%);
  --text-secondary: hsl(var(--primary-hue), 20%, 40%);
  --text-muted: hsl(var(--primary-hue), 15%, 55%);
  
  --accent: hsl(var(--secondary-hue), 90%, 50%);
  --accent-hover: hsl(var(--secondary-hue), 100%, 43%);
  --accent-gradient: linear-gradient(135deg, hsl(var(--primary-hue), 85%, 55%), hsl(var(--primary-hue), 90%, 40%));
  --accent-glow: hsla(var(--primary-hue), 85%, 55%, 0.15);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Font Stacks */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

[data-theme="dark"] {
  /* Color Palette - HSL Tailored (Dark Mode) */
  --bg-primary: hsl(var(--primary-hue), 35%, 6%);
  --bg-secondary: hsl(var(--primary-hue), 30%, 9%);
  --bg-surface: hsla(var(--primary-hue), 25%, 12%, 0.7);
  --bg-surface-solid: hsl(var(--primary-hue), 25%, 12%);
  --bg-glass: hsla(var(--primary-hue), 25%, 10%, 0.65);
  --border-color: hsla(var(--primary-hue), 20%, 25%, 0.4);
  --text-primary: hsl(var(--primary-hue), 15%, 94%);
  --text-secondary: hsl(var(--primary-hue), 12%, 75%);
  --text-muted: hsl(var(--primary-hue), 10%, 55%);
  
  --accent: hsl(var(--secondary-hue), 95%, 55%);
  --accent-hover: hsl(var(--secondary-hue), 100%, 62%);
  --accent-gradient: linear-gradient(135deg, hsl(var(--secondary-hue), 95%, 55%), hsl(var(--primary-hue), 85%, 65%));
  --accent-glow: hsla(var(--secondary-hue), 95%, 55%, 0.2);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}



/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

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

.logo-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Dropdown Menu Styles */
.nav-links li {
  position: relative;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown-menu a {
  padding: 0.6rem 1.25rem !important;
  display: block !important;
  width: 100%;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background-color: rgba(var(--accent-rgb, 218, 165, 32), 0.1);
  color: var(--accent) !important;
  padding-left: 1.5rem !important;
}


/* Mobile Nav Toggle & Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Dark Mode Switcher */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: background-color 0.3s, color 0.3s;
}

.theme-toggle:hover {
  background-color: var(--bg-surface);
}

.theme-toggle .fa-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .fa-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .fa-sun {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 8rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-subtitle {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, hsla(var(--primary-hue), 85%, 55%, 0.1) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
}

.hero-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat-mini-item h4 {
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-mini-item p {
  font-size: 0.85rem;
  margin: 0;
  font-weight: 600;
}

/* Pain Points / "Ring a bell" Section */
.pain-points {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header p {
  font-size: 1.1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.pain-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--primary-hue), 85%, 55%, 0.3);
}

.pain-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  border: 1px solid var(--border-color);
}

.pain-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.pain-card strong {
  color: var(--text-primary);
}

/* Services Grid Section */
.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--primary-hue), 85%, 55%, 0.3);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Continual Growth Section */
.growth {
  position: relative;
  overflow: hidden;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.growth-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.growth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.growth-image-container:hover .growth-image {
  transform: scale(1.05);
}

.growth-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.growth-overlay h4 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.growth-overlay p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 0.85rem;
}

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

.stat-item {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.3;
}

/* Content Details ("The GautamManthan Way") */
.methodology {
  background-color: var(--bg-secondary);
}

.method-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.method-feature-item {
  display: flex;
  gap: 1.5rem;
}

.method-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsla(var(--primary-hue), 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.method-feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.method-feature-text p {
  margin: 0;
  font-size: 0.95rem;
}

/* Accordion Accordance Section (When to rely) */
/* Rely Icon Box Grid Section */
.rely {
  background-color: var(--bg-primary);
}

.rely-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.rely-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.rely-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--primary-hue), 85%, 55%, 0.3);
}

.rely-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: hsla(var(--primary-hue), 85%, 55%, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  border: 1px solid var(--border-color);
}

.rely-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-primary);
  font-weight: 700;
}

.rely-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Call-out Box Section (Boutique Consultancy / Readiness Assessment) */
.readiness {
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.readiness::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.readiness-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.readiness h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.readiness p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.readiness .btn-white {
  background-color: #fff;
  color: hsl(var(--primary-hue), 90%, 40%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.readiness .btn-white:hover {
  background-color: hsl(var(--primary-hue), 15%, 95%);
  transform: translateY(-2px);
}

/* Boutique characteristics section */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.boutique-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.boutique-card h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.boutique-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* CTA Footer section (Chanakya success story) */
.cta-bottom {
  text-align: center;
  background-color: var(--bg-secondary);
}

.cta-bottom-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-bottom h2 {
  margin-bottom: 1rem;
}

.cta-bottom p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Footer styling */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  color: var(--accent);
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.contact-item-text p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-item-text span {
  font-weight: 700;
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  color: var(--text-secondary);
  font-size: 1.25rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--accent);
}

/* Animations System (Scroll reveals) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .growth-grid, .method-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .boutique-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1100;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 2.5rem 3rem 2.5rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.15rem;
  }
  
  .mobile-menu-active .mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-active .mobile-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-active .mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .readiness {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Mobile Dropdown Styling */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding: 0.5rem 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: auto;
  }
  
  .dropdown-menu a {
    font-size: 1rem !important;
    padding: 0.4rem 0 !important;
    color: var(--text-secondary) !important;
  }

  .dropdown-menu a:hover {
    padding-left: 0.5rem !important;
  }

  /* Mobile Megamenu Override */
  .megamenu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding: 0.5rem 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: auto;
  }
  
  .megamenu-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .megamenu-item {
    display: block;
    padding: 0.4rem 0 !important;
    text-decoration: none;
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
    transition: all 0.2s ease;
  }
  
  .megamenu-item:hover {
    padding-left: 0.5rem !important;
    color: var(--accent) !important;
  }
  
  .megamenu-icon, .megamenu-desc {
    display: none !important;
  }
  
  .megamenu-title {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    margin: 0;
  }

  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }
}


/* Desktop Mega Menu (Coaching Submenu) */
@media (min-width: 769px) {
  .megamenu-parent {
    position: relative;
  }
  
  .megamenu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 600px;
    background-color: var(--bg-surface-solid);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
  }
  
  .megamenu-parent:hover .megamenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .megamenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  
  .megamenu-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: all 0.25s ease;
  }
  
  .megamenu-item:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
  
  .megamenu-icon {
    color: var(--accent);
    font-size: 1.75rem;
    margin-top: 0.15rem;
    transition: transform 0.25s ease;
  }
  
  .megamenu-item:hover .megamenu-icon {
    transform: scale(1.1);
  }
  
  .megamenu-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
  }
  
  .megamenu-desc {
    font-size: 0.825rem;
    line-height: 1.5;
    color: var(--text-secondary);
  }
  
  .megamenu-item.active {
    background-color: var(--bg-secondary);
    border-color: var(--accent);
  }
}
