/* SOLUTION ASTROLOGY CONSULTANT — v2 STYLES */

:root {
  --navy-deep: #0a1432;
  --navy: #0f1b44;
  --navy-light: #1a2a5e;
  --gold: #e8b84a;
  --gold-bright: #ffd872;
  --gold-dark: #b8881e;
  --cream: #f7f1e3;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --bg-light: #fbf8f1;
  --border: rgba(232, 184, 74, 0.25);
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Outfit', sans-serif;
  --shadow-gold: 0 10px 40px rgba(232, 184, 74, 0.3);
  --shadow-navy: 0 20px 60px rgba(10, 20, 50, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.gold { color: var(--gold); }
.eyebrow {
  display: inline-block; font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark);
  background: rgba(232, 184, 74, 0.1); padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--navy-deep); }
h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head p { color: var(--text-muted); font-size: 18px; font-family: var(--font-body); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; font-family: var(--font-ui);
  font-weight: 600; font-size: 15px; letter-spacing: 0.5px; border: none;
  cursor: pointer; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark)); color: var(--navy-deep); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(232, 184, 74, 0.5); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); }
.btn-dark { background: var(--navy-deep); color: var(--gold); border: 2px solid var(--gold); }
.btn-dark:hover { background: var(--gold); color: var(--navy-deep); }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-3px); color: white; }
.btn-block { width: 100%; justify-content: center; }

/* POPUP ENQUIRY */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(10, 20, 50, 0.85);
  backdrop-filter: blur(8px); z-index: 10000; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: linear-gradient(135deg, #fff, var(--bg-light));
  border: 3px solid var(--gold); border-radius: 20px;
  max-width: 500px; width: 100%; padding: 36px 32px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 95vh; overflow-y: auto;
}
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 50%; background: var(--navy-deep); color: var(--gold);
  border: 2px solid var(--gold); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2;
}
.popup-close:hover { background: var(--gold); color: var(--navy-deep); transform: rotate(90deg); }
.popup-header { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px dashed var(--border); }
.popup-logo {
  width: 80px; height: 80px; border-radius: 50%; background: var(--navy-deep);
  padding: 8px; margin: 0 auto 14px; object-fit: contain; border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(232, 184, 74, 0.3);
}
.popup-header h2 { font-size: 26px; margin-bottom: 6px; }
.popup-header p { color: var(--text-muted); font-family: var(--font-body); font-size: 16px; font-style: italic; }
.popup-form label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  background: white; border: 1.5px solid rgba(10, 20, 50, 0.15);
  border-radius: 10px; padding: 4px 14px; transition: all 0.3s;
}
.popup-form label:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 184, 74, 0.15); }
.popup-form label i { color: var(--gold-dark); font-size: 16px; }
.popup-form input, .popup-form select {
  width: 100%; padding: 12px 0; border: none; background: transparent;
  font-family: var(--font-ui); font-size: 15px; color: var(--navy-deep); outline: none;
}
.popup-note { text-align: center; margin-top: 14px; color: var(--text-muted); font-size: 13px; }
.popup-note i { color: var(--gold); margin-right: 4px; }

/* TOPBAR */
.topbar { background: var(--navy-deep); color: var(--cream); padding: 10px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { color: var(--cream); transition: color 0.3s; }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); margin-right: 6px; }

/* HEADER */
.site-header { background: var(--white); padding: 16px 0; box-shadow: 0 2px 20px rgba(10, 20, 50, 0.08); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; background: var(--navy-deep); padding: 4px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-deep); letter-spacing: 0.5px; }
.brand-sub { font-family: var(--font-ui); font-size: 11px; letter-spacing: 3px; color: var(--gold-dark); text-transform: uppercase; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 10px 16px; font-weight: 500; font-size: 15px; color: var(--navy-deep); border-radius: 6px; transition: all 0.3s; }
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-deep); margin-left: 8px; padding: 12px 24px; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 15px rgba(232, 184, 74, 0.3); }
.main-nav a.nav-cta:hover { transform: translateY(-2px); color: var(--navy-deep); }
.menu-toggle { display: none; background: transparent; border: none; font-size: 24px; color: var(--navy-deep); cursor: pointer; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%); color: white; position: relative; overflow: hidden; padding: 80px 0 0; min-height: 90vh; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 40%, rgba(232, 184, 74, 0.15), transparent 50%), radial-gradient(circle at 80% 60%, rgba(232, 184, 74, 0.1), transparent 50%); pointer-events: none; }

