/* ==========================================================================
   KOTE KANNECT - LUXURY DESIGN SYSTEM 2026
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

:root {
  /* Strictly Enforced Luxury Light Palette - Saffron, Gold & White */
  --color-bg-primary: #ffffff;
  --color-bg-elevated: rgba(255, 255, 255, 0.75); /* Frosted glass white */
  --color-bg-surface: #faf7f2; /* Soft cream surface */
  --color-text-primary: #051236; /* Prestigious dark navy */
  --color-text-secondary: #555555; /* Readability grey */
  --color-text-body: #333333; /* High legibility dark slate */
  --color-accent: #c2410c; /* Deep spiritual saffron */
  --color-accent-hover: #d4af37; /* Celestial gold */
  --color-border-subtle: rgba(212, 175, 55, 0.20); /* Gold hairline */
  --color-border-strong: rgba(194, 65, 12, 0.35); /* Saffron glow touch */

  /* Translucent & Premium Glass System */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-hover: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-border-hover: rgba(194, 65, 12, 0.35);

  /* Typography */
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Elevations - Softened & Premium */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 4px 15px rgba(194, 65, 12, 0.1);

  /* Motion */
  --transition-fast: 150ms ease-out;
  --transition-normal: 300ms ease-out;
  --transition-slow: 500ms ease-out;
  --transition-premium: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slim Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-surface);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  border-radius: 10px;
  border: 2px solid var(--color-bg-surface);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 300; /* Lighter weight for elegance */
  background-color: var(--color-bg-primary);
  color: var(--color-text-body);
  line-height: 1.7; /* Increased for readability */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  line-height: 1.2;
  font-weight: 400; /* Maintained elegant serif, reduced weight */
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-accent-hover);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

/* ==========================================================================
   GLOBAL BACKGROUND & TEXTURE (ULTRA-PREMIUM)
   ========================================================================== */
body {
  background-color: var(--color-bg-primary);
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(194, 65, 12, 0.05),
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.05),
      transparent 50%
    ),
    linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
}

/* Luxury Noise Texture - Hollywood Film Grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.section-padding {
  padding-block: 100px; /* Increased padding */
}
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

@media (max-width: 992px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Typography Utils */
.hero-accent-line {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent);
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  text-shadow: 
    0 1px 0 rgba(212, 175, 55, 0.4),
    0 2px 0 rgba(194, 65, 12, 0.25),
    0 4px 10px rgba(5, 18, 54, 0.08);
}
.section-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-accent) 30%, 
    var(--color-accent-hover) 50%, 
    var(--color-accent) 70%, 
    transparent 100%
  );
  background-size: 200% 100%;
  margin: 0 auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 4px rgba(194, 65, 12, 0.4));
  animation: divider-lightning 3s infinite linear, divider-flicker 4s infinite ease-in-out;
}

@keyframes divider-lightning {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes divider-flicker {
  0%, 100% {
    opacity: 0.85;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.95)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.75));
  }
  52% {
    opacity: 0.9;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
  }
  54% {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.95)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.85));
  }
}
.section-header {
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
  margin-inline: auto;
}
.service-section-image {
  margin-bottom: 20px;
  text-align: center;
}
.service-section-image img.service-header-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-inline: auto;
}
.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.glow-text {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-premium);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #a03308 100%);
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(194, 65, 12, 0.25), 0 0 10px rgba(194, 65, 12, 0.15);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal) ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(194, 65, 12, 0.5), 0 0 25px rgba(212, 175, 55, 0.2);
}
.btn-outline {
  background: transparent !important;
  border: 1px solid var(--color-accent) !important;
  color: var(--color-accent) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal) ease;
}
.btn-outline:hover::before {
  opacity: 1;
}
.btn-outline:hover {
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

/* Premium Cards */
.premium-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: all var(--transition-premium);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 
    0 8px 32px rgba(5, 18, 54, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  transition: left 0.6s ease;
}
.premium-card:hover::before {
  left: 200%;
  transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.premium-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(194, 65, 12, 0.4);
  box-shadow:
    0 20px 40px rgba(5, 18, 54, 0.08),
    0 0 25px rgba(212, 175, 55, 0.15);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.card-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-accent);
  opacity: 0.7;
}
.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  transition: all var(--transition-normal);
}
.card-icon img {
  width: 40px;
  height: 40px;
  filter: sepia(1) hue-rotate(15deg) saturate(3) brightness(1.3); /* Gold tint */
}
.premium-card:hover .card-icon {
  transform: scale(1.1);
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}
.card-link {
  margin-top: auto;
  padding-top: var(--space-md);
  font-family: var(--font-body);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  box-shadow: inset 0 1px 3px rgba(5, 18, 54, 0.02);
}
.form-control::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(194, 65, 12, 0.2);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 30px rgba(194, 65, 12, 0.04);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}
.nav-link {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent-hover); /* Gold underline on hover */
  transition:
    width var(--transition-fast),
    box-shadow var(--transition-fast);
}
.nav-link.active::after {
  width: 100%;
  background: var(--color-accent); /* Deep Saffron for active */
}
.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 8px var(--color-accent-hover); /* Gold glow */
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-accent); /* Deep Saffron text */
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   SPECIFIC SECTIONS
   ========================================================================== */

