/* ==========================================================================
   VMK ASTRO-NUMEROLOGY - Premium Mobile-Optimized Styling System
   Theme: Deep Midnight Blue & Luxury Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
  --bg-dark: #040a1a;
  --bg-midnight: #081229;
  --bg-card: rgba(11, 23, 54, 0.85);
  --bg-card-hover: rgba(16, 32, 70, 0.95);
  
  --gold-light: #fff0aa;
  --gold-main: #dfb15b;
  --gold-bright: #f3cf7a;
  --gold-dark: #b8860b;
  --gold-accent: #ffd700;
  
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #e2c076;
  
  --border-gold: rgba(223, 177, 91, 0.35);
  --border-gold-bright: rgba(223, 177, 91, 0.7);
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --font-cursive: 'Great Vibes', cursive;
  
  --shadow-gold: 0 10px 25px rgba(223, 177, 91, 0.2);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition: all 0.3s ease;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

#particles-canvas {
  display: none !important;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navbar - Flush at top */
.site-header {
  position: sticky;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 10, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  margin-top: 0 !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

/* Glowing Gold Brand Name */
.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff0aa 0%, #dfb15b 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow: 0 0 8px rgba(243, 207, 122, 0.4);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  padding: 0.4rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-bright);
  transition: var(--transition);
}

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

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

.header-contacts {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Single line header phone button */
.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gold-main);
  background: #030712;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.header-phone-btn:hover {
  background: var(--gold-main);
  color: #030712;
}

.header-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.header-whatsapp-btn:hover {
  background: #1eb856;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-bright);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  padding: 3.5rem 0 2rem 0;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, #081229 0%, var(--bg-dark) 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.ornate-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
  color: var(--gold-main);
}

.ornate-divider::before, .ornate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}

.hero-methods {
  font-size: 1.05rem;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.doctor-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.8rem;
}

.doctor-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.doctor-degrees {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.doctor-title {
  font-family: var(--font-heading);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-main) 100%);
  color: #030712;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-gold:hover {
  background: #ffffff;
  color: #030712;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  background: #030712;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: 1.5px solid var(--gold-main);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-outline-gold:hover {
  background: var(--gold-main);
  color: #030712;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1eb856;
  transform: translateY(-2px);
}

/* Hero Visual & Cinematic Cosmic Animations */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding: 4rem 0 3rem 0;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 30%, #0c1836 0%, #030712 90%);
  overflow: hidden;
}

/* Cosmic Background Canvas */
.hero-cosmic-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  width: 100%;
}

/* Animated Master Hero Visual (VMK (1).png) */
.hero-master-card-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(234, 179, 8, 0.35);
  border: 1.5px solid rgba(234, 179, 8, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-master-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(234, 179, 8, 0.5);
  border-color: var(--gold-bright);
}

.hero-master-animated-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: floatHeroMaster 6s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatHeroMaster {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.018); }
  100% { transform: translateY(0px) scale(1); }
}

/* Quick Access Card Button */
.btn-quick-card-action {
  margin-top: 1rem;
  width: 100%;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-main) 100%);
  color: #030712;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
  transition: all 0.25s ease;
}

.quick-access-card:hover .btn-quick-card-action {
  background: #ffffff;
  color: #030712;
  transform: translateY(-2px);
}

/* Quick Access Glassmorphism Section */
.quick-access-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #030712 0%, #081229 100%);
  border-top: 1px solid rgba(234, 179, 8, 0.15);
  border-bottom: 1px solid rgba(234, 179, 8, 0.15);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.quick-access-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quick-access-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.35);
  background: rgba(30, 41, 59, 0.85);
}

.quick-access-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(245, 158, 11, 0.4));
  border: 1px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-bottom: 0.9rem;
  transition: transform 0.3s ease;
}

.quick-access-card:hover .quick-access-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-bright);
  color: #030712;
}

.quick-access-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.quick-access-subtitle {
  font-size: 0.8rem;
  color: var(--gold-main);
  font-weight: 500;
}

/* Course Card & Validity Selection Interface (matching image copy 11.png) */
.course-section-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.course-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.course-card-header {
  background: linear-gradient(135deg, rgba(8, 18, 41, 0.9), rgba(15, 23, 42, 0.95));
  padding: 2rem;
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
  text-align: center;
}

.course-card-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.course-card-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.course-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
  text-align: left;
}