.stars, .stars2, .stars3 {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, white, transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, white, transparent),
    radial-gradient(1.5px 1.5px at 160px 120px, var(--gold-bright), transparent),
    radial-gradient(1px 1px at 220px 50px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 280px 90px, white, transparent),
    radial-gradient(1px 1px at 340px 30px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 400px 150px, var(--gold-bright), transparent);
  background-size: 450px 200px; background-repeat: repeat;
  animation: twinkle 8s ease-in-out infinite;
}
.stars2 { animation-delay: 2s; background-size: 380px 220px; opacity: 0.7; }
.stars3 { animation-delay: 4s; background-size: 500px 250px; opacity: 0.5; }
@keyframes twinkle { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; padding: 40px 24px 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232, 184, 74, 0.15); border: 1px solid var(--gold); color: var(--gold-bright); padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 64px); font-weight: 700; line-height: 1.1; color: white; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-title .gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-family: var(--font-body); font-size: 20px; color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; max-width: 600px; line-height: 1.6; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; max-width: 560px; }
.stat { text-align: center; padding: 16px 8px; background: rgba(232, 184, 74, 0.08); border: 1px solid var(--border); border-radius: 12px; backdrop-filter: blur(10px); }
.stat h3 { font-family: var(--font-display); color: var(--gold-bright); font-size: 28px; margin-bottom: 4px; }
.stat p { font-size: 12px; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-quick { display: flex; gap: 12px; }
.quick-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; color: white; font-size: 14px; transition: all 0.3s; }
.quick-btn:hover { background: rgba(232, 184, 74, 0.2); border-color: var(--gold); }
.quick-btn.whatsapp i { color: #25D366; }

/* SOLAR SYSTEM — Revolving Planets & Zodiacs */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.solar-system { position: relative; width: 500px; height: 500px; display: flex; align-items: center; justify-content: center; }

.orbit {
  position: absolute; top: 50%; left: 50%;
  border: 1px dashed rgba(232, 184, 74, 0.25); border-radius: 50%;
  pointer-events: none;
}
.orbit-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; animation: orbit-spin 8s linear infinite; }
.orbit-2 { width: 300px; height: 300px; margin: -150px 0 0 -150px; animation: orbit-spin 14s linear infinite reverse; border-color: rgba(232, 184, 74, 0.2); }
.orbit-3 { width: 380px; height: 380px; margin: -190px 0 0 -190px; animation: orbit-spin 22s linear infinite; border-color: rgba(232, 184, 74, 0.18); }
.orbit-4 { width: 460px; height: 460px; margin: -230px 0 0 -230px; animation: orbit-spin 32s linear infinite reverse; border-color: rgba(232, 184, 74, 0.15); }

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.planet {
  position: absolute; top: 50%; left: 0;
  border-radius: 50%;
}
.planet-mercury { width: 18px; height: 18px; margin: -9px 0 0 -9px; background: radial-gradient(circle at 30% 30%, #ffd872, #b8881e); box-shadow: 0 0 15px rgba(255, 216, 114, 0.9); }
.planet-venus { width: 26px; height: 26px; margin: -13px 0 0 -13px; background: radial-gradient(circle at 30% 30%, #ffb347, #cc7722); box-shadow: 0 0 20px rgba(255, 179, 71, 0.8); }
.planet-mars { width: 20px; height: 20px; margin: -10px 0 0 -10px; background: radial-gradient(circle at 30% 30%, #ff6b6b, #b23a3a); box-shadow: 0 0 15px rgba(255, 107, 107, 0.7); }
.planet-jupiter { width: 32px; height: 32px; margin: -16px 0 0 -16px; background: radial-gradient(circle at 30% 30%, #e8b84a, #8b5a1a); box-shadow: 0 0 25px rgba(232, 184, 74, 0.8); }

/* Revolving zodiac ring */
.zodiac-orbit {
  position: absolute; top: 50%; left: 50%;
  width: 460px; height: 460px; margin: -230px 0 0 -230px;
  border: 2px solid rgba(232, 184, 74, 0.4); border-radius: 50%;
  animation: orbit-spin 60s linear infinite;
}
.zodiac-symbol {
  position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright); font-size: 26px; font-weight: bold;
  transform: rotate(var(--angle)) translateY(-230px);
  text-shadow: 0 0 10px rgba(232, 184, 74, 0.8);
}

.logo-center {
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--navy-light), var(--navy-deep));
  border-radius: 50%; border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  box-shadow: 0 0 60px rgba(232, 184, 74, 0.4), inset 0 0 30px rgba(232, 184, 74, 0.2);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 3; position: relative;
}
.logo-center img { width: 100%; height: 100%; object-fit: contain; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 60px rgba(232, 184, 74, 0.4), inset 0 0 30px rgba(232, 184, 74, 0.2); }
  50% { box-shadow: 0 0 100px rgba(232, 184, 74, 0.7), inset 0 0 40px rgba(232, 184, 74, 0.3); }
}

/* MARQUEE */
.marquee { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); color: var(--navy-deep); padding: 16px 0; overflow: hidden; border-top: 2px solid var(--gold-bright); border-bottom: 2px solid var(--gold-bright); position: relative; z-index: 3; }
.marquee-track { display: inline-flex; gap: 50px; white-space: nowrap; animation: scroll 50s linear infinite; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: 1px; }
.marquee-track span { padding: 0 20px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ANIMATION SECTION (Golden Video) */
.animation-section { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); color: white; padding: 100px 0; position: relative; overflow: hidden; }
.animation-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 50px 50px, rgba(232,184,74,0.6), transparent), radial-gradient(1px 1px at 150px 120px, rgba(232,184,74,0.4), transparent), radial-gradient(2px 2px at 250px 80px, rgba(232,184,74,0.5), transparent); background-size: 300px 200px; background-repeat: repeat; opacity: 0.5; }
.animation-section .section-head { position: relative; z-index: 2; }
.animation-section h2 { color: white; }
.animation-section .section-head p { color: rgba(255,255,255,0.8); }
.animation-wrapper { position: relative; max-width: 720px; margin: 0 auto; padding: 20px; }
.animation-frame {
  position: relative; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 0 60px rgba(232, 184, 74, 0.5), 0 0 120px rgba(232, 184, 74, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: var(--navy-deep);
  animation: frame-pulse 4s ease-in-out infinite;
}
@keyframes frame-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(232, 184, 74, 0.5), 0 0 120px rgba(232, 184, 74, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 90px rgba(232, 184, 74, 0.7), 0 0 180px rgba(232, 184, 74, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.3); }
}
.golden-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.animation-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; background: radial-gradient(circle at center, transparent 40%, rgba(10, 20, 50, 0.3) 100%); }
.om-symbol { font-size: clamp(80px, 15vw, 150px); color: rgba(255, 255, 255, 0.15); font-family: var(--font-display); text-shadow: 0 0 40px rgba(232, 184, 74, 0.6); animation: om-glow 3s ease-in-out infinite; }
@keyframes om-glow { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 0.35; transform: scale(1.05); } }
.animation-decor { position: absolute; color: var(--gold); font-size: 40px; text-shadow: 0 0 20px var(--gold); animation: decor-float 3s ease-in-out infinite; }
.decor-1 { top: 10%; left: 0%; animation-delay: 0s; }
.decor-2 { top: 15%; right: 5%; font-size: 30px; animation-delay: 0.8s; }
.decor-3 { bottom: 15%; left: 5%; font-size: 28px; animation-delay: 1.5s; }
.decor-4 { bottom: 10%; right: 0%; animation-delay: 2.2s; }
@keyframes decor-float { 0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; } 50% { transform: translateY(-15px) rotate(180deg); opacity: 1; } }