/* Cinematic Eclipse Hero & Base Hero */
.hero,
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff; /* Base Layer 1 */
}
.hero::before,
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(194, 65, 12, 0.06) 0%,
    transparent 70%
  ); /* Layer 2: Soft Saffron Gradient */
  pointer-events: none;
  z-index: 0;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 175, 55, 0.07),
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(194, 65, 12, 0.07),
      transparent 35%
    ); /* Layer 3: Luxury Glow Shapes */
  filter: blur(60px);
}
.hero-content {
  position: relative;
  z-index: 5;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Subtle depth shadow behind content */
}
.hero-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero::after,
.premium-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: light-sweep 8s infinite;
}

@keyframes light-sweep {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

.premium-hero .hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding-top: 5vh;
}
.premium-hero .hero-content {
  text-align: left;
  max-width: 600px;
}
.hero-badge-wrap {
  margin-bottom: var(--space-lg);
  display: inline-block;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-tag {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--color-accent) !important;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: inline-block;
}
.hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  margin-bottom: var(--space-md);
  line-height: 1.05;
  color: var(--color-text-primary);
  text-shadow: 
    0 1px 0 rgba(212, 175, 55, 0.4),
    0 2px 0 rgba(194, 65, 12, 0.3),
    0 3px 0 rgba(194, 65, 12, 0.25),
    0 4px 0 rgba(212, 175, 55, 0.2),
    0 8px 20px rgba(5, 18, 54, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  display: block;
}
.hero-desc {
  font-size: 1.15rem;
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  line-height: 1.7;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}
.hero-buttons {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}

/* Counters */
.counter-card {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.counter-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}
.counter-label {
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* About / Best Astrologer */
.best-astro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-2xl);
  align-items: center;
}
.astro-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 175, 55, 0.15);
  transition: all var(--transition-premium);
}
.astro-image-wrap:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.astro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.astro-image-wrap:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   INNER PAGE HEADERS (ULTRA PREMIUM 3D)
   ========================================================================== */
.inner-page-header {
  position: relative;
  text-align: center;
  padding: 160px 0 120px 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #09226b 0%, #051236 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.2);
}

/* Dynamic Ambient Glow 1 */
.inner-page-header::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 70%;
  height: 180%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 65%);
  transform: rotate(-35deg);
  z-index: -1;
  pointer-events: none;
}

/* Dynamic Ambient Glow 2 */
.inner-page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.breadcrumb-image {
  display: none;
}

.inner-page-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 2rem;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-shadow: 
    0 1px 0 rgba(212, 175, 55, 0.6),
    0 2px 0 rgba(194, 65, 12, 0.5),
    0 3px 0 rgba(194, 65, 12, 0.4),
    0 4px 0 rgba(212, 175, 55, 0.3),
    0 8px 20px rgba(212, 175, 55, 0.3),
    0 12px 35px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.01em;
}

/* Premium Gold Divider Line */
.inner-page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.inner-page-header p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-top: 1.5rem;
}

/* ==========================================================================
   BREADCRUMBS (PREMIUM SYSTEM)
   ========================================================================== */
.breadcrumb {
  display: none !important;
  flex-wrap: wrap;
  padding: 10px 28px;
  margin: var(--space-md) auto;
  list-style: none;
  font-size: 0.85rem;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-premium);
  box-shadow: 
    0 4px 10px rgba(5, 18, 54, 0.03),
    0 10px 25px rgba(5, 18, 54, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.breadcrumb:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(194, 65, 12, 0.4);
  box-shadow: 
    0 8px 30px rgba(212, 175, 55, 0.18),
    0 0 20px rgba(194, 65, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Elegant gold star preceding the first item */
.breadcrumb li:first-child::before {
  content: "✦";
  margin-right: 10px;
  color: var(--color-accent-hover);
  font-size: 0.8rem;
  animation: star-sparkle 3s infinite alternate ease-in-out;
  display: inline-block;
}

@keyframes star-sparkle {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.15); }
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 var(--space-sm);
  color: var(--color-accent);
  font-size: 0.9rem;
  opacity: 0.4;
  font-weight: 300;
}

