/* ============================================
   AL QURAN ACADEMY — STYLES
   Aesthetic: Refined Luxury | Dark Emerald & Gold
   Fonts: Playfair Display + DM Sans + Noto Arabic
   ============================================ */

:root {
  --emerald: #0B3D2E;
  --emerald-mid: #145A42;
  --emerald-light: #1E7A58;
  --gold: #C8A96E;
  --gold-light: #E8C98E;
  --gold-dim: rgba(200, 169, 110, 0.15);
  --cream: #0D1A14;
  --cream-dim: #111F18;
  --charcoal: #F0EBE0;
  --text: #E8E2D8;
  --text-muted: rgba(232, 226, 216, 0.55);
  --white: #152018;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-arabic: 'Noto Naskh Arabic', serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-sans); }
strong { font-weight: 600; }

/* ---- Canvas ---- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

/* ---- Cursor glow ---- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ---- Container ---- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Sections ---- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--emerald);
  color: var(--cream);
}

.section-dark .text-muted { color: rgba(248, 244, 236, 0.65); }

/* ---- Typography ---- */
em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.section-dark .section-head h2 { color: var(--cream); }

.section-head p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-dark .section-head p { color: rgba(248, 244, 236, 0.65); }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(13, 26, 20, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  box-shadow: var(--shadow-sm);
}



.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.logo-arabic {
  font-family: var(--font-arabic);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}



.footer-logo .logo-text { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--gold-light); }

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #0B1A13;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(200, 169, 110, 0.4);
}

.btn-ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--emerald);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.4);
}

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

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-3d-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-3d-container canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--gold-dim);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8.5vw, 96px);
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.hero h1 .line-1 { display: block; }

.hero h1 .line-2 {
  display: block;
  margin-top: 4px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 700;
}

.subhead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 44px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 900;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 4px;
}



.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(200, 169, 110, 0.4), transparent);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Courses Grid ---- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.course-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: var(--radius);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 169, 110, 0.4);
}

.course-card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 900;
  color: rgba(200, 169, 110, 0.1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}

.course-card:hover .card-num {
  color: rgba(200, 169, 110, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform var(--transition);
}

.course-card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.course-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.course-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- Showcase / Method ---- */
.showcase-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  position: relative;
  z-index: 2;
}

.method-item:last-child { border-bottom: none; }

.method-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  white-space: nowrap;
}

.method-content h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 12px;
}

.method-content p {
  font-size: 16px;
  color: rgba(248, 244, 236, 0.65);
  line-height: 1.7;
}

.method-visual {
  display: flex;
  justify-content: flex-end;
}

/* Orb animation */
.method-orb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.orb-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.3);
  animation: orbPulse 3s infinite ease-out;
}

.orb-ring.delay-1 { inset: -22px; animation-delay: 1s; }
.orb-ring.delay-2 { inset: -36px; animation-delay: 2s; }

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

/* Progress bar demo */
.progress-bar-demo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.pb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(248, 244, 236, 0.7);
}

.pb-row span { min-width: 56px; }

.pb {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.pb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-light), var(--gold));
  border-radius: 99px;
  animation: pbLoad 1.5s ease forwards;
}

@keyframes pbLoad {
  from { width: 0; }
}

.pb-row em {
  font-style: normal;
  color: var(--gold);
  font-size: 12px;
  min-width: 34px;
  text-align: right;
}

/* Globe dots */
.timezone-globe {
  width: 200px;
  height: 140px;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.globe-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 169, 110, 0.6);
  animation: dotPulse 2s infinite;
}

.globe-dot:nth-child(2) { animation-delay: 0.4s; }
.globe-dot:nth-child(3) { animation-delay: 0.8s; }
.globe-dot:nth-child(4) { animation-delay: 1.2s; }
.globe-dot:nth-child(5) { animation-delay: 1.6s; }

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.globe-line {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 40% at 50% 50%, transparent 48%, rgba(200, 169, 110, 0.08) 49%, rgba(200, 169, 110, 0.08) 51%, transparent 52%),
    radial-gradient(ellipse 40% 90% at 50% 50%, transparent 48%, rgba(200, 169, 110, 0.08) 49%, rgba(200, 169, 110, 0.08) 51%, transparent 52%);
}

