/* ============================================
   THE ENGLISH GATE AMRITSAR - PREMIUM STYLES
   ============================================ */

/* ---------- CSS RESET & ROOT ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #1B4D3E;
  --primary-light: #2A7A5E;
  --primary-dark: #143D31;
  --secondary: #E8B86D;
  --accent: #C9A96E;
  --danger: #FF6B6B;
  --success: #4CAF50;

  --bg-primary: #FAFAF8;
  --bg-secondary: #F0EDE8;
  --bg-tertiary: #E8E4DE;
  --bg-dark: #1A1A2E;
  --bg-darker: #12121F;

  --text-primary: #1A1A2E;
  --text-secondary: #5A5A72;
  --text-light: #8B8BA0;
  --text-white: #FFFFFF;

  --white: #FFFFFF;
  --black: #000000;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(27, 77, 62, 0.08);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(27,77,62,0.04);
  --shadow-sm: 0 2px 8px rgba(27,77,62,0.06);
  --shadow-md: 0 8px 32px rgba(27,77,62,0.10);
  --shadow-lg: 0 20px 60px rgba(27,77,62,0.15);
  --shadow-xl: 0 30px 80px rgba(27,77,62,0.20);
  --shadow-gold: 0 8px 32px rgba(232,184,109,0.30);
  --shadow-primary: 0 8px 32px rgba(27,77,62,0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'DM Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --nav-height: 80px;
  --nav-height-mobile: 70px;
}

/* ---------- BASE STYLES ---------- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

/* Selection */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

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

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

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-lg {
  padding: var(--space-5xl) 0 calc(var(--space-5xl) * 1.5);
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

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

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.section-cream {
  background: var(--bg-secondary);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

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

.btn-danger:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-lg);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-primary);
  transition: all var(--duration-normal) ease;
  border-bottom: 1px solid rgba(27,77,62,0.08);
}

.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(27,77,62,0.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
}

.nav-logo svg {
  width: 40px;
  height: 40px;
}

.nav-logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
}

.nav.scrolled .nav-logo {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-sm) 0;
  transition: color var(--duration-fast) ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--duration-normal) ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) ease;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-3xl);
  overflow-y: auto;
}

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

.mobile-menu .nav-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-out);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.mobile-menu.active .nav-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 50ms; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 150ms; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 200ms; }
.mobile-menu.active .nav-link:nth-child(5) { transition-delay: 250ms; }
.mobile-menu.active .nav-link:nth-child(6) { transition-delay: 300ms; }

.mobile-menu-cta {
  margin-top: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--bg-tertiary);
  width: 100%;
  max-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu.active .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms;
}

.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}

.mobile-cta-btn svg {
  width: 22px;
  height: 22px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #E8F0ED 100%);
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(27,77,62,0.15), rgba(42,122,94,0.10));
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(232,184,109,0.20), rgba(201,169,110,0.10));
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(27,77,62,0.10), rgba(232,184,109,0.15));
  top: 50%;
  left: 30%;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,77,62,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,77,62,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(27,77,62,0.08), rgba(232,184,109,0.08));
  border: 1px solid rgba(27,77,62,0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
  opacity: 0;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.1s forwards;
  opacity: 0;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-5deg);
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 1s var(--ease-out) 0.2s forwards;
  opacity: 0;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,77,62,0.1), transparent);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card-1 {
  top: 40px;
  left: -40px;
  animation-delay: 0s;
}

.hero-float-card-2 {
  bottom: 60px;
  right: -30px;
  animation-delay: 1s;
}

.hero-float-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.hero-float-card-icon.green {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.hero-float-card-icon.gold {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.hero-float-card-text {
  font-family: var(--font-heading);
}

.hero-float-card-label {
  font-size: 12px;
  color: var(--text-light);
}

.hero-float-card-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 0.6s forwards;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  position: relative;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--primary);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(60px); opacity: 0; }
}

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

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

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

.marquee-section.dark {
  background: var(--bg-dark);
}

.marquee-section.gold {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.marquee-section.gold .marquee-content {
  color: var(--bg-dark);
}

.marquee-section.gold .marquee-item {
  color: var(--bg-dark);
  font-weight: 700;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}

.marquee-content:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

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

.marquee-item svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

/* Brands Marquee */
.brands-marquee {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.brands-marquee .marquee-content {
  gap: var(--space-4xl);
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.5;
  transition: all var(--duration-normal) ease;
  white-space: nowrap;
  filter: grayscale(100%);
}

.brand-item:hover {
  opacity: 1;
  color: var(--primary);
  filter: grayscale(0%);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

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

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

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, rgba(27,77,62,0.1), rgba(27,77,62,0.05));
  transition: all var(--duration-normal) ease;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color var(--duration-normal) ease;
}

.card:hover .card-icon svg {
  color: var(--white);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration-fast) ease;
}