.breadcrumb li a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-weight: 500;
}

.breadcrumb li a:hover {
  color: var(--color-accent);
}

/* Luxury gold line transition under anchors */
.breadcrumb li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.breadcrumb li a:hover::after {
  width: 100%;
}

.breadcrumb li:last-child {
  color: var(--color-accent); /* Saffron for active page */
  font-weight: 600;
  pointer-events: none;
  text-decoration: none !important;
}
}

/* FAQs */
details {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  margin-bottom: var(--space-sm);
  box-shadow: 
    0 8px 32px rgba(5, 18, 54, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all var(--transition-normal);
}
details:hover {
  border-color: rgba(194, 65, 12, 0.35);
  box-shadow: 
    0 12px 36px rgba(5, 18, 54, 0.06),
    0 0 15px rgba(212, 175, 55, 0.1);
}
summary {
  padding: var(--space-lg);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--color-accent);
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}
details[open] summary::after {
  transform: rotate(45deg);
}
details[open] summary {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.faq-content {
  padding: var(--space-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--color-bg-elevated);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--color-border-subtle);
  margin-top: var(--space-3xl);
}
.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: var(--space-3xl);
}
.footer-logo img {
  height: 80px;
  margin-bottom: var(--space-md);
}
.footer-heading {
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.4rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-links a {
  color: var(--color-text-secondary);
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  text-align: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.9rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--color-bg-elevated);
    flex-direction: column;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border-subtle);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }

  .best-astro-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GLOW EFFECTS SYSTEM
   ========================================================================== */
.premium-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  animation: soft-drift 20s infinite alternate ease-in-out;
}
.premium-glow.saffron {
  background: var(--color-accent);
}
.premium-glow.gold {
  background: var(--color-accent-hover);
}
@keyframes soft-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.1); opacity: 0.25; }
}

@media (max-width: 992px) {
  .premium-hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 15vh;
  }
  .premium-hero .hero-content {
    margin: 0 auto;
  }
  .premium-hero .hero-buttons {
    justify-content: center;
  }
  .best-astro-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PREMIUM NAVIGATION
   ========================================================================== */
.premium-navbar {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(5, 18, 54, 0.04);
}

.premium-navbar .nav-link {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  padding: 8px 0;
}

.premium-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent-hover);
  transition:
    width 0.3s ease,
    box-shadow 0.3s ease;
}

.premium-navbar .nav-link.active::after {
  width: 100%;
  background-color: var(--color-accent);
}

.premium-navbar .nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 8px var(--color-accent-hover);
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
  color: var(--color-accent);
}

.premium-navbar .dropdown {
  position: relative;
}

.premium-navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(5, 18, 54, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  list-style: none;
  margin: 0;
}

.premium-navbar .dropdown:hover .dropdown-menu,
.premium-navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  color: var(--color-accent);
  background: rgba(212, 175, 55, 0.08);
}

.btn-outline {
  background: transparent !important;
  border: 1px solid var(--color-accent) !important;
  color: var(--color-accent) !important;
}

.btn-outline:hover {
  background: var(--color-accent) !important;
  color: var(--color-bg-primary) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   PREMIUM FOOTER
   ========================================================================== */
.premium-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(250, 247, 242, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: var(--space-3xl) 0 var(--space-md) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 20px 40px rgba(5, 18, 54, 0.02);
}

.premium-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.premium-footer::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.premium-footer .footer-heading {
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.premium-footer .footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  border-radius: 2px;
}

.premium-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-footer .footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.premium-footer .footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transition: width 0.3s ease;
}

.premium-footer .footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--color-text-primary);
  box-shadow: 0 4px 10px rgba(5, 18, 54, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.35);
  transform: translateY(-4px) scale(1.05);
}

/* ==========================================================================
   EDITORIAL TYPOGRAPHY & REFERENCE CARDS
   ========================================================================== */
.accent-italic {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-accent);
}

.small-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.reference-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-premium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 
    0 8px 32px rgba(5, 18, 54, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reference-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  transition: left 0.6s ease;
}

.reference-card:hover::before {
  left: 200%;
  transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reference-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(194, 65, 12, 0.4);
  box-shadow:
    0 20px 40px rgba(5, 18, 54, 0.08),
    0 0 25px rgba(212, 175, 55, 0.15);
}

.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}

.rc-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.rc-icon svg {
  color: var(--color-accent);
  opacity: 0.8;
}

.rc-middle {
  flex-grow: 1;
  margin-bottom: var(--space-xl);
}

.rc-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.rc-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-subtle);
}

.rc-price {
  color: var(--color-accent);
  font-weight: 500;
}