.course-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
  background: rgba(234, 179, 8, 0.08);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(234, 179, 8, 0.15);
}

.course-feature-item i {
  color: var(--gold-bright);
}

/* Validity Selection Box - Exact Match to image copy 11.png */
.validity-selector-card {
  background: #ffffff;
  color: #1e293b;
  border-radius: 16px;
  padding: 2rem;
  margin: 1.8rem auto;
  max-width: 580px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.validity-tabs {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.validity-tab {
  flex: 1;
  text-align: center;
  padding: 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #64748b;
  cursor: pointer;
}

.validity-tab.active {
  color: #3b82f6;
  border-bottom: 3px solid #3b82f6;
}

.validity-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.validity-close-icon {
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
}

.validity-options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.validity-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.validity-option-card:hover {
  border-color: #0284c7;
}

.validity-option-card.selected {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

.validity-option-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.validity-option-card.selected .radio-circle {
  border-color: #0284c7;
  background: #0284c7;
  color: #ffffff;
}

.radio-circle i {
  font-size: 0.65rem;
  display: none;
}

.validity-option-card.selected .radio-circle i {
  display: block;
}

.validity-duration-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.validity-option-right {
  text-align: right;
}

.validity-discount-tag {
  color: #ea580c;
  font-weight: 800;
  font-size: 0.85rem;
  margin-right: 0.6rem;
}

.validity-price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.validity-price-original {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  display: block;
}

.validity-access-notice {
  font-size: 0.9rem;
  color: #475569;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-book-now-main {
  width: 100%;
  padding: 1.1rem;
  border-radius: 10px;
  background: #0284c7;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.btn-book-now-main:hover {
  background: #0369a1;
  color: #ffffff;
}

/* Floating Vertical Side Widget */
.floating-side-bar {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 900;
}

.floating-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #030712;
  border: 1.5px solid var(--gold-main);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  gap: 0.3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  transition: var(--transition);
  cursor: pointer;
}

.floating-btn i {
  font-size: 1.4rem;
}

.floating-btn:hover {
  transform: scale(1.05);
  background: var(--gold-main);
  color: #030712;
}

.floating-btn.whatsapp-float {
  border-color: #25D366;
  color: #25D366;
}

.floating-btn.whatsapp-float:hover {
  background: #25D366;
  color: #ffffff;
}

/* Section Title Styling */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold-main);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
  margin: 0.6rem auto 0 auto;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Section Padding */
.section-padding {
  padding: 3.5rem 0;
}

/* Why Choose Us Grid */
.why-choose-section {
  background: #060e22;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-bright);
  background: var(--bg-card-hover);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold-bright);
  font-size: 1.6rem;
}

.feature-number-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-light);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About Preview Card & Grids */
.about-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-main);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-grid-11 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-bright);
  background: var(--bg-card-hover);
}

.service-badge-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-main);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030712;
}

.service-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-main);
  background: rgba(223, 177, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.8rem;
  margin: 1rem 0 1.2rem 0;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Black Background Book Consultation Pill Button */
.btn-service-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  background: #030712;
  border: 1.5px solid var(--gold-main);
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-service-book:hover {
  background: var(--gold-main);
  color: #030712;
}

/* Dual Banner Cards Section */
.dual-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.banner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}

.banner-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.banner-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.banner-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.banner-list li i {
  color: var(--gold-bright);
}

/* Video Preview Embed Card */
.video-preview-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #FF0000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Statistics Counter Bar */
.stats-bar-section {
  background: #040918;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Qualifications & VMV Grid */
.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.qual-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(223, 177, 91, 0.05);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
}

.qual-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.qual-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.qual-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.vmv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
}

.vmv-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: var(--gold-bright);
  font-size: 1.6rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

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

.modal-card {
  background: var(--bg-midnight);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 580px;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

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

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Form Styles */
.booking-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #030712;
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-bright);
}

/* Footer */
.site-footer {
  background: #02040a;
  border-top: 1px solid var(--border-gold);
  padding: 3.5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

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

.footer-contact-item i {
  color: var(--gold-bright);
  margin-top: 0.2rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(223, 177, 91, 0.15);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #030712;
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--gold-main);
  color: #030712;
}

.mobile-bottom-bar {
  display: none !important;
}