/* ABOUT */
.about { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.img-frame { position: relative; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-navy); border: 3px solid var(--gold); }
.img-frame img { width: 100%; border-radius: 10px; }
.float-badge { position: absolute; bottom: -20px; right: -20px; background: white; padding: 16px 20px; border-radius: 12px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-gold); border: 2px solid var(--gold); }
.float-badge i { color: var(--gold); font-size: 32px; }
.float-badge strong { display: block; color: var(--navy-deep); font-family: var(--font-display); }
.float-badge small { color: var(--text-muted); font-size: 12px; }
.about-content .lead { font-family: var(--font-body); font-size: 20px; color: var(--navy-light); font-style: italic; margin-bottom: 16px; line-height: 1.5; }
.about-content > p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature i { color: var(--gold); font-size: 22px; flex-shrink: 0; margin-top: 4px; }
.feature strong { display: block; color: var(--navy-deep); font-family: var(--font-display); font-size: 16px; margin-bottom: 2px; }
.feature p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ASTROLOGERS */
.astrologers { background: linear-gradient(180deg, var(--white), var(--bg-light)); }
.astrologers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.astro-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(10,20,50,0.08); transition: all 0.4s; display: grid; grid-template-columns: 200px 1fr; }
.astro-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,20,50,0.15); border-color: var(--gold); }
.astro-photo { background: linear-gradient(135deg, var(--navy-deep), var(--navy-light)); display: flex; align-items: center; justify-content: center; position: relative; padding: 30px; }
.astro-photo::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(232, 184, 74, 0.3), transparent 50%); opacity: 0.7; }
.astro-initial { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--navy-deep); border: 4px solid var(--gold); box-shadow: 0 10px 30px rgba(232, 184, 74, 0.5); position: relative; z-index: 2; }
.astro-badge { position: absolute; bottom: 20px; background: var(--gold); color: var(--navy-deep); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; font-family: var(--font-ui); letter-spacing: 1px; z-index: 2; }
.astro-badge i { margin-right: 4px; }
.astro-info { padding: 28px; }
.astro-info h3 { font-size: 22px; color: var(--navy-deep); margin-bottom: 4px; }
.astro-title { color: var(--gold-dark); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.astro-bio { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.astro-specialties { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.astro-specialties span { background: rgba(232, 184, 74, 0.12); color: var(--gold-dark); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1px solid var(--border); }
.astro-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.astro-contact .btn { padding: 10px 14px; font-size: 13px; }

/* SERVICES */
.services { background: linear-gradient(180deg, var(--bg-light), var(--white)); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: white; padding: 32px 28px; border-radius: 16px; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-dark)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(10, 20, 50, 0.15); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--navy-deep), var(--navy-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.4s; }
.service-icon i { color: var(--gold); font-size: 26px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); transform: rotate(-5deg) scale(1.05); }
.service-card:hover .service-icon i { color: var(--navy-deep); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
.service-link { color: var(--gold-dark); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-link:hover { gap: 12px; color: var(--navy-deep); }

/* VASTU */
.vastu-section { background: var(--navy-deep); color: white; position: relative; overflow: hidden; }
.vastu-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(232, 184, 74, 0.1), transparent 40%), radial-gradient(circle at 90% 80%, rgba(232, 184, 74, 0.08), transparent 40%); }
.vastu-section h2 { color: white; }
.vastu-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.vastu-content .lead { font-family: var(--font-body); font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 32px; font-style: italic; }
.vastu-items { margin-bottom: 32px; }
.vastu-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(232, 184, 74, 0.2); }
.vastu-item:last-child { border-bottom: none; }
.v-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); min-width: 50px; }
.vastu-item h4 { color: white; margin-bottom: 6px; }
.vastu-item p { color: rgba(255,255,255,0.75); font-size: 15px; }
.vastu-compass { width: 420px; height: 420px; margin: 0 auto; position: relative; display: flex; align-items: center; justify-content: center; }
.compass-outer { width: 100%; height: 100%; border: 3px solid var(--gold); border-radius: 50%; position: absolute; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 80px rgba(232, 184, 74, 0.2), inset 0 0 40px rgba(232, 184, 74, 0.1); animation: compass-rotate 40s linear infinite; }
@keyframes compass-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.compass-outer::before { content: ''; position: absolute; inset: 20px; border: 1px dashed rgba(232, 184, 74, 0.5); border-radius: 50%; }
.compass-outer::after { content: ''; position: absolute; inset: 40px; border: 1px solid rgba(232, 184, 74, 0.3); border-radius: 50%; }
.dir { position: absolute; font-family: var(--font-display); font-weight: 700; color: var(--gold-bright); font-size: 18px; }
.dir.n { top: 20px; } .dir.s { bottom: 20px; } .dir.e { right: 20px; } .dir.w { left: 20px; }
.dir.ne { top: 50px; right: 50px; font-size: 14px; }
.dir.nw { top: 50px; left: 50px; font-size: 14px; }
.dir.se { bottom: 50px; right: 50px; font-size: 14px; }
.dir.sw { bottom: 50px; left: 50px; font-size: 14px; }
.compass-inner { width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, var(--navy-light), var(--navy-deep)); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.compass-needle { position: absolute; width: 4px; height: 160px; background: linear-gradient(180deg, #ff4444 0%, #ff4444 50%, white 50%, white 100%); border-radius: 4px; animation: needle-sway 4s ease-in-out infinite; transform-origin: center; box-shadow: 0 0 20px rgba(232, 184, 74, 0.5); }
@keyframes needle-sway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.compass-center { font-size: 80px; color: var(--gold-bright); font-family: var(--font-display); position: relative; z-index: 2; }

/* KUNDALI */
.kundali-section { background: var(--bg-light); }
.kundali-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.kundali-card { background: white; padding: 36px 28px; border-radius: 16px; text-align: center; border: 1px solid var(--border); position: relative; transition: all 0.4s; }
.kundali-card::after { content: '✦'; position: absolute; top: 20px; right: 20px; color: var(--gold); font-size: 24px; opacity: 0.3; transition: all 0.4s; }
.kundali-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-navy); background: var(--navy-deep); color: white; }
.kundali-card:hover h3 { color: white; }
.kundali-card:hover p { color: rgba(255,255,255,0.85); }
.kundali-card:hover::after { opacity: 1; transform: rotate(180deg); color: var(--gold-bright); }
.kundali-card i { font-size: 48px; color: var(--gold); margin-bottom: 20px; display: inline-block; width: 90px; height: 90px; line-height: 90px; background: linear-gradient(135deg, rgba(232,184,74,0.15), rgba(232,184,74,0.05)); border-radius: 50%; border: 2px solid var(--gold); }
.kundali-card h3 { margin-bottom: 12px; transition: color 0.3s; }
.kundali-card p { color: var(--text-muted); font-size: 15px; transition: color 0.3s; }