.rc-duration {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .premium-navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg-primary);
    flex-direction: column;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border-subtle);
  }
  .premium-navbar .nav-links.active {
    display: flex;
  }
  .premium-navbar .dropdown-menu {
    position: relative;
    top: 0;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    border-left: 1px solid var(--color-border-subtle);
    margin-left: 10px;
    padding-left: 10px;
    display: none;
  }
  .premium-navbar .dropdown-menu.show {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ==========================================================================
   GSAP SCROLL-DRIVEN SERVICE REVEAL
   ========================================================================== */
.services-scroll {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-inner {
  position: relative;
  width: 100%;
  max-width: 680px; /* Width of the card */
  height: 540px;
}

.service_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
  will-change: transform, opacity;
  box-shadow: 
    0 8px 32px rgba(5, 18, 54, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service_item.active {
  pointer-events: auto;
  box-shadow:
    0 20px 40px rgba(5, 18, 54, 0.08),
    0 0 25px rgba(212, 175, 55, 0.15);
  border-color: rgba(194, 65, 12, 0.4);
}

.service_item .card-icon img {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  filter: sepia(1) hue-rotate(15deg) saturate(3) brightness(1.3);
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--color-bg-surface);
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service_item .card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.service_item p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.service_item .card-link {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.service_item .card-link:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 992px) {
  .services-scroll {
    height: auto;
    display: block;
    padding: var(--space-xl) 0;
    overflow: visible;
  }
  .services-inner {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }
  .service_item {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   ZODIAC VIDEO CAROUSEL & MODAL
   ========================================================================== */
.zodiac-carousel-section {
  position: relative;
  overflow: hidden;
}

.zodiac-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
}

.zodiac-slide {
  width: 300px;
  height: 400px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.6;
  transform: scale(0.85) translateY(20px);
  cursor: pointer;
  filter: grayscale(0.5);
}

.zodiac-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1.05) translateY(0);
  z-index: 2;
  filter: grayscale(0);
}

.zodiac-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  background: var(--color-bg-elevated);
}
.zodiac-card:hover {
  transform: translateY(-4px);
}

.zodiac-slide.swiper-slide-active .zodiac-card {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 15px 40px rgba(5, 18, 54, 0.08),
    0 0 25px rgba(212, 175, 55, 0.15);
}

.zodiac-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zodiac-card:hover .zodiac-thumb {
  transform: scale(1.05);
}

.zodiac-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.9) 0%,
    rgba(17, 17, 17, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl) var(--space-lg);
  transition: all 0.4s ease;
}

.zodiac-card:hover .zodiac-overlay {
  background: linear-gradient(
    to top,
    rgba(194, 65, 12, 0.8) 0%,
    rgba(17, 17, 17, 0.2) 60%,
    transparent 100%
  );
}

