/* Custom Premium Styling for Astrologer Mukesh Gaur */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #070619;
  --bg-nebula: radial-gradient(circle at 50% 50%, #150f3d 0%, #070619 100%);
  --gold-primary: #d4af37;
  --gold-secondary: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --text-light: #f5f5f7;
  --text-muted: #a1a1aa;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-glow: rgba(212, 175, 55, 0.05);
  --font-mystical: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  background-color: var(--bg-deep);
  background-image: var(--bg-nebula);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Cosmic background canvas or particles placeholder styling */
.space-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 40px),
    radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 30px),
    radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 40px);
  background-size: 550px 550px, 350px 350px, 250px 250px;
  background-position: 0 0, 40px 60px, 130px 270px;
  opacity: 0.25;
  animation: cosmicDrift 120s linear infinite;
}

@keyframes cosmicDrift {
  0% {
    background-position: 0 0, 40px 60px, 130px 270px;
  }

  100% {
    background-position: 550px 550px, 390px 410px, 380px 520px;
  }
}

/* Typography & Layout elements */
h1,
h2,
h3,
h4 {
  font-family: var(--font-mystical);
  color: var(--gold-secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 50%, #aa7c11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  z-index: 1000;
  background: rgba(7, 6, 25, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.4rem;
  font-family: var(--font-mystical);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-secondary);
  text-shadow: 0 0 10px var(--gold-glow);
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-top: -2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
}

nav ul li a:hover {
  color: var(--gold-secondary);
  text-shadow: 0 0 8px var(--gold-glow);
}

nav ul li a:hover::after {
  width: 100%;
}

.contact-btn-header {
  border: 1px solid var(--gold-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  color: var(--gold-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  background: transparent;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.contact-btn-header:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
  box-shadow: 0 0 15px var(--gold-glow);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--gold-secondary);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  text-align: left;
}

.hero-content {
  position: relative;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-border {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, var(--gold-secondary) 0%, rgba(212, 175, 55, 0.2) 50%, var(--gold-primary) 100%);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
  animation: floatImage 6s ease-in-out infinite alternate;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  filter: brightness(0.95) contrast(1.05);
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.zodiac-wheel-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

.outer-wheel {
  width: 620px;
  height: 620px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="96" fill="none" stroke="%23d4af37" stroke-width="0.35" stroke-dasharray="3,4" opacity="0.25"/><circle cx="100" cy="100" r="90" fill="none" stroke="%23d4af37" stroke-width="0.2" opacity="0.15"/><circle cx="100" cy="100" r="82" fill="none" stroke="%23d4af37" stroke-width="0.4" stroke-dasharray="12,6" opacity="0.3"/><line x1="100" y1="4" x2="100" y2="196" stroke="%23d4af37" stroke-width="0.2" opacity="0.15"/><line x1="4" y1="100" x2="196" y2="100" stroke="%23d4af37" stroke-width="0.2" opacity="0.15"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.22;
  animation: rotateWheelCW 90s linear infinite;
}

.inner-wheel {
  width: 460px;
  height: 460px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="76" fill="none" stroke="%23d4af37" stroke-width="0.3" stroke-dasharray="2,2" opacity="0.3"/><circle cx="100" cy="100" r="66" fill="none" stroke="%23d4af37" stroke-width="0.4" opacity="0.2"/><circle cx="100" cy="100" r="54" fill="none" stroke="%23d4af37" stroke-width="0.25" stroke-dasharray="8,4" opacity="0.35"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.28;
  animation: rotateWheelCCW 60s linear infinite;
}

.nebula-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(21, 15, 61, 0.4) 50%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: nebulaPulse 10s ease-in-out infinite alternate;
}

@keyframes rotateWheelCW {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes nebulaPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1.2;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.badge-star {
  color: var(--gold-primary);
  font-size: 0.75rem;
  text-shadow: 0 0 5px var(--gold-glow);
  animation: starPulse 2s infinite alternate;
}

.badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-secondary);
  font-weight: 500;
}

@keyframes starPulse {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  /* justify-content: center; */
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
  color: var(--bg-deep);
  border: none;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.55);
}

.shiny-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  animation: shineLoop 4s infinite ease-in-out;
}

@keyframes shineLoop {
  0% {
    left: -60%;
  }

  15% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-secondary);
  transform: translateY(-3px);
}