.card-link:hover {
  gap: var(--space-md);
}

.card-link svg {
  width: 18px;
  height: 18px;
}

/* Service Cards */
.service-card {
  padding: var(--space-2xl);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.service-card.featured .card-title,
.service-card.featured .card-text {
  color: var(--white);
}

.service-card.featured .card-icon {
  background: rgba(255,255,255,0.15);
}

.service-card.featured .card-icon svg {
  color: var(--secondary);
}

.service-card.featured .card-link {
  color: var(--secondary);
}

/* Course Cards */
.course-card {
  padding: 0;
  overflow: hidden;
}

.course-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) ease;
}

.course-card:hover .course-card-image img {
  transform: scale(1.1);
}

.course-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 6px 12px;
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-card-body {
  padding: var(--space-xl);
}

.course-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.course-card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 13px;
  color: var(--text-light);
}

.course-card-meta svg {
  width: 16px;
  height: 16px;
}

.course-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.course-card-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--bg-tertiary);
}

.course-card-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.course-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

/* Testimonial Cards */
.testimonial-card {
  padding: var(--space-2xl);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

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

.testimonial-quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: var(--space-2xl);
}

.team-card-image {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--bg-secondary);
  transition: border-color var(--duration-normal) ease;
}

.team-card:hover .team-card-image {
  border-color: var(--secondary);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.team-card .role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team-card .bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  transition: all var(--duration-fast) ease;
}

.team-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.team-social svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

.team-social a:hover svg {
  color: var(--white);
}

/* Video Card */
.video-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.video-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.video-card:hover .video-card-image img {
  transform: scale(1.1);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,77,62,0.6), rgba(0,0,0,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal) ease;
}

.video-card:hover .video-card-overlay {
  background: linear-gradient(135deg, rgba(27,77,62,0.7), rgba(0,0,0,0.5));
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  box-shadow: var(--shadow-gold);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-left: 4px;
}

.video-card-body {
  padding: var(--space-lg);
}

.video-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.video-card span {
  font-size: 13px;
  color: var(--text-light);
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(27,77,62,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,184,109,0.15) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(232,184,109,0.2), rgba(232,184,109,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-value .counter {
  display: inline-block;
}

.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.stat-suffix {
  font-size: 40px;
  color: var(--secondary);
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.why-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.why-content h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.why-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

.cta-banner-buttons {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration-normal) ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  cursor: pointer;
  gap: var(--space-lg);
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-normal) ease;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform var(--duration-normal) ease;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item.active .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer-content {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info {
  padding: var(--space-2xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(27,77,62,0.1), rgba(27,77,62,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
}

.contact-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.contact-social svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

.contact-social a:hover svg {
  color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--bg-tertiary);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--duration-fast) ease;
  background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27,77,62,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235A5A72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

/* ---------- MAP ---------- */
.map-section {
  height: 400px;
  background: var(--bg-tertiary);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding-top: var(--space-4xl);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-md);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-fast) ease;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-links svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

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

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
}

.whatsapp-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.whatsapp-fab a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

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

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  fill: var(--white);
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--duration-normal) var(--ease-out);
}

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

.modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.modal-video {
  aspect-ratio: 16/9;
}

.modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- PAGE HEADERS ---------- */
.page-header {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,77,62,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,77,62,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 14px;
  color: var(--text-light);
}

.page-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

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

.timeline-item {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  position: relative;
}

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

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