.zodiac-title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-top: auto;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.zodiac-slide.swiper-slide-active .zodiac-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(212, 175, 55, 1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Swiper Nav Buttons */
.zodiac-next,
.zodiac-prev {
  color: var(--color-accent) !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .zodiac-slide {
    width: 260px;
    height: 350px;
  }
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  width: 90%;
  max-width: 1000px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

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

.video-modal-close {
  position: absolute;
  top: -40px;
  right: -20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.video-modal-close:hover {
  color: var(--color-accent);
}

.video-responsive-iframe {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(194, 65, 12, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #ffffff;
}

.video-responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   ENQUIRY FORM MODAL (CTA SYSTEM)
   ========================================================================== */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.enquiry-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal-container {
  width: 92%;
  max-width: 420px; /* Compact design */
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.enquiry-modal-overlay.active .enquiry-modal-container {
  transform: scale(1) translateY(0);
}

.enquiry-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.enquiry-close-btn:hover {
  color: var(--color-accent);
}

.enquiry-modal-header {
  margin-bottom: 24px;
  text-align: center;
}

.enquiry-modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

/* Inline CTA Style */
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 2px;
}

.inline-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-accent);
  transition: width var(--transition-normal);
}

.inline-cta:hover::after {
  width: 100%;
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   SOLAR SYSTEM COMPONENT (PRO LEVEL)
   ========================================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  min-height: 70vh;
  padding-block: var(--space-xl);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.solar-system-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.solar-system-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 450px; /* Explicit height fallback */
  max-width: 580px;
  margin: auto;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Cosmic star field */
.solar-system-container::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: 
    radial-gradient(1.5px 1.5px at 15% 25%, #d4af37, transparent),
    radial-gradient(1px 1px at 35% 55%, #c2410c, transparent),
    radial-gradient(1.2px 1.2px at 75% 35%, #d4af37, transparent),
    radial-gradient(2px 2px at 45% 85%, #d4af37, transparent),
    radial-gradient(1px 1px at 85% 75%, #c2410c, transparent);
  background-size: 250px 250px;
  opacity: 0.25;
  z-index: -1;
  animation: cosmic-drift 10s ease-in-out infinite alternate;
}

@keyframes cosmic-drift {
  from { opacity: 0.15; transform: scale(1) rotate(0deg); }
  to { opacity: 0.35; transform: scale(1.1) rotate(5deg); }
}

.solar-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.orbit {
  border: 1px dashed rgba(194, 65, 12, 0.25); /* More visible saffron dashed line */
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* SUN */
#sun {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ffd84d 30%, #ffbf00 60%, #c2410c 100%);
  box-shadow: 
    0 0 50px rgba(255, 191, 0, 0.5),
    0 0 100px rgba(194, 65, 12, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.4);
  z-index: 10;
  animation: sun-aura 4s ease-in-out infinite alternate;
}

@keyframes sun-aura {
  from { box-shadow: 0 0 40px rgba(255, 191, 0, 0.4), 0 0 80px rgba(194, 65, 12, 0.15); }
  to { box-shadow: 0 0 70px rgba(255, 191, 0, 0.7), 0 0 140px rgba(194, 65, 12, 0.4); }
}

.planet-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin-top: calc(var(--orbit-size) / -2);
  margin-left: calc(var(--orbit-size) / -2);
  animation: rotate-right var(--duration) linear infinite;
}

.planet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: inset -5px -5px 12px rgba(0,0,0,0.4), 0 0 12px rgba(0,0,0,0.15);
}

/* Planet Configs */
.mercury-orbit { width: 180px; height: 180px; }
.mercury-spin { --orbit-size: 180px; --duration: 9s; }
#mercury { width: 16px; height: 16px; background: radial-gradient(circle at 30% 30%, #bdbdbd, #525252); }

.venus-orbit { width: 250px; height: 250px; }
.venus-spin { --orbit-size: 250px; --duration: 18s; }
#venus { width: 26px; height: 26px; background: radial-gradient(circle at 30% 30%, #fbd786, #c2410c); }

.earth-orbit { width: 360px; height: 360px; }
.earth-spin { --orbit-size: 360px; --duration: 30s; }
#earth { 
  width: 50px; height: 50px; 
  background-image: url('../images/earth_premium.png'); 
  background-size: cover;
  box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.moon-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  animation: rotate-right 5s linear infinite;
}
#moon { 
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 12px; background: radial-gradient(circle at 30% 30%, #f5f5f5, #999);
}

.mars-orbit { width: 480px; height: 480px; }
.mars-spin { --orbit-size: 480px; --duration: 50s; }
#mars { width: 22px; height: 22px; background: radial-gradient(circle at 30% 30%, #ff5252, #a70000); }

@keyframes rotate-right {
  100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .solar-system-container { transform: scale(0.6); }
}

/* ----------- New Hero Grid Layout and Solar System Styling ----------- */

/* Two‑column layout for hero section */
.hero-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-2xl);
  /* Ensure content stays above background layers */
  position: relative;
  z-index: 5;
}

/* Right‑side container for the solar system */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10; /* ensure solar system sits above left content */
}

.solar-system-wrapper {
  width: 100%;
  max-width: 500px; /* limits size for large screens */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}


/* ----------- Premium Solar System Hero Layout ----------- */

/* Two-column layout for hero section */

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
}