/* Sections General */
section {
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '✦';
  display: block;
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-top: 0.5rem;
  letter-spacing: 0;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background: var(--glass-bg);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(21, 15, 61, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.about-img-placeholder i {
  font-size: 4rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px var(--gold-glow);
}

.about-img-placeholder span {
  font-family: var(--font-mystical);
  font-size: 1.5rem;
  color: var(--text-light);
}

.about-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.highlight-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.highlight-box:hover {
  background: rgba(212, 175, 55, 0.02);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.highlight-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: 0.9rem;
  margin: 0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
  border: 1px solid var(--glass-border);
  padding: 1.25rem 0.75rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 40px rgba(7, 6, 25, 0.8), 0 0 20px rgba(212, 175, 55, 0.08);
  transform: translateY(-8px);
}

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

.service-image-wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--glass-border);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.service-card:hover .service-image-wrapper {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.7) contrast(1.05);
}

.service-card:hover .service-image {
  transform: scale(1.08);
  filter: brightness(0.9) contrast(1.1);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  transition: var(--transition-smooth);
}

.service-card:hover h3 {
  color: var(--gold-secondary);
  text-shadow: 0 0 10px rgba(243, 229, 171, 0.3);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: var(--transition-smooth);
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
  padding-bottom: 2px;
}

.service-read-more i {
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.service-read-more:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.service-read-more:hover i {
  transform: translateX(5px);
}

/* Horoscope Widget */
.horoscope-section {
  background: linear-gradient(180deg, rgba(7, 6, 25, 0) 0%, rgba(13, 10, 41, 0.6) 50%, rgba(7, 6, 25, 0) 100%);
}

.horoscope-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.zodiac-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.zodiac-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.zodiac-item:hover,
.zodiac-item.active {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.zodiac-item i {
  font-size: 1.8rem;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.zodiac-name {
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  color: var(--text-light);
}

.zodiac-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.horoscope-reading {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--gold-primary);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horoscope-reading h3 {
  margin-bottom: 0.8rem;
}

.horoscope-reading p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Contact & Booking */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 8px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.contact-meta h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-meta p,
.contact-meta a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.contact-meta a:hover {
  color: var(--gold-secondary);
}

.booking-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.booking-form button {
  grid-column: span 2;
  margin-top: 1rem;
  cursor: pointer;
}

/* Footer */
footer {
  background: #04030f;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo-desc p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

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

.footer-links ul a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links ul a:hover {
  color: var(--gold-secondary);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-secondary);
  background: rgba(212, 175, 55, 0.05);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations & Scroll Effects */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-image-wrapper {
    order: -1;
    /* image on top on smaller viewports */
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1.2rem 5%;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(7, 6, 25, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: var(--transition-smooth);
    padding: 8rem 10% 2rem;
    border-left: 1px solid var(--glass-border);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-btn-header {
    display: none;
    /* Can reside in menu list instead */
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

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

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
  }

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

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

  .form-group.full-width,
  .booking-form button {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .zodiac-selector {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 10px rgba(37, 211, 102, 0.2);
  z-index: 9999;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-float i {
  font-size: 1.3rem;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6), 0 0 15px rgba(37, 211, 102, 0.3);
  background: #20ba5a;
}

/* Owl Carousel custom styling overrides */
#testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 1.5rem;
}

#testimonials-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(212, 175, 55, 0.2) !important;
  transition: var(--transition-smooth);
}

#testimonials-carousel .owl-dot.active span {
  background: var(--gold-primary) !important;
  transform: scale(1.25);
}

/* Sidebar Layout styles */
.cosmic-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .cosmic-layout {
    grid-template-columns: 8fr 4fr;
  }
}

.cosmic-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sidebar-widget-title {
  font-family: var(--font-mystical);
  color: var(--gold-secondary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
}

/* Sidebar Recent Posts / Items List */
.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-list-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sidebar-list-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.sidebar-list-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-list-item-title {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.sidebar-list-item-title:hover {
  color: var(--gold-primary);
}

.sidebar-list-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sidebar quick links */
.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-links li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}

.sidebar-links li a:hover, .sidebar-links li.active a {
  color: var(--gold-secondary);
  background: rgba(212, 175, 55, 0.08);
  padding-left: 0.8rem;
}

.sidebar-links li a i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

/* Sidebar CTA widget */
.sidebar-cta {
  text-align: center;
}

.sidebar-cta-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: inline-block;
  animation: pulseGold 2s infinite alternate;
}

@keyframes pulseGold {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(212,175,55,0.2)); }
  100% { transform: scale(1.08); filter: drop-shadow(0 0 10px rgba(212,175,55,0.6)); }
}

/* Custom Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.custom-toast {
  pointer-events: auto;
  min-width: 300px;
  max-width: 400px;
  background: rgba(18, 18, 24, 0.95);
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(212, 175, 55, 0.15);
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  backdrop-filter: blur(10px);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  opacity: 0;
}

.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast-icon {
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.custom-toast-content {
  flex: 1;
}

.custom-toast-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--gold-secondary);
}

.custom-toast-message {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.custom-toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.custom-toast-close:hover {
  color: #ff4d4d;
}