/* ================================================
   Iqra Academy - Main Stylesheet
   ================================================ */

:root {
  /* Blue palette - matching logo */
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;
  --color-primary-950: #172554;

  /* Gold palette */
  --color-gold-50: #fefce8;
  --color-gold-100: #fef9c3;
  --color-gold-200: #fef08a;
  --color-gold-300: #fde047;
  --color-gold-400: #facc15;
  --color-gold-500: #eab308;
  --color-gold-600: #ca8a04;
  --color-gold-700: #a16207;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background: #fff;
  color: #1f2937;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

.font-amiri { font-family: 'Amiri', serif; }
.font-naskh { font-family: 'Noto Naskh Arabic', serif; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-slide-up { animation: slideUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* Geometric pattern */
.geometric-pattern {
  background-image: 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.05'%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");
}

.hero-gradient {
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 25%, #1e40af 50%, #1d4ed8 75%, #172554 100%);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { width: 50px; height: 50px; object-fit: contain; }
.navbar-logo-text h1 { font-size: 1.125rem; font-weight: 700; color: white; line-height: 1.2; }
.navbar-logo-text p { font-size: 0.75rem; color: var(--color-gold-300); font-family: 'Amiri', serif; }
.navbar.scrolled .navbar-logo-text h1 { color: var(--color-primary-800); }
.navbar.scrolled .navbar-logo-text p { color: var(--color-gold-600); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link { color: var(--color-primary-800); }
.navbar.scrolled .nav-link:hover { background: var(--color-primary-50); color: var(--color-primary-600); }

.btn-pay {
  margin-right: 0.75rem;
  padding: 0.625rem 1.5rem;
  background: var(--color-gold-400);
  color: var(--color-primary-900);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-pay:hover {
  background: var(--color-gold-500);
  box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.4);
}

.menu-toggle { display: block; padding: 0.5rem; color: white; }
.navbar.scrolled .menu-toggle { color: var(--color-primary-800); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
}
.mobile-menu.active { display: block; animation: slideUp 0.3s ease-out forwards; }
.mobile-menu .nav-link {
  display: block;
  width: 100%;
  text-align: right;
  padding: 0.75rem 1rem;
  color: var(--color-primary-800);
  margin-bottom: 0.25rem;
}
.mobile-menu .btn-pay { display: block; width: 100%; margin-top: 0.75rem; margin-right: 0; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh + 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-deco-1 { top: 80px; right: 80px; width: 288px; height: 288px; background: rgba(250, 204, 21, 0.1); }
.hero-deco-2 { bottom: 80px; left: 80px; width: 384px; height: 384px; background: rgba(96, 165, 250, 0.1); }

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 7rem 0 8rem;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: right; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  color: var(--color-gold-300);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge-dot { width: 0.5rem; height: 0.5rem; background: var(--color-gold-400); border-radius: 50%; animation: pulse 2s infinite; }

.hero-bismillah {
  font-family: 'Amiri', serif;
  font-size: 1.5rem;
  color: var(--color-gold-300);
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0.9;
}
@media (min-width: 640px) { .hero-bismillah { font-size: 1.875rem; } }

.hero-verse {
  font-family: 'Amiri', serif;
  font-size: 1.875rem;
  color: var(--color-gold-200);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.7;
}
@media (min-width: 640px) { .hero-verse { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-verse { font-size: 3rem; } }

.hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
  white-space: nowrap;
}
@media (min-width: 640px) { .hero-title { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }
.hero-title-highlight { position: relative; display: inline-block; color: var(--color-gold-400); }
.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0; right: 0;
  height: 0.25rem;
  background: var(--color-gold-400);
  border-radius: 9999px;
}

.hero-subtitle {
  font-family: 'Amiri', serif;
  font-size: 1.125rem;
  color: var(--color-gold-200);
  margin-bottom: 1.5rem;
}
.hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .hero-description { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero-description { margin-right: 0; } }

.hero-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem 2rem; border-radius: 1rem; font-size: 1.125rem; font-weight: 700; transition: all 0.3s; }
.btn-primary {
  background: var(--color-gold-400);
  color: var(--color-primary-900);
}
.btn-primary:hover { background: var(--color-gold-500); box-shadow: 0 20px 25px -5px rgba(250, 204, 21, 0.3); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-gold-400);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.hero-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  white-space: nowrap;
}

.hero-illustration { display: none; justify-content: center; }
@media (min-width: 1024px) { .hero-illustration { display: flex; } }
.hero-circle-outer {
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-circle-inner {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem;
}
.hero-circle-inner img { max-width: 280px; height: auto; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-badge.primary { background: var(--color-primary-50); color: var(--color-primary-700); }
.section-badge.gold { background: var(--color-gold-50); color: var(--color-gold-700); }
.section-badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; }
.section-badge.primary .section-badge-dot { background: var(--color-primary-500); }
.section-badge.gold .section-badge-dot { background: var(--color-gold-500); }
.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-primary-900);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .section-title { font-size: 3rem; } }
.section-title-highlight { color: var(--color-gold-500); }
.section-description {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 6rem; height: 0.25rem;
  background: linear-gradient(to left, var(--color-primary-500), var(--color-gold-500));
  border-radius: 9999px;
  margin: 1.5rem auto 0;
}

/* ===== PROGRAMS ===== */
.programs-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Green gradient overlay on hover */
.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #064e3b 0%,
    #065f46 20%,
    #047857 40%,
    #059669 60%,
    #10b981 80%,
    #6ee7b7 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(6, 95, 70, 0.45);
}
.program-card:hover::before { opacity: 1; }

/* All content in card needs to be above the overlay */
.program-card > * { position: relative; z-index: 1; }

.program-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}
.program-icon.green { background: #d1fae5; }
.program-icon.blue { background: var(--color-primary-50); }
.program-icon.purple { background: #f3e8ff; }
.program-icon.rose { background: #ffe4e6; }
.program-icon.amber { background: #fef3c7; }
.program-icon.sky { background: #e0f2fe; }

.program-card:hover .program-icon {
  background: rgba(255, 255, 255, 0.2);
}

.program-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary-900);
  transition: color 0.5s ease;
}
.program-card:hover .program-title { color: white; }

.program-desc {
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  transition: color 0.5s ease;
}
.program-card:hover .program-desc { color: white; }

.program-features { list-style: none; }
.program-features li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  transition: color 0.5s ease;
}
.program-card:hover .program-features li { color: white; }

.program-features svg {
  width: 1rem; height: 1rem;
  color: var(--color-primary-500);
  flex-shrink: 0;
  transition: color 0.5s ease;
}
.program-card:hover .program-features svg { color: var(--color-gold-400); }

.program-cta {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  transition: border-color 0.5s ease;
}
.program-card:hover .program-cta { border-top-color: rgba(255, 255, 255, 0.2); }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%; padding: 0.75rem;
  background: linear-gradient(to left, #22c55e, #16a34a);
  color: white;
  border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 700;
  transition: all 0.3s;
}
.btn-whatsapp:hover { box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4); }

/* ===== STATS ===== */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 25%, #1e40af 50%, #1d4ed8 75%, #172554 100%);
  position: relative;
  overflow: hidden;
}

/* Plus pattern background */
.stats-pattern-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.18'%3E%3Cpath d='M19 14h2v4h4v2h-4v4h-2v-4h-4v-2h4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.stats-decoration-1 {
  position: absolute;
  top: 0; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.stats-decoration-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 24rem; height: 24rem;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.stats-section .container { position: relative; z-index: 10; }

.stats-section h2 { font-size: 1.875rem; font-weight: 900; color: white; margin-bottom: 1rem; text-align: center; }
@media (min-width: 640px) { .stats-section h2 { font-size: 2.25rem; } }
.stats-section p { color: rgba(255,255,255,0.6); font-size: 1.125rem; text-align: center; margin-bottom: 3rem; }
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(6, 1fr); } }