/* ULTRA PRO: Staggered Entrance */
.hero-content > * {
  animation: hero-fade-in 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content .hero-badge-wrap { animation-delay: 0.2s; }
.hero-content .hero-title      { animation-delay: 0.4s; }
.hero-content .hero-desc       { animation-delay: 0.6s; }
.hero-content .hero-buttons    { animation-delay: 0.8s; }

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ULTRA PRO: Badge Styling */
.hero-badge-wrap {
  display: inline-block;
  margin-bottom: var(--space-lg);
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 
    0 2px 4px rgba(5, 18, 54, 0.04),
    0 6px 15px rgba(5, 18, 54, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}

.hero-content .hero-tag {
  color: #081f68;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
  margin: 0;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #a03308 100%);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(194, 65, 12, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(194, 65, 12, 0.4);
}

.hero-title .accent-italic {
  display: block;
  margin-top: 5px;
  background: linear-gradient(90deg, var(--color-accent), #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 5px rgba(194, 65, 12, 0.1));
}

.hero-right {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  min-height: 600px;
  animation: hero-fade-in 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
}

/* ULTRA PRO: Cinematic Halo */
.cinematic-halo {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.12) 0%, transparent 75%);
  transform: translateY(-50%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-halo 10s infinite ease-in-out;
}

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

/* ULTRA PRO: Cosmic Particles Background */
.cosmic-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #c2410c, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 40px 70px, #d4af37, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 50px 160px, #c2410c, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, #d4af37, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 130px 80px, #c2410c, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  animation: drift-bg 60s linear infinite;
}

@keyframes drift-bg {
  from { background-position: 0 0; }
  to { background-position: 500px 1000px; }
}

/* SOLAR SYSTEM - MATCHING USER'S WORKING CODE */
.solar-system {
  position: relative;
  width: 600px;
  height: 600px;
  margin: auto;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-system 6s infinite ease-in-out;
}

@keyframes float-system {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Orbit style */
.orbit {
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
  z-index: 1;
  animation: orbit-shimmer 4s infinite alternate ease-in-out;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.02);
}

@keyframes orbit-shimmer {
  0% { opacity: 0.4; border-color: rgba(212, 175, 55, 0.08); }
  100% { opacity: 1; border-color: rgba(212, 175, 55, 0.3); }
}

/* Common positioning */
#sun, .orbit, .orbit + div, .orbit + div > div {
  position: absolute;
}

#sun, .orbit, .orbit + div {
  top: 50%;
  left: 50%;
}

.orbit + div > div {
  top: 0;
  left: 50%;
}

.planet {
  border-radius: 50%;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ULTRA PRO: Planet Glows (Auras) */
.planet::after {
  content: "";
  position: absolute;
  inset: -15px;
  background: inherit;
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
  border-radius: 50%;
  animation: planet-glow 3s infinite alternate ease-in-out;
}

@keyframes planet-glow {
  from { opacity: 0.2; transform: scale(0.9); }
  to   { opacity: 0.5; transform: scale(1.1); }
}

/* SUN */
#sun {
  height: 140px;
  width: 140px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ffd84d 40%, #c2410c 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 
    0 0 60px rgba(255, 216, 77, 0.4),
    0 0 120px rgba(194, 65, 12, 0.1);
  z-index: 5;
}

/* EARTH */
#earth {
  position: absolute;
  top: 0;
  left: 50%;
  height: 40px;
  width: 40px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #87ceeb 0%, #2b65ec 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#earth img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.earth-orbit, .earth-spin {
  width: 400px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* MOON */
#moon {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d1d1d1 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.moon-orbit, .moon-spin {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(0, 0, 0, 0.05);
}