/* COURSES */
.courses-section { background: linear-gradient(180deg, var(--white), var(--bg-light)); position: relative; overflow: hidden; }
.courses-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 100px 100px, rgba(232,184,74,0.2), transparent), radial-gradient(1px 1px at 300px 200px, rgba(232,184,74,0.15), transparent); background-size: 500px 400px; background-repeat: repeat; opacity: 0.6; pointer-events: none; }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; position: relative; z-index: 2; }
.course-card { background: white; padding: 32px 26px; border-radius: 20px; border: 1px solid var(--border); position: relative; transition: all 0.4s; display: flex; flex-direction: column; overflow: hidden; }
.course-card.featured { border: 2px solid var(--gold); transform: scale(1.02); box-shadow: 0 15px 40px rgba(232, 184, 74, 0.25); }
.course-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(10, 20, 50, 0.15); border-color: var(--gold); }
.course-card.featured:hover { transform: translateY(-8px) scale(1.02); }
.course-ribbon { position: absolute; top: 18px; right: -8px; background: linear-gradient(135deg, #dc2626, #991b1b); color: white; padding: 6px 16px; font-size: 12px; font-weight: 700; letter-spacing: 1px; font-family: var(--font-ui); box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 2; }
.course-ribbon.gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); color: var(--navy-deep); }
.course-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--navy-deep), var(--navy-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all 0.4s; }
.course-icon i { color: var(--gold); font-size: 32px; }
.course-card:hover .course-icon { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); transform: rotate(-8deg) scale(1.08); }
.course-card:hover .course-icon i { color: var(--navy-deep); }
.course-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--navy-deep); }
.course-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.course-features { list-style: none; padding: 0; margin-bottom: 20px; flex-grow: 1; }
.course-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--navy-deep); }
.course-features i { color: var(--gold); font-size: 13px; background: rgba(232, 184, 74, 0.15); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.course-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; padding: 14px; background: linear-gradient(135deg, rgba(232, 184, 74, 0.1), rgba(232, 184, 74, 0.03)); border-radius: 12px; border: 1px dashed var(--border); }
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: 16px; }
.new-price { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold-dark); }
.courses-cta { margin-top: 40px; display: flex; justify-content: center; }
.cta-box { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: white; padding: 32px 40px; border-radius: 20px; border: 2px solid var(--gold); text-align: center; max-width: 600px; }
.cta-box h3 { color: white; margin-bottom: 10px; font-size: 24px; }
.cta-box p { font-family: var(--font-body); font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.cta-box strong { color: var(--gold-bright); }

/* WHY US */
.why-us { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.why-card { padding: 32px 28px; border-radius: 16px; background: linear-gradient(135deg, var(--bg-light), white); border: 1px solid var(--border); text-align: center; transition: all 0.4s; }
.why-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(232, 184, 74, 0.15); }
.why-card i { font-size: 40px; color: var(--gold); margin-bottom: 18px; display: block; }
.why-card h3 { margin-bottom: 10px; color: var(--navy-deep); }
.why-card p { color: var(--text-muted); font-size: 15px; }

/* TESTIMONIALS */
.testimonials { background: linear-gradient(180deg, var(--bg-light), white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testi-card { background: white; padding: 32px 28px; border-radius: 16px; border: 1px solid var(--border); position: relative; transition: all 0.4s; }
.testi-card::before { content: '"'; position: absolute; top: -10px; left: 20px; font-family: var(--font-display); font-size: 100px; color: var(--gold); opacity: 0.2; line-height: 1; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-navy); }
.stars-row { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-family: var(--font-body); font-size: 17px; color: var(--navy-deep); margin-bottom: 24px; line-height: 1.6; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 20px; }
.testi-author strong { display: block; color: var(--navy-deep); font-family: var(--font-display); font-size: 16px; }
.testi-author small { color: var(--text-muted); font-size: 13px; }

/* BRANCHES */
.branches { background: var(--navy-deep); color: white; position: relative; overflow: hidden; }
.branches::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 50px 50px, rgba(232,184,74,0.5), transparent), radial-gradient(1px 1px at 150px 120px, rgba(232,184,74,0.3), transparent); background-size: 300px 200px; background-repeat: repeat; opacity: 0.4; }
.branches h2 { color: white; }
.branches .section-head p { color: rgba(255,255,255,0.8); }
.branches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; position: relative; z-index: 2; }
.branch-card { background: linear-gradient(135deg, rgba(232,184,74,0.08), rgba(232,184,74,0.02)); border: 2px solid var(--gold); border-radius: 20px; padding: 40px; transition: all 0.4s; backdrop-filter: blur(10px); }
.branch-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(232, 184, 74, 0.3); }
.branch-head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(232,184,74,0.3); }
.branch-icon { width: 70px; height: 70px; border-radius: 14px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: var(--navy-deep); font-size: 30px; }
.branch-head h3 { color: white; margin-bottom: 2px; font-size: 26px; }
.branch-head .muted { color: var(--gold); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin: 0; }
.branch-body { margin-bottom: 28px; }
.info-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px dashed rgba(232,184,74,0.2); }
.info-row:last-child { border-bottom: none; }
.info-row > i { width: 44px; height: 44px; background: rgba(232,184,74,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-bright); font-size: 18px; flex-shrink: 0; }
.info-row small { display: block; color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.info-row strong, .info-row a { color: white; font-size: 16px; transition: color 0.3s; }
.info-row a:hover { color: var(--gold-bright); }
.branch-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* CONTACT */
.contact { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-left p { font-family: var(--font-body); font-size: 18px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.contact-quick { display: grid; gap: 14px; }
.cq-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: white; border: 1px solid var(--border); border-radius: 14px; transition: all 0.3s; }
.cq-card:hover { transform: translateX(6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.cq-card i { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-deep), var(--navy-light)); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cq-card.wa i { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.cq-card small { display: block; color: var(--text-muted); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.cq-card strong { color: var(--navy-deep); font-size: 15px; word-break: break-all; }
.contact-form { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-navy); border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 24px; font-size: 28px; color: var(--navy-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span { display: block; font-size: 13px; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; letter-spacing: 0.5px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(10, 20, 50, 0.15); border-radius: 10px; font-family: var(--font-ui); font-size: 15px; transition: all 0.3s; background: white; color: var(--navy-deep); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 184, 74, 0.15); }
.contact-form textarea { resize: vertical; }
.form-note { margin-top: 14px; text-align: center; color: var(--text-muted); font-size: 13px; }
.form-note i { color: var(--gold); margin-right: 4px; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark)); padding: 50px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(10,20,50,0.1), transparent 50%); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; position: relative; z-index: 2; flex-wrap: wrap; }
.cta-inner h2 { color: var(--navy-deep); margin-bottom: 8px; }
.cta-inner p { color: var(--navy-deep); font-family: var(--font-body); font-size: 18px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 70px 0 0; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 18px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.footer-col .brand { margin-bottom: 16px; }
.footer-col .brand-name { color: white; }
.footer-col p { font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(232,184,74,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all 0.3s; }
.socials a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul a { color: rgba(255,255,255,0.75); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a::before { content: '✦'; color: var(--gold); font-size: 10px; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-list li::before { display: none; }
.contact-list i { color: var(--gold); font-size: 16px; margin-top: 4px; }
.contact-list small { display: block; font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-list a, .contact-list strong { color: white; font-size: 14px; word-break: break-word; }
.footer-bottom { border-top: 1px solid rgba(232,184,74,0.2); padding: 20px 0; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* FAB */
.fab-container { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 99; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; box-shadow: 0 8px 25px rgba(0,0,0,0.3); transition: all 0.3s; position: relative; }
.fab:hover { transform: scale(1.1); }
.fab-wa { background: #25D366; animation: pulse-wa 2s infinite; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37,211,102,0.15); } }
.fab-call { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); color: var(--navy-deep); }
.fab-call2 { background: linear-gradient(135deg, var(--navy-light), var(--navy-deep)); color: var(--gold); }
.fab-mail { background: #4285F4; }
.fab-tooltip { position: absolute; right: 68px; background: var(--navy-deep); color: white; padding: 8px 14px; border-radius: 6px; font-size: 13px; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.3s; border: 1px solid var(--gold); }
.fab-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--navy-deep); }
.fab:hover .fab-tooltip { opacity: 1; visibility: visible; right: 72px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-stats { max-width: 100%; }
  .hero-cta, .hero-quick { justify-content: center; }
  .hero-visual { order: -1; }
  .solar-system { width: 360px; height: 360px; }
  .orbit-1 { width: 160px; height: 160px; margin: -80px 0 0 -80px; }
  .orbit-2 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
  .orbit-3 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .orbit-4 { width: 340px; height: 340px; margin: -170px 0 0 -170px; }
  .zodiac-orbit { width: 340px; height: 340px; margin: -170px 0 0 -170px; }
  .zodiac-symbol { font-size: 20px; transform: rotate(var(--angle)) translateY(-170px); }
  .logo-center { width: 130px; height: 130px; padding: 14px; }

  .about-grid, .vastu-grid, .contact-grid, .astrologers-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .vastu-compass { width: 320px; height: 320px; }
  .compass-inner { width: 170px; height: 170px; }
  .compass-needle { height: 120px; }
  .compass-center { font-size: 60px; }
  .branches-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .astro-card { grid-template-columns: 1fr; }
  .astro-photo { padding: 40px 30px; }

  .main-nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--navy-deep); flex-direction: column; align-items: flex-start; padding: 80px 24px 30px; gap: 4px; transition: right 0.4s; box-shadow: -10px 0 30px rgba(0,0,0,0.3); overflow-y: auto; }
  .main-nav.open { right: 0; }
  .main-nav a { color: white; width: 100%; padding: 12px 16px; border-bottom: 1px solid rgba(232,184,74,0.15); }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 16px; }
  .menu-toggle { display: block; z-index: 101; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .branch-actions, .astro-contact { grid-template-columns: 1fr; }
  .branch-card { padding: 28px 22px; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; }
  .hide-sm { display: none; }
  .brand-text { display: none; }
  .fab-container { bottom: 16px; right: 16px; }
  .fab { width: 50px; height: 50px; font-size: 20px; }
  .popup-box { padding: 28px 22px; }
  .solar-system { width: 300px; height: 300px; }
  .orbit-1 { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
  .orbit-2 { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
  .orbit-3 { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
  .orbit-4 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .zodiac-orbit { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .zodiac-symbol { font-size: 16px; transform: rotate(var(--angle)) translateY(-140px); }
  .logo-center { width: 110px; height: 110px; padding: 12px; }
}