.stat-card {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(250, 204, 21, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(250, 204, 21, 0.25);
}
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
}
.stat-card:hover .stat-icon {
  transform: scale(1.35) rotate(-5deg);
  filter: drop-shadow(0 6px 12px rgba(250, 204, 21, 0.5));
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold-400);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
@media (min-width: 768px) { .stat-num { font-size: 2.25rem; } }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; position: relative; z-index: 1; }

/* ===== CURRICULUMS ===== */
.curr-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .curr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .curr-grid { grid-template-columns: repeat(4, 1fr); } }

.curr-card {
  border-radius: 1rem;
  padding: 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}
.curr-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.curr-card.amber { background: #fffbeb; border-color: #fde68a; }
.curr-card.emerald { background: #ecfdf5; border-color: #a7f3d0; }
.curr-card.red { background: #fef2f2; border-color: #fecaca; }
.curr-card.green { background: #f0fdf4; border-color: #bbf7d0; }
.curr-card.teal { background: #f0fdfa; border-color: #99f6e4; }
.curr-card.sky { background: #f0f9ff; border-color: #bae6fd; }
.curr-card.indigo { background: #eef2ff; border-color: #c7d2fe; }
.curr-card.blue { background: #eff6ff; border-color: #bfdbfe; }

.curr-flag { font-size: 2.5rem; }
.curr-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.curr-name { font-size: 0.875rem; color: var(--color-primary-700); font-weight: 600; }
.curr-title { font-weight: 700; color: #111827; font-size: 1.125rem; }
.curr-desc { font-size: 0.875rem; color: #4b5563; margin-bottom: 1.25rem; line-height: 1.7; }
.curr-subjects { list-style: none; }
.curr-subjects li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: #374151;
  margin-bottom: 0.5rem;
}
.curr-subjects li::before {
  content: '';
  width: 0.375rem; height: 0.375rem;
  background: var(--color-primary-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: var(--color-primary-200); }
.feature-icon {
  width: 4rem; height: 4rem;
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-card:hover .feature-icon { background: var(--color-primary-100); }
.feature-icon svg { width: 2rem; height: 2rem; }
.feature-title { font-size: 1.125rem; font-weight: 700; color: #111827; margin-bottom: 0.75rem; }
.feature-desc { color: #4b5563; font-size: 0.875rem; line-height: 1.7; }

.cta-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, #0a3d6f 0%, #125790 25%, #1a6fad 50%, #125790 75%, #0a3d6f 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.18'%3E%3Cpath d='M19 14h2v4h4v2h-4v4h-2v-4h-4v-2h4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h3 { font-size: 1.875rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.125rem; }

/* ===== PRICING ===== */
.pricing-form {
  max-width: 72rem;
  margin: 0 auto;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-gold-200);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .pricing-form { padding: 2.5rem; } }
.pricing-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to left, var(--color-primary-500), var(--color-gold-400), var(--color-primary-500));
}

.pricing-form-header { text-align: center; margin-bottom: 2rem; }
.pricing-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pricing-form-title { font-size: 1.25rem; font-weight: 700; color: var(--color-primary-900); }
@media (min-width: 768px) { .pricing-form-title { font-size: 1.5rem; } }
.pricing-form-title span { color: var(--color-gold-600); }

.selectors-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .selectors-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .selectors-grid { grid-template-columns: repeat(4, 1fr); } }

.selector-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-primary-900);
  margin-bottom: 0.5rem;
}
.selector-label.gold { color: var(--color-gold-700); }
.selector-num {
  width: 2rem; height: 2rem;
  background: var(--color-primary-700);
  color: white;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 900;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.selector-label.gold .selector-num { background: var(--color-gold-500); }

.select-wrapper { position: relative; }
.select-wrapper select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-primary-300);
  border-radius: 0.75rem;
  background: white;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-900);
  appearance: none;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
}
.select-wrapper select:hover { border-color: var(--color-primary-500); }
.select-wrapper select:focus { border-color: var(--color-primary-600); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2); }
.select-wrapper select:disabled { background: #f3f4f6; cursor: not-allowed; opacity: 0.6; color: #6b7280; }
.select-wrapper.gold select { border-color: var(--color-gold-400); background: var(--color-gold-50); color: var(--color-gold-800); }
.select-wrapper.gold select:hover { border-color: var(--color-gold-500); }

.select-arrow {
  position: absolute;
  left: 0.75rem; top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary-700);
  pointer-events: none;
}
.select-wrapper.gold .select-arrow { color: var(--color-gold-700); }

.price-display {
  margin-top: 2rem;
  background: linear-gradient(to bottom right, white, #eff6ff, var(--color-primary-50));
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 4px solid var(--color-primary-700);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .price-display { padding: 2rem; } }
.price-display::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(to left, var(--color-primary-700), var(--color-gold-400), var(--color-primary-700));
}

.price-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .price-grid { grid-template-columns: 1fr 1fr; } }

.offer-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.5rem 1rem;
  background: #ef4444;
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  animation: pulse 2s infinite;
}

.price-package-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-gold-400);
  color: var(--color-primary-900);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.price-curriculum {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: var(--color-primary-900);
}
@media (min-width: 768px) { .price-curriculum { font-size: 1.875rem; } }
.price-subject {
  color: var(--color-primary-700);
  font-weight: 900;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary-200);
}