/* VENUS */
#venus {
  height: 32px;
  width: 32px;
  background: radial-gradient(circle at 30% 30%, #fff2e6 0%, #f5c16c 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.venus-orbit, .venus-spin {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* MERCURY */
#mercury {
  height: 20px;
  width: 20px;
  background: radial-gradient(circle at 30% 30%, #f5f5f5 0%, #a1a1a1 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mercury-orbit, .mercury-spin {
  width: 220px;
  height: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* MARS */
#mars {
  height: 28px;
  width: 28px;
  background: radial-gradient(circle at 30% 30%, #ffdfd9 0%, #c1442e 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mars-orbit, .mars-spin {
  width: 520px;
  height: 520px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Animations */
@keyframes spin-right {
  100% {
    transform: rotate(360deg);
  }
}

.earth-spin {
  animation: spin-right 36.5s linear infinite;
}

.moon-spin {
  animation: spin-right 3s linear infinite;
}

.venus-spin {
  animation: spin-right 22s linear infinite;
}

.mercury-spin {
  animation: spin-right 8.8s linear infinite;
}

.mars-spin {
  animation: spin-right 68.7s linear infinite;
}

/* Responsive: stack vertically on tablets & mobiles */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-content {
    margin-bottom: var(--space-xl);
  }

  .solar-system {
    width: 90vw;
    height: 90vw;
    max-width: 480px;
    max-height: 480px;
    transform: none !important;
    margin: 20px auto 0 auto;
    overflow: visible;
  }

  /* Dynamically scale orbits and planet sizes fluidly inside relative container */
  .earth-orbit, .earth-spin { width: 66%; height: 66%; }
  .mars-orbit, .mars-spin { width: 86%; height: 86%; }
  .venus-orbit, .venus-spin { width: 50%; height: 50%; }
  .mercury-orbit, .mercury-spin { width: 36%; height: 36%; }
  #sun { width: 23%; height: 23%; }
  #earth { width: 10%; height: 10%; }
  #mars { width: 7%; height: 7%; }
  #venus { width: 8%; height: 8%; }
  #mercury { width: 5%; height: 5%; }
}

@media (max-width: 480px) {
  .solar-system {
    max-width: 320px;
    max-height: 320px;
  }
  .section-padding {
    padding-block: 60px;
  }
  .container {
    width: 90%;
  }
  .zodiac-slide {
    width: 82vw !important;
    height: 110vw !important;
  }
}

/* End of new styles */

/* Moving Fixed Celestial Background */
.celestial-background-wheel {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  height: 95vw;
  max-width: 1200px;
  max-height: 1200px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='300' cy='300' r='290' fill='none' stroke='%23c2410c' stroke-width='0.75' stroke-opacity='0.12' /%3E%3Ccircle cx='300' cy='300' r='260' fill='none' stroke='%23d4af37' stroke-width='0.5' stroke-opacity='0.08' stroke-dasharray='4 4' /%3E%3Ccircle cx='300' cy='300' r='220' fill='none' stroke='%23c2410c' stroke-width='0.5' stroke-opacity='0.08' /%3E%3Ccircle cx='300' cy='300' r='180' fill='none' stroke='%23d4af37' stroke-width='0.5' stroke-opacity='0.08' /%3E%3Ccircle cx='300' cy='300' r='100' fill='none' stroke='%23c2410c' stroke-width='0.5' stroke-opacity='0.06' stroke-dasharray='2 2' /%3E%3Ccircle cx='300' cy='300' r='40' fill='none' stroke='%23d4af37' stroke-width='0.5' stroke-opacity='0.06' /%3E%3Cline x1='300' y1='10' x2='300' y2='590' stroke='%23c2410c' stroke-width='0.5' stroke-opacity='0.05' /%3E%3Cline x1='10' y1='300' x2='590' y2='300' stroke='%23c2410c' stroke-width='0.5' stroke-opacity='0.05' /%3E%3Cline x1='95' y1='95' x2='505' y2='505' stroke='%23d4af37' stroke-width='0.4' stroke-opacity='0.05' /%3E%3Cline x1='95' y1='505' x2='505' y2='95' stroke='%23d4af37' stroke-width='0.4' stroke-opacity='0.05' /%3E%3Cline x1='300' y1='300' x2='445' y2='50' stroke='%23c2410c' stroke-width='0.3' stroke-opacity='0.04' /%3E%3Cline x1='300' y1='300' x2='155' y2='550' stroke='%23c2410c' stroke-width='0.3' stroke-opacity='0.04' /%3E%3Cline x1='300' y1='300' x2='50' y2='155' stroke='%23c2410c' stroke-width='0.3' stroke-opacity='0.04' /%3E%3Cline x1='300' y1='300' x2='550' y2='445' stroke='%23c2410c' stroke-width='0.3' stroke-opacity='0.04' /%3E%3Ccircle cx='300' cy='60' r='2' fill='%23d4af37' fill-opacity='0.2' /%3E%3Ccircle cx='300' cy='540' r='2' fill='%23d4af37' fill-opacity='0.2' /%3E%3Ccircle cx='60' cy='300' r='2' fill='%23d4af37' fill-opacity='0.2' /%3E%3Ccircle cx='540' cy='300' r='2' fill='%23d4af37' fill-opacity='0.2' /%3E%3Ccircle cx='180' cy='180' r='1.5' fill='%23c2410c' fill-opacity='0.15' /%3E%3Ccircle cx='420' cy='420' r='1.5' fill='%23c2410c' fill-opacity='0.15' /%3E%3Ccircle cx='180' cy='420' r='1.5' fill='%23c2410c' fill-opacity='0.15' /%3E%3Ccircle cx='420' cy='180' r='1.5' fill='%23c2410c' fill-opacity='0.15' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -5;
  will-change: transform;
  animation: spin-celestial 240s linear infinite;
  transform-origin: center center;
  filter: blur(0.5px);
}

@keyframes spin-celestial {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .celestial-background-wheel {
    width: 120vw;
    height: 120vw;
  }
}

/* ==========================================================================
   HOLLYWOOD CINEMATIC NEXT-LEVEL EXTENSIONS
   ========================================================================== */

/* Custom Cinematic Cursor & Follower */
@media (min-width: 993px) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='3.5' fill='%23c2410c' fill-opacity='0.9'/%3E%3C/svg%3E") 5 5, auto;
  }
  .cinematic-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.12s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  }
}

/* Breathing Pulse on Solar Sun */
#sun {
  animation: sun-pulse 8s infinite alternate ease-in-out !important;
}