.timeline-content {
  flex: 1;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: var(--space-xl);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

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

.pricing-card.popular {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.popular::before {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.pricing-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  padding: 6px 14px;
  background: var(--secondary);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-card.popular .pricing-badge {
  background: var(--white);
  color: var(--primary);
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--bg-tertiary);
  margin-bottom: var(--space-xl);
}

.pricing-card.popular .pricing-header {
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-card.popular .pricing-name {
  color: var(--secondary);
}

.pricing-description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.pricing-card.popular .pricing-description {
  color: rgba(255,255,255,0.7);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.pricing-currency {
  font-size: 24px;
  font-weight: 700;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-light);
}

.pricing-card.popular .pricing-period {
  color: rgba(255,255,255,0.6);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-card.popular .pricing-feature {
  color: rgba(255,255,255,0.85);
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-card.popular .pricing-feature svg {
  color: var(--secondary);
}

.pricing-card .btn {
  width: 100%;
}

/* ---------- VIDEO GALLERY ---------- */
.video-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text-secondary);
  border: 1.5px solid var(--bg-tertiary);
  transition: all var(--duration-fast) ease;
}

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

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ---------- BOOKING FORM ---------- */
.booking-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.booking-progress {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.booking-step.active {
  color: var(--primary);
}

.booking-step.completed {
  color: var(--success);
}

.booking-step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--duration-fast) ease;
}

.booking-step.active .booking-step-number {
  background: var(--primary);
  color: var(--white);
}

.booking-step.completed .booking-step-number {
  background: var(--success);
  color: var(--white);
}

.booking-step-line {
  width: 60px;
  height: 2px;
  background: var(--bg-tertiary);
}

.booking-step.completed + .booking-step-line {
  background: var(--success);
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.booking-form-step {
  display: none;
}

.booking-form-step.active {
  display: block;
  animation: fadeInUp 0.4s var(--ease-out);
}

.booking-form-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--bg-tertiary);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: var(--space-3xl);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--success), #66BB6A);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  animation: scaleIn 0.5s var(--ease-bounce);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.success-message h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.success-message p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-100 { transition-delay: 100ms; }
.animate-delay-200 { transition-delay: 200ms; }
.animate-delay-300 { transition-delay: 300ms; }
.animate-delay-400 { transition-delay: 400ms; }
.animate-delay-500 { transition-delay: 500ms; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1279px) {
  :root {
    --space-5xl: 100px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .nav-links {
    gap: var(--space-lg);
  }

  .hero-content {
    gap: var(--space-2xl);
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .pricing-grid {
    gap: var(--space-lg);
  }

  .pricing-card.popular {
    transform: scale(1.02);
  }

  .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 1023px) {
  :root {
    --space-5xl: 80px;
    --nav-height: 70px;
  }

  .nav {
    padding: 0 var(--space-md);
  }

  .nav-container {
    padding: 0 var(--space-md);
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-logo svg {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--duration-normal) ease;
  }

  /* Mobile menu full screen overlay */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) ease;
    padding-top: var(--nav-height-mobile);
  }

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

  .mobile-menu .nav-link {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) ease;
  }

  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link.active {
    background: rgba(27,77,62,0.08);
    color: var(--primary);
  }

  /* Hide desktop nav CTA on tablet */
  @media (max-width: 1023px) {
    .nav-cta .nav-phone {
      display: none;
    }
  }

  .nav-phone {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image img {
    height: 400px;
  }

  .hero-float-card-1 {
    left: 10px;
  }

  .hero-float-card-2 {
    right: 10px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-text {
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: none;
    order: -1;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }

  .timeline-content {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  :root {
    --space-5xl: 60px;
    --space-4xl: 60px;
    --space-3xl: 48px;
  }

  body {
    padding-bottom: 80px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) var(--space-md);
  }

  /* Hero section mobile - remove grid pattern on mobile for performance */
  .hero-grid {
    display: none;
  }

  /* Make hero badge more prominent on mobile */
  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: var(--space-md);
  }

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

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-image img {
    height: 300px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-stats {
    flex-wrap: nowrap;
    gap: var(--space-lg);
  }

  .hero-stat {
    flex: 1;
    min-width: 80px;
  }

  .hero-stat-value {
    font-size: 28px;
  }

  .hero-stat-label {
    font-size: 11px;
  }

  .hero-float-cards {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

  .booking-progress {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .booking-step-line {
    display: none;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-fab a {
    width: 54px;
    height: 54px;
  }

  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 997;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }

  .mobile-sticky-cta .btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }

  .mobile-sticky-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(27,77,62,0.3);
  }

  .mobile-sticky-cta .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  }

  .mobile-sticky-cta .btn-whatsapp svg {
    width: 18px;
    height: 18px;
  }

  /* Adjust content to not hide behind sticky CTA */
  main {
    padding-bottom: 80px;
  }

  /* Card refinements for mobile */
  .card {
    padding: var(--space-lg);
    border-radius: 16px;
  }

  /* Hero refinements */
  .hero {
    padding-top: var(--nav-height);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: var(--space-xl);
  }

  .hero-content {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Service cards mobile */
  .service-card {
    padding: var(--space-lg);
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  /* Testimonial cards mobile */
  .testimonial-card {
    padding: var(--space-lg);
  }

  .testimonial-avatar img {
    width: 56px;
    height: 56px;
  }

  /* Video cards mobile */
  .video-card {
    border-radius: 16px;
  }

  .video-card-content {
    padding: var(--space-md);
  }

  /* Pricing cards mobile */
  .pricing-card {
    padding: var(--space-lg);
    border-radius: 20px;
  }

  /* FAQ items mobile */
  .faq-item {
    padding: var(--space-md);
  }

  /* Team cards mobile */
  .team-card {
    padding: var(--space-lg);
  }

  /* Grid refinements */
  .grid-2,
  .grid-3,
  .grid-4 {
    gap: var(--space-md);
  }

  /* Marquee mobile */
  .marquee-content {
    gap: var(--space-xl);
  }

  /* Stats mobile */
  .stat-item {
    padding: var(--space-md);
  }

  /* Contact cards mobile */
  .contact-card {
    padding: var(--space-lg);
  }

  /* Footer mobile */
  .footer {
    padding: var(--space-3xl) 0;
  }

  .footer-main {
    gap: var(--space-xl);
  }

  /* Page header mobile */
  .page-header {
    padding: var(--space-3xl) 0;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  /* Form mobile */
  .form-group {
    margin-bottom: var(--space-md);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  /* Booking form mobile */
  .booking-step {
    padding: var(--space-lg);
  }

  .booking-progress {
    padding: var(--space-md);
  }

  /* CTA banner mobile */
  .cta-banner {
    padding: var(--space-2xl) var(--space-md);
  }

  .cta-banner-content {
    padding: var(--space-xl);
    border-radius: 20px;
  }

  /* Values grid mobile */
  .values-grid {
    gap: var(--space-md);
  }

  .value-item {
    padding: var(--space-lg);
  }

  /* Timeline mobile */
  .timeline-item {
    padding-left: 50px;
  }

  .timeline-content {
    padding: var(--space-md);
  }

  /* Modal mobile */
  .modal {
    padding: var(--space-md);
  }

  .modal-content {
    border-radius: 20px;
  }

  /* Ensure no horizontal overflow */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Hide sticky CTA on desktop and tablet */
@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

@media (max-width: 479px) {
  :root {
    --space-5xl: 48px;
    --space-4xl: 48px;
    --space-3xl: 36px;
    --nav-height: 65px;
    --nav-height-mobile: 65px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-logo svg {
    width: 32px;
    height: 32px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }

  .card {
    padding: var(--space-lg);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-header h1 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .section-title {
    font-size: clamp(24px, 6vw, 30px);
  }

  /* Stats section mobile - single column */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-suffix {
    font-size: 24px;
  }

  /* Service cards stack properly */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Course cards full width */
  .course-card-image {
    height: 180px;
  }

  /* Contact form single column */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer single column */
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  /* Marquee section mobile - smaller text */
  .marquee-section.gold {
    padding: var(--space-md) 0;
  }

  .marquee-item {
    font-size: 14px;
  }

  .marquee-item svg {
    width: 20px;
    height: 20px;
  }

  /* Mobile sticky CTA - full width buttons */
  .mobile-sticky-cta {
    padding: 10px var(--space-md);
    gap: var(--space-md);
  }

  .mobile-sticky-cta .btn {
    max-width: none;
  }

  /* Video section - full width cards */
  .video-card-image {
    height: 200px;
  }

  /* Testimonial cards */
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  /* FAQ accordion mobile */
  .faq-question {
    padding: var(--space-lg);
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 14px;
  }

  /* CTA banner mobile - stacked buttons */
  .cta-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }

  .cta-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Map section mobile */
  .map-section {
    height: 300px;
  }

  /* WhatsApp FAB - smaller on very small screens */
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-fab a {
    width: 52px;
    height: 52px;
  }

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

  /* Ensure no horizontal overflow on all elements */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  html {
    overflow-x: hidden;
  }
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 997;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.mobile-sticky-cta .btn {
  flex: 1;
  max-width: 200px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
}

.mobile-sticky-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(27,77,62,0.3);
}

.mobile-sticky-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,77,62,0.4);
}

.mobile-sticky-cta .btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.mobile-sticky-cta .btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* Hide sticky CTA on desktop/tablet */
@media (min-width: 1024px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* ---------- UTILITY CLASSES ---------- */
.hidden { display: none !important; }
.visible { display: block !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Print Styles */
@media print {
  .nav,
  .whatsapp-fab,
  .hero-scroll,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
}