.price-info-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 1rem; }
.price-info-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.8);
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--color-primary-100);
  color: var(--color-primary-900);
  font-weight: 700;
}
.price-info-item.green { background: #f0fdf4; border-color: #86efac; border-width: 2px; }
.price-info-item-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--color-primary-100);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.price-info-item.green .price-info-item-icon { background: #bbf7d0; }
.price-info-strong { font-weight: 900; color: var(--color-primary-800); }
.price-info-strong.green { color: #15803d; }

.price-card {
  background: linear-gradient(to bottom right, var(--color-primary-700), var(--color-primary-900));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 4px solid var(--color-gold-400);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.price-card-label { color: white; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; }
.price-original {
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}
.price-final {
  text-align: center;
}
.price-final-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-gold-300);
  line-height: 1;
}
@media (min-width: 768px) { .price-final-num { font-size: 3.75rem; } }
.price-final-currency { font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.price-monthly { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; font-weight: 700; text-align: center; }

.savings-badge {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: rgba(239, 68, 68, 0.3);
  border: 2px solid rgba(248, 113, 113, 0.5);
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 900;
  color: white;
}
.price-per-session {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.btn-pay-package {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.875rem;
  background: linear-gradient(to left, var(--color-gold-400), var(--color-gold-500));
  color: var(--color-primary-900);
  border-radius: 0.75rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-pay-package:hover { background: linear-gradient(to left, var(--color-gold-500), var(--color-gold-600)); box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.4); }

.btn-free-trial {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.625rem;
  background: #22c55e;
  color: white;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 900;
  border: 2px solid #4ade80;
  transition: all 0.3s;
}
.btn-free-trial:hover { background: #16a34a; box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4); }

.empty-selection {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(to left, var(--color-primary-50), var(--color-gold-50));
  border-radius: 1rem;
  border: 2px dashed var(--color-primary-200);
  text-align: center;
}
.empty-selection-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.empty-selection-title { color: var(--color-primary-900); font-weight: 700; margin-bottom: 0.25rem; }
.empty-selection-hint { font-size: 0.875rem; color: #4b5563; }

.notes-grid {
  max-width: 64rem;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .notes-grid { grid-template-columns: repeat(3, 1fr); } }
.note-card {
  background: white;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.note-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.note-icon.green { background: #d1fae5; }
.note-icon.blue { background: var(--color-primary-100); }
.note-icon.gold { background: var(--color-gold-100); }
.note-card h4 { font-weight: 700; color: #111827; margin-bottom: 0.25rem; font-size: 0.875rem; }
.note-card p { font-size: 0.75rem; color: #4b5563; line-height: 1.7; }

.discount-banner { margin-top: 2.5rem; text-align: center; }
.discount-banner-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(to left, #fef2f2, #fff7ed);
  border: 2px solid #fecaca;
  border-radius: 1rem;
  color: #b91c1c;
}
@media (min-width: 640px) { .discount-banner-inner { flex-direction: row; } }
.discount-banner-icon { font-size: 1.875rem; }
.discount-banner-text { text-align: right; }
.discount-banner-text p:first-child { font-weight: 700; }
.discount-banner-text p:last-child { font-size: 0.875rem; color: #dc2626; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: var(--color-primary-200); }
.testimonial-quote { color: var(--color-primary-200); margin-bottom: 1rem; }
.testimonial-quote svg { width: 2.5rem; height: 2.5rem; }
.testimonial-text { color: #374151; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--color-gold-500); font-size: 1.125rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid #f3f4f6; }
.testimonial-avatar { font-size: 1.875rem; }
.testimonial-name { font-weight: 700; color: #111827; }
.testimonial-program {
  font-size: 0.75rem;
  color: var(--color-primary-600);
  background: var(--color-primary-50);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  margin-top: 0.25rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }

.contact-form {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.contact-form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .contact-form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  text-align: right;
  transition: all 0.2s;
  outline: none;
  background: white;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.form-textarea { resize: none; min-height: 100px; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to left, var(--color-primary-700), var(--color-primary-800));
  color: white;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-submit:hover { background: linear-gradient(to left, var(--color-primary-800), var(--color-primary-900)); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

.success-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-card h3 { font-size: 1.5rem; font-weight: 700; color: #166534; margin-bottom: 0.75rem; }
.success-card p { color: #16a34a; margin-bottom: 1rem; }

.contact-info {
  background: linear-gradient(to left, var(--color-primary-700), var(--color-primary-800));
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
}
.contact-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 1rem;
  transition: all 0.2s;
}
.contact-info-item:hover { background: rgba(255,255,255,0.05); }
.contact-info-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.contact-info-icon.green { background: #22c55e; box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.3); }
.contact-info-icon.gold { background: var(--color-gold-500); box-shadow: 0 4px 6px -1px rgba(234, 179, 8, 0.3); }
.contact-info-icon svg { width: 1.5rem; height: 1.5rem; color: white; }
.contact-info-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.contact-info-value { font-weight: 700; font-size: 1.125rem; }

.contact-hours {
  background: linear-gradient(to bottom right, #f0fdf4, white, var(--color-primary-50));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid #bbf7d0;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}
.contact-hours::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to left, #22c55e, var(--color-primary-500), #22c55e);
}
.contact-hours h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hours-247 {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
}
.hours-247-badge {
  background: linear-gradient(to bottom right, #22c55e, #16a34a);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  display: inline-block;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.hours-247-text {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hours-247-num { font-size: 3rem; font-weight: 900; color: white; }
.hours-247-divider { font-size: 1.5rem; font-weight: 900; color: white; }
.hours-247-subtitle { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 700; margin-top: 0.25rem; }

.hours-info { display: flex; flex-direction: column; gap: 0.75rem; }
.hours-info-row {
  display: flex; align-items: center; gap: 0.75rem;
  background: white;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #d1fae5;
}
.hours-info-icon {
  width: 2.5rem; height: 2.5rem;
  background: #d1fae5;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  padding: 4rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-logo-img {
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-logo-img img { width: 50px; height: 50px; object-fit: contain; }
.footer-logo h3 { font-size: 1.125rem; font-weight: 700; }
.footer-logo p { color: var(--color-gold-300); font-size: 0.875rem; font-family: 'Amiri', serif; }

.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social:hover { background: var(--color-gold-500); transform: scale(1.1); }

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-section h4::before {
  content: '';
  width: 0.25rem; height: 1.5rem;
  background: var(--color-gold-500);
  border-radius: 9999px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-gold-400); }

.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: white;
  margin-bottom: 0.75rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--color-gold-400); box-shadow: 0 0 0 2px var(--color-gold-400); }
.btn-newsletter {
  width: 100%;
  padding: 0.75rem;
  background: var(--color-gold-400);
  color: var(--color-primary-900);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.3s;
}
.btn-newsletter:hover { background: var(--color-gold-500); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copyright { color: rgba(255,255,255,0.4); font-size: 0.875rem; text-align: center; }
.footer-bottom-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a, .footer-bottom-links button {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-bottom-links a:hover, .footer-bottom-links button:hover { color: var(--color-gold-400); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  color: white;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
.whatsapp-btn svg { width: 32px; height: 32px; }

/* Floating decorative icons around HERO LOGO */
.hero-float-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 5;
  pointer-events: none;
}
.hero-float-top-right {
  top: 20px;
  right: 30px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  animation: floatY 3s ease-in-out infinite;
}
.hero-float-bottom-right {
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  animation: floatY 3s ease-in-out infinite 1.5s;
}
.hero-float-top-left {
  top: 20px;
  left: 30px;
  background: linear-gradient(135deg, #34d399, #10b981);
  animation: floatY 3s ease-in-out infinite 0.75s;
}
.hero-float-bottom-left {
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  animation: floatY 3s ease-in-out infinite 2.25s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--color-primary-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-800); }

/* Select fix for all browsers */
select {
  color: var(--color-primary-900) !important;
  font-weight: 700;
  background-color: #ffffff;
}
select:disabled { color: #6b7280 !important; background-color: #f3f4f6 !important; }
select option { color: var(--color-primary-900); background-color: #ffffff; padding: 10px; font-size: 14px; font-weight: 700; }

/* Page hidden helper */
.hidden { display: none !important; }