@keyframes sun-pulse {
  0% {
    box-shadow: 
      0 0 50px rgba(255, 216, 77, 0.4),
      0 0 100px rgba(194, 65, 12, 0.1);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    box-shadow: 
      0 0 80px rgba(255, 216, 77, 0.65),
      0 0 160px rgba(194, 65, 12, 0.25);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* Pulsing Ambient Halo on Primary Buttons */
.btn-primary {
  animation: btn-halo-pulse 3s infinite ease-in-out !important;
}

@keyframes btn-halo-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.25), 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.25), 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.25), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Constant Cinematic Sweep Light on Primary Buttons */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: btn-sweep 4s infinite ease-in-out;
}

@keyframes btn-sweep {
  0% { left: -100%; }
  25% { left: 200%; }
  100% { left: 200%; }
}

/* Subtle Shimmering Constellations Inside Cards Hover Backgrounds */
.premium-card::after, .service_item::after, .reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 30px 40px, var(--color-accent-hover), rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 180px 90px, var(--color-accent), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 90px 240px, var(--color-accent-hover), rgba(0,0,0,0)),
    radial-gradient(1.2px 1.2px at 240px 180px, var(--color-accent-hover), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 0;
}

.premium-card:hover::after, .service_item:hover::after, .reference-card:hover::after {
  opacity: 0.20;
}

/* --- Ultimate Best Cinematic Creative Additions --- */

/* Glowing Rotating Saffron & Gold Border Perimeter around Cards on Hover */
.premium-card::before, .service_item::before, .reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg, 
    rgba(212, 175, 55, 0.2), 
    rgba(194, 65, 12, 0.4), 
    rgba(212, 175, 55, 0.2)
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.4s ease, background 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.premium-card:hover::before, .service_item:hover::before, .reference-card:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg, 
    var(--color-accent), 
    var(--color-accent-hover), 
    var(--color-accent)
  );
  animation: border-rotate-glow 6s linear infinite;
}

@keyframes border-rotate-glow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* Beautiful Constellation Node preceding primary titles */
.section-title::before {
  content: "✦";
  color: var(--color-accent-hover);
  font-size: 1.2rem;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
  animation: star-sparkle-glow 3s infinite alternate ease-in-out;
}

@keyframes star-sparkle-glow {
  0% { opacity: 0.4; transform: scale(0.8) rotate(0deg); filter: drop-shadow(0 0 2px rgba(212,175,55,0.2)); }
  100% { opacity: 1; transform: scale(1.15) rotate(45deg); filter: drop-shadow(0 0 8px rgba(212,175,55,0.7)); }
}

/* Spiritual photographic Warm Color Grade sepia lens filter */
.service-image img, .service-card-image, .astro-image-wrap img {
  filter: saturate(1.04) contrast(1.02) sepia(0.06);
  transition: filter var(--transition-slow);
}
.service_item:hover .service-image img, 
.premium-card:hover .service-card-image, 
.astro-image-wrap:hover img {
  filter: saturate(1.12) contrast(1.04) sepia(0.01);
}

/* WhatsApp Breathing Saffron & Gold Pulse Halo Ring */
.whatsapp-float {
  animation: whatsapp-glow-ring 3s infinite ease-in-out !important;
}

@keyframes whatsapp-glow-ring {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.45);
  }
  70% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Clean Input bottom borders dynamic slide tracing */
.form-control {
  border-bottom: 2px solid rgba(212, 175, 55, 0.25) !important;
}
.form-control:focus {
  border-bottom: 2px solid var(--color-accent) !important;
}

/* ==========================================================================
   PRODUCTION DEPLOYMENT RESPONSIVE OVERRIDES
   ========================================================================== */

/* Tablet Footer Grid Polish */
@media (max-width: 992px) and (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--space-xl) !important;
  }
}

/* Card Padding Optimization on Mobile Viewports */
@media (max-width: 768px) {
  .premium-card, 
  .service_item, 
  .reference-card, 
  .booking-selection-box, 
  .booking-form-box {
    padding: var(--space-md) !important;
  }
}

/* Mobile Button Stacking & Adjacent Margins Alignment */
@media (max-width: 576px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Reset horizontal margins on general adjacent inline-styled buttons */
  .section-padding a.btn + a.btn,
  .container a.btn + a.btn,
  .about-content a.btn + a.btn,
  div a.btn + a.btn {
    margin-left: 0 !important;
    margin-top: 12px !important;
    display: block !important;
    width: 100% !important;
    text-align: center;
  }

  /* Safe interactive overlays for mobile screens */
  .video-modal-close {
    right: 0px !important;
    top: -45px !important;
  }
  .enquiry-modal-container {
    padding: 24px !important;
  }
}

/* Extremely Narrow Screen (e.g. iPhone SE 320px) Solar System Scaling */
@media (max-width: 360px) {
  .solar-system {
    max-width: 260px !important;
    max-height: 260px !important;
  }
}