/* ---- Testimonials ---- */
.testimonial-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-track-outer {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 160px;
  color: rgba(200, 169, 110, 0.07);
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.tcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

.tcard-flag { font-size: 28px; }

.testimonial-card blockquote {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-style: italic;
  font-family: var(--font-serif);
  border: none;
  padding: 0;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.tcard-author strong {
  display: block;
  font-size: 16px;
  color: var(--charcoal);
}

.tcard-author span {
  font-size: 13px;
  color: rgba(28, 36, 32, 0.55);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 169, 110, 0.3);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(200, 169, 110, 0.25);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.dot.active {
  width: 24px;
  background: var(--gold);
}

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

.cta-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.cta-canvas canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(248, 244, 236, 0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-actions { margin-bottom: 28px; }

.cta-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(248, 244, 236, 0.55);
}

.cta-trust span { display: flex; align-items: center; gap: 6px; }

/* ---- Footer ---- */
.footer {
  background: #080f0b;
  color: var(--cream);
}

.footer-topbar {
  background: linear-gradient(90deg, var(--emerald), var(--emerald-mid));
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.footer-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-topbar-text { font-size: 14px; color: rgba(248, 244, 236, 0.8); }

.footer-topbar-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--transition);
}

.footer-topbar-cta:hover { color: var(--gold-light); }

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

.footer-brand-col .footer-logo .logo-text { color: var(--gold-light); }

.footer-tagline {
  font-size: 14px;
  color: rgba(248, 244, 236, 0.5);
  line-height: 1.75;
  margin: 20px 0 24px;
  max-width: 300px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  font-size: 12px;
  color: rgba(248, 244, 236, 0.65);
}

.fb-icon { color: var(--gold); font-size: 11px; }

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 244, 236, 0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.45);
  margin-bottom: 11px;
  transition: color var(--transition);
}

.footer-col a { color: inherit; }
.footer-col a:hover { color: rgba(248, 244, 236, 0.9); }

.footer-contact-col h4 {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a.footer-contact-item:hover { color: var(--gold-light); }

.fci-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.fci-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(248, 244, 236, 0.3);
  margin-bottom: 2px;
}

.footer-contact-item strong {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.7);
  font-weight: 500;
}

.footer-newsletter {
  background: rgba(200, 169, 110, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 14px;
  padding: 18px 20px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.5);
  margin-bottom: 12px;
}

.newsletter-form { display: flex; gap: 8px; }

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--cream);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(248, 244, 236, 0.28); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  padding: 9px 16px;
  background: var(--gold);
  color: #0B1A13;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--gold-light); }

.footer-stats-bar {
  background: rgba(200, 169, 110, 0.03);
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
  padding: 28px 0;
}

.footer-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.footer-stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(248, 244, 236, 0.3);
}

.footer-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(200, 169, 110, 0.12);
}

.footer-bottom { padding: 20px 0; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.28);
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.28);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold); }

/* ---- Floating Actions ---- */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  text-decoration: none;
}

.fab:hover { transform: scale(1.1); }

.fab-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: fabFloat 3s ease-in-out infinite;
}

.fab-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

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

.fab-whatsapp:hover { animation: none; }

.fab-tooltip {
  position: absolute;
  right: 60px;
  background: #0B3D2E;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: #0B3D2E;
}

.fab-whatsapp:hover .fab-tooltip { opacity: 1; }

.fab-top {
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.25s, background 0.2s;
}

.fab-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.fab-top:hover {
  background: var(--gold);
  color: #0B1A13;
  transform: scale(1.1) translateY(-2px);
}


.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* Hero stagger */
.hero-badge.reveal       { transition-delay: 0.1s; }
.hero h1.reveal          { transition-delay: 0.25s; }
.subhead.reveal          { transition-delay: 0.4s; }
.hero-cta.reveal         { transition-delay: 0.55s; }
.hero-stats.reveal       { transition-delay: 0.7s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .method-item {
    grid-template-columns: 60px 1fr;
    gap: 32px;
  }

  .method-visual { display: none; }

  .footer-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-area {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0D1A14;
    flex-direction: column;
    gap: 0;
    padding: 100px 32px 40px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    display: block;
    font-size: 22px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    opacity: 1;
  }

  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(40px, 9vw, 60px); }

  .hero-cta { flex-direction: column; align-items: center; }

  .hero-stats { gap: 24px; }

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

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

  .method-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .method-num { font-size: 12px; }

  .method-content h3 { font-size: 22px; }

  .testimonial-card { padding: 32px 24px; }

  .footer-topbar-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-links-area { grid-template-columns: repeat(2, 1fr); }
  .footer-stat-sep { display: none; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .nav-actions .btn { display: none; }

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

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