/* ============================================================
   Good Luck Numerology — Main Stylesheet
   goodlucknumerology.net
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep:       #070714;
  --bg-dark:       #0d0d2b;
  --bg-card:       rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --purple-deep:   #1a0533;
  --purple:        #6b21a8;
  --purple-light:  #9333ea;
  --purple-glow:   rgba(147, 51, 234, 0.25);
  --gold:          #f59e0b;
  --gold-light:    #fbbf24;
  --gold-dark:     #d97706;
  --gold-glow:     rgba(245, 158, 11, 0.25);
  --white:         #ffffff;
  --text-body:     #c4b5d8;
  --text-muted:    #8b6fa8;
  --border:        rgba(245, 158, 11, 0.18);
  --border-purple: rgba(147, 51, 234, 0.25);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold:   0 0 40px rgba(245, 158, 11, 0.2);
  --shadow-purple: 0 0 40px rgba(107, 33, 168, 0.25);
  --font-heading:  'Cinzel', serif;
  --font-body:     'Raleway', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.03em;
}

p { margin-bottom: 1rem; }

section { position: relative; overflow: hidden; }

/* ---------- Cosmic Background ---------- */
.cosmic-bg {
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(107, 33, 168, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}

.section-dark { background: var(--bg-dark); }
.section-purple { background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 50%, #0d0d2b 100%); }

/* ---------- Sacred Geometry Decorators ---------- */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
  opacity: 0.4;
}

.geo-1 { width: 500px; height: 500px; top: -200px; right: -150px; border-color: var(--border-purple); }
.geo-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; border-color: var(--border); }
.geo-3 { width: 700px; height: 700px; top: -300px; left: -200px; border-color: var(--border-purple); opacity: 0.15; }

.hex-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 2 L58 17 L58 47 L30 62 L2 47 L2 17 Z' fill='none' stroke='rgba(245,158,11,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ---------- Floating Number Particles ---------- */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  opacity: 0;
  animation: floatUp 8s infinite linear;
  pointer-events: none;
}

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.08; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg); }
}

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 7, 20, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  padding: 0.7rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(7, 7, 20, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(245,158,11,0.08);
  border-color: var(--border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: var(--white);
  border-color: var(--purple-light);
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---------- Section Headings ---------- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.left { text-align: left; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.section-header.left .section-subtitle { margin: 0; }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  border-radius: 3px;
  margin: 1.25rem auto 0;
}

.section-header.left .divider { margin-left: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

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

/* ---------- Icon Box ---------- */
.icon-box {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.icon-box-purple {
  background: linear-gradient(135deg, rgba(147,51,234,0.2), rgba(147,51,234,0.05));
  border-color: var(--border-purple);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold { background: rgba(245,158,11,0.15); color: var(--gold); border: 1px solid var(--border); }
.badge-purple { background: rgba(147,51,234,0.15); color: var(--purple-light); border: 1px solid var(--border-purple); }
.badge-green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }

/* ---------- Stars / Rating ---------- */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }

/* ---------- Pill Tabs ---------- */
.pill-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pill-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.pill-tab:hover { color: var(--gold); border-color: var(--gold); }
.pill-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* ---------- Section Padding ---------- */
.py-section { padding: 6rem 0; }
.py-section-sm { padding: 4rem 0; }
.pt-hero { padding-top: 120px; }

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* ---------- Flex Helpers ---------- */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ---------- Text Helpers ---------- */
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple-light); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.fw-700 { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(107, 33, 168, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(245,158,11,0.08);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-orb {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(147,51,234,0.5) 0%, rgba(107,33,168,0.3) 40%, transparent 70%);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotateSlow 20s linear infinite;
}

.orb-ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(245,158,11,0.3);
  animation-duration: 25s;
}

.orb-ring-2 {
  width: 80%; height: 80%;
  border-color: rgba(147,51,234,0.35);
  animation-direction: reverse;
  animation-duration: 18s;
}

.orb-ring-3 {
  width: 60%; height: 60%;
  border-color: rgba(245,158,11,0.25);
  animation-duration: 12s;
}

.orb-inner {
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg-deep);
  box-shadow: 0 0 60px var(--gold-glow);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

.orb-numbers {
  position: absolute;
  inset: 0;
  animation: rotateSlow 30s linear infinite;
}

.orb-num {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px var(--gold-glow); }
  50%       { transform: scale(1.05); box-shadow: 0 0 90px rgba(245,158,11,0.4); }
}

/* ---------- Services Overview ---------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--purple-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

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

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(245,158,11,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.service-card:hover .service-number { color: rgba(245,158,11,0.25); }

/* ---------- Benefits List ---------- */
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

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

.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245,158,11,0.1);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Stats Counter ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-box {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-box:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(245,158,11,0.1);
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold-dark));
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Calculator ---------- */
.calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.calculator-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(245,158,11,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.calc-input-group { margin-bottom: 1.5rem; }

.calc-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.calc-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.calc-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.calc-result {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(107,33,168,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  display: none;
}

.calc-result.visible { display: block; animation: fadeInUp 0.5s ease; }

.calc-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px var(--gold-glow);
}

.calc-number-name {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.calc-desc { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f59e0b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-control option { background: var(--bg-dark); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #4ade80;
}

.form-success.visible { display: block; animation: fadeInUp 0.5s ease; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(107,33,168,0.3) 0%, rgba(245,158,11,0.1) 50%, rgba(107,33,168,0.2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,158,11,0.07) 0%, transparent 70%);
}

.cta-banner-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner-desc {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.product-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(107,33,168,0.4), rgba(245,158,11,0.15));
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-body { padding: 1.5rem; }

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.product-desc { font-size: 0.85rem; color: var(--text-body); margin-bottom: 1rem; }

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.product-price .original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-body);
  margin-left: 0.5rem;
}

