/* ========================================
   ASAP German Language Institute
   Global Stylesheet v2
   ======================================== */

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

/* ========================================
   1. CSS Variables / Design Tokens v2
   ======================================== */
:root {
  /* NEW COLOR THEME - Modern Navy + Coral */
  --primary: #FF6B35;         /* Vibrant Coral Orange */
  --primary-dark: #E85A24;    /* Deep Orange */
  --primary-light: #FF8C5A;   /* Light Coral */
  --primary-ultra: #FFEEE5;   /* Ultra light coral bg */

  --secondary: #1E2A3A;        /* Deep Navy */
  --secondary-light: #2D3E50;   /* Navy Light */
  --accent: #FFD166;           /* Warm Gold */

  --teal: #06D6A0;             /* Fresh Teal accent */
  --teal-dark: #05B587;        /* Deep Teal */

  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #FFF8F0;            /* Warm cream */
  --cream-warm: #FFF5EB;
  --dark: #0F1923;             /* Deep dark */
  --dark-soft: #1A2634;
  --text: #2C3E50;
  --text-light: #5D6D7E;
  --text-muted: #95A5A6;

  --success: #06D6A0;
  --error: #EF4444;
  --warning: #FFD166;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(15,25,35,0.06);
  --shadow-md: 0 4px 12px rgba(15,25,35,0.08);
  --shadow-lg: 0 8px 30px rgba(15,25,35,0.10);
  --shadow-xl: 0 20px 60px rgba(15,25,35,0.15);
  --shadow-primary: 0 4px 20px rgba(255,107,53,0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-cursor { cursor: none; }
body.no-cursor * { cursor: none !important; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
img, video { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ========================================
   3. Utility Classes
   ======================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Iconify inline icons */
.iconify { display: inline-flex; align-items: center; justify-content: center; }

/* IB legacy class */
.ib { display: inline-flex; align-items: center; justify-content: center; }

/* Section badge icon */
.section-badge .iconify { width: 14px; height: 14px; }

/* Button icons */
.btn .iconify { width: 18px; height: 18px; flex-shrink: 0; }

/* Navbar logo icon */
.navbar-logo-icon .iconify { width: 22px; height: 22px; color: var(--white); }

/* Navbar nav icons */
.navbar-nav a .iconify { width: 15px; height: 15px; opacity: 0.7; }
.navbar-nav a:hover .iconify { opacity: 1; }
.navbar-nav a.active .iconify { opacity: 1; }

/* Hero badge tag */
.hero-badge-tag .iconify { width: 14px; height: 14px; }

/* Hero social links */
.hero-social-links .iconify { width: 18px; height: 18px; }

/* Stat icon */
.stat-icon .iconify { width: 24px; height: 24px; }

/* Service icon */
.service-icon .iconify { width: 28px; height: 28px; }

/* Service link icon */
.service-link .iconify { width: 16px; height: 16px; }

/* Credential check */
.credential-check .iconify { width: 12px; height: 12px; color: var(--primary); }

/* Play button */
.play-btn .iconify { width: 24px; height: 24px; margin-left: 3px; }

/* Lead feature icon */
.lead-feature-icon .iconify { width: 22px; height: 22px; }

/* Form note icon */
.form-note .iconify { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }

/* Testimonial quote icon */
.testimonial-quote-icon .iconify { width: 40px; height: 40px; }

/* Testimonial stars */
.testimonial-stars .iconify { width: 16px; height: 16px; color: var(--accent); }

/* Footer social links */
.footer-social-links .iconify { width: 18px; height: 18px; }

/* Footer contact item */
.footer-contact-item .iconify { width: 18px; height: 18px; flex-shrink: 0; }

/* Chatbot button */
.chatbot-btn .iconify { width: 24px; height: 24px; }

/* Chatbot header icon */
.chatbot-header-icon .iconify { width: 20px; height: 20px; }

/* Chatbot close */
.chatbot-close .iconify { width: 16px; height: 16px; }

/* Chat avatar */
.chat-avatar .iconify { width: 16px; height: 16px; }

/* Chat option btn */
.chat-option-btn .iconify { width: 18px; height: 18px; flex-shrink: 0; }

/* Chat send btn */
.chat-send-btn .iconify { width: 16px; height: 16px; }

/* Toast icon */
.toast .iconify { width: 20px; height: 20px; }

/* Philosophy icon */
.philosophy-icon .iconify { width: 30px; height: 30px; }

/* Gallery overlay */
.gallery-overlay .iconify { width: 20px; height: 20px; color: var(--white); }

/* Pricing feature item */
.pricing-feature-item .iconify { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }
.pricing-feature-item.disabled .iconify { color: var(--text-muted); }

/* FAQ question */
.faq-question .iconify { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.active .faq-question .iconify { transform: rotate(180deg); }

/* Video empty */
.video-empty .iconify { width: 48px; height: 48px; margin: 0 auto 16px; }

/* Video modal close */
.video-modal-close .iconify { width: 18px; height: 18px; }

/* Before/after card */
.ba-card h4 .iconify { width: 22px; height: 22px; color: var(--primary); }
.ba-item .iconify { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.ba-item.before .iconify { color: var(--error); }
.ba-item.after .iconify { color: var(--success); }

/* Wizard step circle */
.wizard-step-circle .iconify { width: 20px; height: 20px; }

/* Wizard service icon */
.wizard-service-icon .iconify { width: 22px; height: 22px; }

/* Wizard back/next */
.wizard-back .iconify { width: 18px; height: 18px; }
.wizard-next .iconify { width: 18px; height: 18px; }

/* Confirm icon */
.confirm-icon .iconify { width: 40px; height: 40px; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ========================================
   4. Custom Cursor
   ======================================== */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, background var(--transition);
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cursor-ring.hover {
  width: 60px; height: 60px;
  background: rgba(255,107,53,0.08);
  border-color: var(--accent);
}

.cursor-ring.click {
  width: 30px; height: 30px;
  background: rgba(255,107,53,0.15);
}

.cursor-ring.hidden { opacity: 0; }

/* ========================================
   5. Page Wrapper / Fade In
   ======================================== */
.page-wrapper { opacity: 0; animation: pageFadeIn 0.8s ease 0.2s forwards; }

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   6. Scroll Reveal Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   7. Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; border-radius: var(--radius-md); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

.btn .ib, .btn-use-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ========================================
   8. Navbar - Fixed + Adaptive
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Initially transparent on hero */
  background: transparent;
}

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

/* Navbar on scroll */
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,25,35,0.08);
}

/* Hero section - navbar gets white text */
.navbar.hero-mode .navbar-logo-text,
.navbar.hero-mode .navbar-nav a:not(.btn),
.navbar.hero-mode .hamburger span {
  color: var(--white);
}

.navbar.hero-mode .navbar-logo-icon {
  background: rgba(255,255,255,0.15);
}

.navbar.hero-mode .navbar-nav a:not(.btn):hover {
  background: rgba(255,255,255,0.1);
}

.navbar.hero-mode .navbar-nav a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.navbar-logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.navbar-logo-icon .ib {
  width: 22px; height: 22px;
  color: var(--white);
}

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  transition: color var(--transition);
}

.navbar-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}

/* Nav links with icons */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.navbar-nav a .ib {
  width: 15px; height: 15px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.navbar-nav a:hover {
  color: var(--primary);
  background: rgba(255,107,53,0.06);
}

.navbar-nav a:hover .ib { opacity: 1; }

.navbar-nav a.active {
  color: var(--primary);
  background: rgba(255,107,53,0.08);
  font-weight: 600;
}

.navbar-nav a.active .ib { opacity: 1; }

.navbar-cta { margin-left: 8px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   9. Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--secondary);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,58,0.92) 0%, rgba(15,25,35,0.88) 50%, rgba(30,42,58,0.85) 100%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrapper {
  position: relative;
  width: 380px; height: 480px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,107,53,0.35);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-ring-1 {
  width: 350px; height: 350px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.hero-ring-2 {
  width: 440px; height: 440px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

.hero-ring-3 {
  width: 520px; height: 520px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
  border-color: rgba(255,107,53,0.15);
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.02); }
}

.hero-photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  z-index: 1;
  border: 3px solid rgba(255,107,53,0.25);
}

.hero-badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.hero-badge-number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800;
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.hero-content-col { padding-left: 20px; }

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-tag .ib { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255,107,53,0.85);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-social-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}