/* MANDATORY MOBILE FLEX-COLUMN STACKING RULES (< 900px) */
@media (max-width: 900px) {
  .section-padding {
    padding: 2rem 0 !important;
  }

  .header-container {
    padding: 0.6rem 1rem;
  }
  
  .brand-logo img {
    height: 42px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #060e22;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    transition: var(--transition);
    border-top: 1px solid var(--border-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.9);
  }
  
  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header-contacts {
    display: none;
  }
  
  /* Hero Mobile */
  .hero-section {
    padding: 2rem 0 1.5rem 0;
    min-height: auto;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center;
  }

  .hero-heading {
    font-size: 1.95rem;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .doctor-info-box {
    padding: 1rem;
    margin-bottom: 1.2rem;
  }

  .doctor-name {
    font-size: 1.35rem;
  }

  .doctor-degrees {
    font-size: 0.82rem;
  }

  .doctor-title {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .btn-gold, .btn-whatsapp, .btn-outline-gold {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 0.5rem;
  }

  .zodiac-wheel-container {
    width: 300px;
    height: 300px;
  }

  .doctor-hero-photo-wrapper {
    width: 240px;
  }

  /* MANDATORY 1-COLUMN FLEX STACKING FOR ALL GRID CONTAINERS ON MOBILE */
  .features-grid, 
  .services-grid-6, 
  .services-grid-11,
  .dual-banner-grid,
  .about-profile-grid,
  .about-preview-card,
  .consultation-grid,
  .contact-cards-grid,
  .contact-bottom-grid,
  .courses-grid,
  .videos-grid,
  .testimonials-grid,
  .vmv-grid,
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    width: 100% !important;
  }

  .about-preview-card {
    padding: 1.5rem !important;
  }

  .about-img-frame {
    width: 100% !important;
    max-width: 280px !important;
    min-height: 280px !important;
    margin: 0 auto !important;
  }

  .banner-card {
    padding: 1.5rem !important;
  }

  .banner-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  .stat-item-num {
    font-size: 2.2rem;
  }

  .stat-item-label {
    font-size: 0.82rem;
  }

  .booking-form-container {
    padding: 1.5rem !important;
    width: 100% !important;
  }

  .footer-grid,
  .footer-col,
  .footer-col h4,
  .footer-links,
  .footer-links li,
  .footer-links a {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .footer-contact-item {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .social-links {
    justify-content: flex-start !important;
  }
  
  .floating-side-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .zodiac-wheel-container {
    width: 260px;
    height: 260px;
  }

  .doctor-hero-photo-wrapper {
    width: 200px;
  }

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

  .planet-jupiter { width: 34px; height: 34px; top: 2%; left: 2%; }
  .planet-saturn { width: 32px; height: 32px; top: 5%; right: 2%; }
  .planet-saturn::after { width: 50px; height: 14px; }
  .planet-mars { width: 26px; height: 26px; top: 48%; right: -2%; }
  .planet-moon { width: 24px; height: 24px; bottom: 8%; right: 4%; }
  .planet-venus { width: 28px; height: 28px; top: 45%; left: -2%; }
  .planet-earth { width: 28px; height: 28px; bottom: 8%; left: 4%; }

  .quick-access-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    width: 100% !important;
  }

  .quick-access-card {
    padding: 1rem 0.8rem;
  }

  .validity-selector-card {
    padding: 1.2rem;
    margin: 1rem auto;
  }

  .validity-option-card {
    padding: 0.9rem;
  }

  .validity-duration-text {
    font-size: 0.95rem;
  }

  .validity-price-current {
    font-size: 1.05rem;
  }
/* Scroll Reveal Animation Helper Classes */
.scroll-animated-hidden {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Admin Mobile Responsiveness & Table Utilities */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn-sidebar-toggle {
  display: none;
  background: transparent;
  border: 1px solid #2d3748;
  color: #d4af37;
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .btn-sidebar-toggle {
    display: inline-block;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0,0,0,0.8);
    width: 280px;
  }

  .admin-sidebar.sidebar-open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0 !important;
    padding: 15px !important;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .top-bar > div {
    width: 100%;
    justify-content: space-between;
  }

  .user-badge {
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    font-size: 0.85rem;
  }

  #admin-user-email {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 12px !important;
  }

  .stat-card {
    padding: 14px !important;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--admin-gold, #d4af37);
  }

  .admin-table th, .admin-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .modal-box {
    width: 95% !important;
    padding: 20px !important;
    max-height: 85vh;
  }
}