.product-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---------- Course Cards ---------- */
.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.course-thumb {
  height: 220px;
  background: linear-gradient(135deg, rgba(26,5,51,0.9), rgba(107,33,168,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

.course-level {
  position: absolute;
  top: 1rem; left: 1rem;
}

.course-body { padding: 1.5rem; }

.course-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.course-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.course-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(107,33,168,0.35), rgba(13,13,43,0.8));
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
}

.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: var(--font-body);
}

.blog-excerpt { font-size: 0.85rem; color: var(--text-body); flex: 1; }

.blog-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 35px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-tooltip {
  background: rgba(7,7,20,0.95);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ---------- Footer ---------- */
.footer {
  background: #060611;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-brand-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,158,11,0.08); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-contact-item i { color: var(--gold); font-size: 0.95rem; margin-top: 2px; }

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

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  background: var(--bg-card);
  transition: all var(--transition);
  gap: 1rem;
  user-select: none;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question.active {
  color: var(--gold);
  background: rgba(245,158,11,0.05);
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--text-muted);
  font-style: normal;
}

.faq-question.active .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  background: var(--bg-card);
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(107,33,168,0.35) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 550px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Lo Shu Grid ---------- */
.loshu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 180px;
  margin: 0 auto;
}

.loshu-cell {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(245,158,11,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--transition);
}

.loshu-cell:hover { background: rgba(245,158,11,0.18); }

/* ---------- Number Card ---------- */
.number-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.number-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(107,33,168,0.15));
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.number-feature:hover .number-circle {
  border-color: var(--gold);
  box-shadow: 0 0 25px var(--gold-glow);
}

/* ---------- About Page Specific ---------- */
.about-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
}

.about-photo-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(107,33,168,0.5), rgba(245,158,11,0.2), rgba(13,13,43,0.8));
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.about-badge-float {
  position: absolute;
  background: rgba(7,7,20,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
}

.about-badge-float.bottom-left {
  bottom: -1rem;
  left: -1.5rem;
}

.about-badge-float.top-right {
  top: 1rem;
  right: -1.5rem;
}

/* ---------- Contact Info Cards ---------- */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- Sticky Breadcrumb / Nav highlight ---------- */
.sticky-highlight { background: rgba(245,158,11,0.08); }

/* ---------- Checklist ---------- */
.checklist { display: flex; flex-direction: column; gap: 0.65rem; }

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-body);
}

.checklist li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(1),
  .stat-box:nth-child(2) { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; }
  .hero .container { flex-direction: column; }
  .hero-orb { width: 320px; height: 320px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-content { max-width: 100%; }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  :root { font-size: 15px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .py-section { padding: 4rem 0; }
  .py-section-sm { padding: 2.5rem 0; }

  .hero { padding: 100px 0 60px; }
  .hero-orb { display: none; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

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

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 2.5rem 1.5rem; }

  .calculator-box { padding: 1.5rem; }

  .section-subtitle { font-size: 0.95rem; }

  .about-badge-float { display: none; }

  .hero-stats { gap: 1.5rem; }

  .pill-tabs { gap: 0.35rem; }
  .pill-tab { padding: 0.45rem 1rem; font-size: 0.82rem; }

  .btn { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
  .btn-lg { padding: 0.75rem 2rem; }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-number { font-size: 1.4rem; }
  .stat-number { font-size: 1.8rem; }
}