.hero-social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-social-links .ib { width: 18px; height: 18px; }

/* ========================================
   10. Page Hero (inner pages)
   ======================================== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content { position: relative; z-index: 1; text-align: center; }

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.page-hero-breadcrumb a:hover { color: var(--primary); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.page-hero-breadcrumb .current { color: var(--primary); }

/* ========================================
   11. Stats Bar
   ======================================== */
.stats-bar {
  background: var(--cream);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,107,53,0.1);
}

.stat-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.stat-icon .ib { width: 24px; height: 24px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ========================================
   12. Marquee Strip
   ======================================== */
.marquee-strip {
  background: var(--secondary);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  gap: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item span {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   13. Services Preview
   ======================================== */
.services-preview { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255,107,53,0.08);
}

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

.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,107,53,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-icon .ib { width: 28px; height: 28px; }

.service-title { font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; }
.service-desc {
  font-size: 0.9rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link .ib { width: 16px; height: 16px; }

/* ========================================
   14. About Strip
   ======================================== */
.about-strip { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-col { position: relative; }
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-floating-card {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.about-floating-card .number {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.about-floating-card .label {
  font-size: 0.8rem; font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-content-col .section-badge { margin-bottom: 16px; }
.about-content-col .section-title { margin-bottom: 20px; }
.about-desc {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 32px;
}

.credentials-list { margin-bottom: 36px; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.credential-check {
  width: 22px; height: 22px;
  background: rgba(255,107,53,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-check .ib { width: 12px; height: 12px; color: var(--primary); }
.credential-text { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

/* ========================================
   15. Parallax Divider
   ======================================== */
.parallax-divider {
  position: relative;
  padding: 120px 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231E2A3A" width="1200" height="600"/><circle fill="%232D3E50" cx="200" cy="300" r="150" opacity="0.3"/><circle fill="%232D3E50" cx="1000" cy="200" r="200" opacity="0.2"/></svg>') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,58,0.88) 0%, rgba(15,25,35,0.85) 100%);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.parallax-content .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.parallax-content .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 36px;
}

/* ========================================
   16. Video Preview Grid
   ======================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

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

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,58,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.video-card:hover .video-thumb-overlay {
  background: rgba(30,42,58,0.35);
}

.play-btn {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.play-btn .ib { width: 24px; height: 24px; margin-left: 3px; }

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--accent);
}

.video-meta { padding: 20px; }

.video-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,107,53,0.08);
  color: var(--primary);
  font-size: 0.7rem; font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.video-title {
  font-size: 0.95rem; font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* ========================================
   17. Lead Capture Form
   ======================================== */
.lead-form-section { background: var(--cream); }

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-features { padding-right: 40px; }
.lead-features .section-title { margin-bottom: 20px; }
.lead-features .section-subtitle { margin-bottom: 40px; }

.lead-feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.lead-feature-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.lead-feature-icon .ib { width: 22px; height: 22px; }

.lead-feature-text h4 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.lead-feature-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

.form-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-card-title { font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.form-card-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,107,53,0.1);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
}

.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.form-note .ib { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; padding: 16px; }

.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   18. Testimonials
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  border: 1px solid transparent;
}

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

.testimonial-quote-icon {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--primary);
  opacity: 0.1;
}

.testimonial-quote-icon .ib { width: 40px; height: 40px; }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars .ib {
  width: 18px; height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-text {
  font-size: 0.95rem; color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted); }

/* ========================================
   19. CTA Section
   ======================================== */
.cta-section {
  background: var(--secondary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   20. Footer
   ======================================== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .navbar-logo { margin-bottom: 20px; }
.footer-brand .navbar-logo-icon { background: var(--primary); }
.footer-brand .navbar-logo-icon .iconify,
.footer-brand .navbar-logo-icon .ib { color: var(--white); }
.footer-brand .navbar-logo-text { color: var(--white); }
.footer-brand .navbar-logo-text span { color: rgba(255,255,255,0.35); }

.footer-brand-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 24px;
}

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

.footer-social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}

.footer-social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-links .ib { width: 18px; height: 18px; }

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

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .ib {
  width: 18px; height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem; color: rgba(255,255,255,0.25);
}

/* ========================================
   21. Chatbot - Fixed Positions
   ======================================== */
.chatbot-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 901;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-btn {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-primary);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  animation: slideInRight 0.5s ease 1s both;
}

.chatbot-btn:hover {
  transform: scale(1.08);
  background: var(--primary-dark);
}

.chatbot-btn .ib { width: 24px; height: 24px; }

.chatbot-btn-label {
  background: var(--white);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: slideInRight 0.5s ease 1.2s both;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.chatbot-overlay {
  position: fixed;
  inset: 0;
  z-index: 902;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.chatbot-overlay.active {
  pointer-events: all;
  opacity: 1;
}

.chatbot-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.chatbot-window {
  position: absolute;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-height: 580px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition);
}

.chatbot-overlay.active .chatbot-window {
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-header-icon .ib { width: 20px; height: 20px; }
.chatbot-header-title { font-weight: 700; font-size: 0.95rem; }
.chatbot-header-sub { font-size: 0.78rem; opacity: 0.7; }

.chatbot-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.chatbot-close:hover { background: rgba(255,255,255,0.2); }
.chatbot-close .ib { width: 16px; height: 16px; }

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
  background: var(--off-white);
}

.chatbot-body::-webkit-scrollbar { width: 4px; }
.chatbot-body::-webkit-scrollbar-track { background: transparent; }
.chatbot-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }

.chat-message {
  display: flex;
  gap: 10px;
  animation: msgFadeIn 0.3s ease forwards;
  opacity: 0;
}

.chat-message.user { flex-direction: row-reverse; }

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar.bot {
  background: rgba(255,107,53,0.1);
  color: var(--primary);
}

.chat-avatar.user { background: var(--secondary); color: var(--white); }
.chat-avatar .ib { width: 16px; height: 16px; }

.chat-bubble {
  max-width: 260px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.chat-message.bot .chat-bubble { background: var(--white); }
.chat-message.user .chat-bubble { background: var(--secondary); color: var(--white); }
.chat-bubble p { margin-bottom: 8px; }
.chat-bubble p:last-child { margin-bottom: 0; }

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.chat-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid rgba(255,107,53,0.15);
  border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.chat-option-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateX(4px);
}

.chat-option-btn .ib { width: 18px; height: 18px; flex-shrink: 0; }

.chat-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chat-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.chat-action-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.chat-action-btn svg { width: 14px; height: 14px; }

.chat-input-bar {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

.chat-input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,107,53,0.12);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  background: var(--cream);
  transition: all var(--transition);
}

.chat-input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.chat-send-btn {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  flex-shrink: 0;
}

.chat-send-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.chat-send-btn .ib { width: 16px; height: 16px; }

/* ========================================
   22. WhatsApp Floating Button - Fixed
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px; /* Changed from right to left to avoid overlap */
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInLeft 0.5s ease 0.8s both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.whatsapp-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-btn svg { width: 26px; height: 26px; }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-label {
  background: var(--white);
  color: #25D366;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: slideInLeft 0.5s ease 1s both;
}

/* ========================================
   23. Toast Notification
   ======================================== */
.toast {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 10000;
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }
.toast .ib { width: 20px; height: 20px; }
.toast-message { font-size: 0.9rem; font-weight: 500; }

/* ========================================
   24. About Page - Enhanced Journey
   ======================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philosophy-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.philosophy-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(255,107,53,0.04), transparent);
  transition: height var(--transition);
}

.philosophy-card:hover {
  border-color: rgba(255,107,53,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.philosophy-card:hover::after { height: 100%; }

.philosophy-icon {
  width: 64px; height: 64px;
  background: rgba(255,107,53,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.philosophy-card:hover .philosophy-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.philosophy-icon .ib { width: 30px; height: 30px; }
.philosophy-title { font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; position: relative; z-index: 1; }
.philosophy-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; position: relative; z-index: 1; }

/* Enhanced Interactive Timeline */
.timeline-section { padding: 100px 0; }

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
  position: relative;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: calc(50% + 40px); }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: calc(50% + 40px); }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 2;
  transition: all var(--transition);
  cursor: pointer;
}

.timeline-item:hover .timeline-dot {
  width: 28px; height: 28px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent), 0 0 20px rgba(255,209,102,0.4);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 16px;
  background: rgba(255,107,53,0.06);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.timeline-item:hover .timeline-year {
  background: var(--primary);
  color: var(--white);
}

.timeline-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.timeline-item:hover .timeline-title { color: var(--primary); }

.timeline-text {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.6;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-text {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .timeline-line { left: 20px; }
  .timeline-item { justify-content: flex-start !important; padding-left: 50px !important; padding-right: 0 !important; }
  .timeline-dot { left: 20px; }
}

/* Enhanced Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.12); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,58,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.gallery-overlay .ib { width: 20px; height: 20px; color: var(--white); }

/* ========================================
   25. Services Page
   ======================================== */
.course-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-level-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.course-level-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.course-level-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.course-level-badge {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 20px;
}

.course-level-title { font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.course-level-desc {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 16px;
}
.course-level-duration { font-size: 0.82rem; font-weight: 600; color: var(--primary); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured .pricing-header { background: var(--primary); }
.pricing-card.featured .pricing-header .pricing-name,
.pricing-card.featured .pricing-header .pricing-price { color: var(--white); }

.pricing-header {
  padding: 36px 32px;
  background: var(--cream);
  text-align: center;
}

.pricing-name {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-price span { font-size: 1rem; font-weight: 500; vertical-align: super; }
.pricing-period { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.pricing-features { padding: 32px; }

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem; color: var(--text);
}

.pricing-feature-item .ib { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }
.pricing-feature-item.disabled { color: var(--text-muted); text-decoration: line-through; }
.pricing-feature-item.disabled .ib { color: var(--text-muted); }
.pricing-cta { padding: 0 32px 32px; }
.pricing-cta .btn { width: 100%; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-step { text-align: center; position: relative; }

.process-step-number {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
  transition: all var(--transition);
}

.process-step:hover .process-step-number {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.process-step-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process-step-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem; font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  gap: 16px;
}

.faq-question:hover { color: var(--primary); }
.faq-question .ib {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-question .ib { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 20px; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ========================================
   26. Videos Page - Enhanced
   ======================================== */
.video-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text);
  background: var(--cream);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  color: var(--white);
}

.videos-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card-item.hiding {
  opacity: 0;
  transform: scale(0.9);
}

.video-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}

.video-empty .ib { width: 48px; height: 48px; margin: 0 auto 16px; }

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 40px;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal {
  width: 100%;
  max-width: 900px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--transition);
}

.video-modal-overlay.active .video-modal { transform: scale(1); }

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--secondary);
}

.video-modal-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.video-modal-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.video-modal-close:hover { background: rgba(255,255,255,0.2); }
.video-modal-close .ib { width: 18px; height: 18px; }

.video-modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ========================================
   27. Testimonials Page
   ======================================== */
.testimonials-hero-stats {
  background: var(--cream);
  padding: 60px 0;
  margin-bottom: 60px;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.video-testimonial-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--secondary);
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  transition: all var(--transition);
}

.video-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.video-testimonial-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.video-testimonial-card:hover img { opacity: 0.4; }

.video-testimonial-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.video-testimonial-name {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.before-after-section {
  background: var(--cream);
  padding: 80px 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.ba-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.ba-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-card h4 .ib { width: 22px; height: 22px; color: var(--primary); }
.ba-list { display: flex; flex-direction: column; gap: 16px; }

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem; color: var(--text);
  line-height: 1.5;
}

.ba-item .ib { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.ba-item.before .ib { color: var(--error); }
.ba-item.after .ib { color: var(--success); }

/* ========================================
   28. Book Page / 4-Step Wizard
   ======================================== */
.book-wizard { max-width: 800px; margin: 0 auto; padding: 80px 24px; }

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 2px;
  background: rgba(255,107,53,0.1);
  z-index: 0;
}

.wizard-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.wizard-step-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(255,107,53,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}

.wizard-step-circle .ib { width: 20px; height: 20px; }

.wizard-step-indicator.active .wizard-step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.wizard-step-indicator.completed .wizard-step-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.wizard-step-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.wizard-step-indicator.active .wizard-step-label { color: var(--primary); }
.wizard-step-indicator.completed .wizard-step-label { color: var(--success); }

.wizard-content {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.wizard-step-title { font-size: 1.6rem; color: var(--dark); text-align: center; margin-bottom: 8px; }
.wizard-step-subtitle { text-align: center; color: var(--text-light); margin-bottom: 40px; }

.wizard-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.wizard-service-card {
  padding: 24px;
  border: 2px solid rgba(255,107,53,0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.wizard-service-card:hover {
  border-color: var(--primary-light);
  background: rgba(255,107,53,0.03);
}

.wizard-service-card.selected {
  border-color: var(--primary);
  background: rgba(255,107,53,0.06);
}

.wizard-service-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: all var(--transition);
}

.wizard-service-card.selected .wizard-service-icon {
  background: var(--primary);
  color: var(--white);
}

.wizard-service-icon .ib { width: 22px; height: 22px; }
.wizard-service-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.wizard-service-desc { font-size: 0.78rem; color: var(--text-light); }

.wizard-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.wizard-day-header {
  text-align: center;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  padding: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wizard-day {
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.wizard-day:hover:not(.disabled) { background: rgba(255,107,53,0.06); }
.wizard-day.today { border-color: var(--primary); }
.wizard-day.selected { background: var(--primary); color: var(--white); }
.wizard-day.disabled { color: var(--text-muted); cursor: not-allowed; opacity: 0.4; }

.wizard-time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wizard-time-slot {
  padding: 12px;
  text-align: center;
  border: 2px solid rgba(255,107,53,0.12);
  border-radius: var(--radius-md);
  font-size: 0.88rem; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--cream);
}

.wizard-time-slot:hover { border-color: var(--primary); }
.wizard-time-slot.selected { background: var(--primary); border-color: var(--primary); color: var(--white); }

.wizard-form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wizard-form-group.full { grid-column: 1 / -1; }

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.wizard-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.wizard-back:hover { background: rgba(255,107,53,0.06); }
.wizard-back .ib { width: 18px; height: 18px; }

.wizard-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.wizard-next:hover { background: var(--primary-dark); transform: translateY(-1px); }
.wizard-next .ib { width: 18px; height: 18px; }

.wizard-confirm-content { text-align: center; padding: 40px; }

.confirm-icon {
  width: 80px; height: 80px;
  background: rgba(6,214,160,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
}

.confirm-icon .ib { width: 40px; height: 40px; }
.confirm-title { font-size: 1.6rem; color: var(--dark); margin-bottom: 8px; }
.confirm-subtitle { color: var(--text-light); margin-bottom: 32px; }

.confirm-details {
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: left;
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-md);
}

.confirm-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
}

.confirm-detail-item:last-child { border-bottom: none; }
.confirm-detail-item span:first-child { color: var(--text-light); }
.confirm-detail-item span:last-child { font-weight: 600; color: var(--dark); }

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   29. Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-photo-col { display: none; }
  .hero-content-col { padding-left: 0; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-ctas, .hero-social { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-floating-card { right: 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:nth-child(2)::after { display: none; }

  .video-grid, .testimonials-grid, .videos-main-grid, .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Timeline on tablet - single column */
  .timeline-center-line { left: 20px; }
  .timeline-item { flex-direction: column !important; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left; padding-left: 50px; padding-right: 0;
  }
  .timeline-dot { left: 20px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .navbar-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,248,240,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .navbar-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar-nav a { font-size: 1.1rem; padding: 12px 20px; }
  .navbar-cta { margin-left: 0; }
  .section { padding: 70px 0; }
  .hero .container { padding-top: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid, .philosophy-grid, .course-levels-grid,
  .video-grid, .testimonials-grid, .videos-main-grid, .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .chatbot-window {
    width: calc(100% - 32px);
    right: 16px; left: 16px;
    max-height: 75vh;
    bottom: 90px;
  }

  .wizard-content { padding: 28px 20px; }
  .wizard-service-grid { grid-template-columns: 1fr; }
  .wizard-form-group { grid-template-columns: 1fr; }
  .wizard-time-slots { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 32px 24px; }
  .wizard-progress::before { display: none; }
  .wizard-step-label { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stat-number { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .whatsapp-label, .chatbot-btn-label { display: none; }
  .whatsapp-float { left: 16px; }
  .chatbot-toggle { right: 16px; }
  .whatsapp-btn, .chatbot-btn { width: 50px; height: 50px; }
  .whatsapp-float { bottom: 20px; }
  .chatbot-toggle { bottom: 20px; }
}

/* ========================================
   30. Accessibility & Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}
