* {
  box-sizing: border-box;
}

img {
  width: 160px;
  height: 160px;
  display: block;
}

/* Font CLS fix */
@font-face {
  font-display: swap;
}

.planet,
.planet img,
.rotating-logo,
.rotating-logo img {
  border-radius: 50%
}

.form-icon,
.planet-0 {
  transform: translateY(-50%)
}

.admin-btn,
.compatibility-section .btn,
.consultation-btn,
.cta-button,
.hero-service-box,
.hero-service-box:hover,
.navbar a {
  text-decoration: none
}

.footer-contact ul,
.footer-links ul,
.footer-services ul,
.navbar {
  list-style: none
}

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

body {
  font-family: Poppins, sans-serif;
  background: linear-gradient(140deg, #fff3dd, #ffe0b8, #ffcf8a);
  color: #333;
  width: 100%;
  max-width: 100vw;
  padding-top: 160px
}

.animated-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 12px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo-section,
.planet {
  align-items: center;
  display: flex
}

.stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, #eee, transparent), radial-gradient(2px 2px at 40px 70px, gold, transparent), radial-gradient(1px 1px at 90px 40px, #fff, transparent), radial-gradient(1px 1px at 130px 80px, gold, transparent), radial-gradient(2px 2px at 160px 30px, #eee, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: 50s linear infinite starsMove;
  z-index: 0
}

@keyframes starsMove {
  0% {
    transform: translateY(0)
  }

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

.planet {
  position: absolute;
  animation-timing-function: linear;
  z-index: 1;
  justify-content: center
}

.planet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .5))
}

.planet-0 {
  width: 45px;
  height: 45px;
  top: 50%;
  left: 5%;
  animation: 20s linear infinite sunRotate;
  box-shadow: 0 0 20px gold, 0 0 30px #ff6b00
}

@keyframes sunRotate {
  0% {
    transform: translateY(-50%) rotate(0)
  }

  100% {
    transform: translateY(-50%) rotate(360deg)
  }
}

.planet-1 {
  width: 18px;
  height: 18px;
  animation: 8s linear infinite mercuryOrbit
}

@keyframes mercuryOrbit {
  0% {
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(0) translateX(40px) rotate(0)
  }

  100% {
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(360deg) translateX(40px) rotate(-360deg)
  }
}

.planet-2 {
  width: 22px;
  height: 22px;
  animation: 12s linear infinite venusOrbit
}

@keyframes venusOrbit {
  0% {
    top: 50%;
    left: 12%;
    transform: translateY(-50%) rotate(0) translateX(60px) rotate(0)
  }

  100% {
    top: 50%;
    left: 12%;
    transform: translateY(-50%) rotate(360deg) translateX(60px) rotate(-360deg)
  }
}

.planet-3 {
  width: 24px;
  height: 24px;
  animation: 16s linear infinite earthOrbit
}

@keyframes earthOrbit {
  0% {
    top: 50%;
    left: 14%;
    transform: translateY(-50%) rotate(0) translateX(80px) rotate(0)
  }

  100% {
    top: 50%;
    left: 14%;
    transform: translateY(-50%) rotate(360deg) translateX(80px) rotate(-360deg)
  }
}

.planet-4 {
  width: 20px;
  height: 20px;
  animation: 20s linear infinite marsOrbit
}

@keyframes marsOrbit {
  0% {
    top: 50%;
    left: 16%;
    transform: translateY(-50%) rotate(0) translateX(100px) rotate(0)
  }

  100% {
    top: 50%;
    left: 16%;
    transform: translateY(-50%) rotate(360deg) translateX(100px) rotate(-360deg)
  }
}

.planet-5 {
  width: 38px;
  height: 38px;
  animation: 30s linear infinite jupiterOrbit
}

@keyframes jupiterOrbit {
  0% {
    top: 50%;
    left: 18%;
    transform: translateY(-50%) rotate(0) translateX(120px) rotate(0)
  }

  100% {
    top: 50%;
    left: 18%;
    transform: translateY(-50%) rotate(360deg) translateX(120px) rotate(-360deg)
  }
}

.planet-6 {
  width: 35px;
  height: 35px;
  animation: 40s linear infinite saturnOrbit
}

@keyframes saturnOrbit {
  0% {
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(0) translateX(140px) rotate(0)
  }

  100% {
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(360deg) translateX(140px) rotate(-360deg)
  }
}

.planet-7 {
  width: 28px;
  height: 28px;
  animation: 50s linear infinite uranusOrbit
}

@keyframes uranusOrbit {
  0% {
    top: 50%;
    left: 22%;
    transform: translateY(-50%) rotate(0) translateX(160px) rotate(0)
  }

  100% {
    top: 50%;
    left: 22%;
    transform: translateY(-50%) rotate(360deg) translateX(160px) rotate(-360deg)
  }
}

.planet-8 {
  width: 26px;
  height: 26px;
  animation: 60s linear infinite neptuneOrbit
}

.logo-container,
.rotating-logo {
  width: 70px;
  height: 70px;
  position: relative
}

@keyframes neptuneOrbit {
  0% {
    top: 50%;
    left: 24%;
    transform: translateY(-50%) rotate(0) translateX(180px) rotate(0)
  }

  100% {
    top: 50%;
    left: 24%;
    transform: translateY(-50%) rotate(360deg) translateX(180px) rotate(-360deg)
  }
}

.logo-section {
  gap: 15px;
  position: relative;
  z-index: 2;
  flex: 1
}

.rotating-logo {
  background: linear-gradient(135deg, #f93, #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 20s linear infinite rotate;
  box-shadow: 0 0 20px rgba(255, 107, 0, .7);
  overflow: hidden
}

.rotating-logo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(gold, #f93, #ff6b00, #ff4500, #ff6b00, #f93, gold);
  animation: 10s linear infinite rotate;
  border-radius: 50%
}

.rotating-logo img {
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 2;
  border: 2px solid gold
}

@keyframes rotate {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.animated-text {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1
}

.brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  background: linear-gradient(to right, gold, #f93, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 215, 0, .3);
  letter-spacing: 1px;
  animation: 3s ease-in-out infinite alternate glow
}

.about-content h2,
.astrology-services__title,
.brand-subtitle,
.hero-title,
.section-title {
  font-family: 'Playfair Display', serif
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px gold, 0 0 10px #f93
  }

  100% {
    text-shadow: 0 0 15px gold, 0 0 20px #f93, 0 0 25px #ff6b00
  }
}

.brand-subtitle {
  font-size: .9rem;
  color: gold;
  letter-spacing: 3px;
  margin-top: -2px;
  text-align: left;
  font-weight: 700;
  animation: 4s ease-in-out infinite subtitleMove
}

.about-image,
.astrology-services,
.faq-section,
.hero-section,
.hero-service-box,
.hero-services-title,
.ranking-section,
.stat,
.testimonials {
  text-align: center
}

@keyframes subtitleMove {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1
  }

  50% {
    transform: translateX(5px);
    opacity: .8
  }
}

.nav-container {
  background: linear-gradient(to right, #8b0000, #b22222);
  padding: 0 5%;
  box-shadow: 0 2px 10px rgba(139, 0, 0, .3);
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 999
}

.autocomplete-container,
.enhanced-service-dropdown,
.form-group,
.hero-section,
.menu-toggle,
.navbar a,
.navbar li {
  position: relative
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%
}

.admin-tab-content,
.auth-form,
.call-btn:hover::after,
.menu-toggle {
  display: none
}

.navbar a {
  color: #fff;
  padding: 12px 8px;
  display: block;
  font-size: .9rem;
  font-weight: 500;
  transition: .3s
}

.navbar a:hover {
  color: gold;
  transform: translateY(-2px)
}

.navbar a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: gold;
  border-radius: 2px
}

.call-btn {
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff !important;
  border-radius: 20px;
  padding: 6px 12px !important;
  font-weight: 600;
  font-size: .8rem;
  box-shadow: 0 4px 10px rgba(255, 107, 0, .3);
  transition: .3s
}

.call-btn:hover {
  background: linear-gradient(to right, #ff6b00, #ff4500);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, .4)
}

.wa-btn {
  padding: 0 !important
}

.wa-icon {
  width: 24px;
  height: 24px
}

.menu-toggle {
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
  width: 30px;
  height: 25px
}

.hero-overlay,
.hero-video {
  left: 0;
  height: 100%;
  width: 100%;
  top: 0
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  margin: 3px 0;
  transition: .3s;
  border-radius: 2px
}

.menu-toggle.active span:first-child {
  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-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  margin-top: 160px
}

.hero-video {
  position: absolute;
  object-fit: cover;
  z-index: -2
}

.hero-overlay {
  position: absolute;
  background: rgba(0, 0, 0, .5);
  z-index: -1
}

.hero-content {
  max-width: 1400px;
  padding: 40px 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
  background: linear-gradient(to right, gold, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, .7);
  line-height: 1.5
}

.hero-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto
}

.hero-form-container,
.hero-services-container {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
  height: fit-content
}

.hero-form-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: gold;
  font-weight: 600
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.form-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  color: #f93;
  font-size: 1rem
}

.hero-form input,
.hero-form select {
  padding: 12px 12px 12px 40px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  font-size: .9rem;
  color: #fff;
  width: 100%;
  transition: .3s
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, .7)
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: gold;
  outline: 0;
  background: rgba(255, 255, 255, .2);
  box-shadow: 0 0 15px rgba(255, 215, 0, .4)
}

.time-picker-container {
  display: flex;
  align-items: center;
  gap: 8px
}

.about-content,
.astro-details,
.chatbot-header-info,
.time-picker-container input {
  flex: 1
}

.time-period {
  display: flex;
  gap: 4px
}

.time-period-btn {
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  border-radius: 6px
}

.time-period-btn.active {
  border-color: #f93
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  z-index: 10;
  max-height: 150px;
  overflow-y: auto;
  display: none
}

.hero-service-icon,
.hero-submit-btn {
  box-shadow: 0 5px 15px rgba(255, 107, 0, .4)
}

.autocomplete-suggestion {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #333;
  font-size: .9rem
}

.autocomplete-suggestion:hover {
  background: #f5f5f5
}

.hero-submit-btn {
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff9a22, #ff7b00);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  margin-top: 8px
}

.hero-submit-btn:hover {
  background: linear-gradient(135deg, #ff8400, #ff5e00);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, .6)
}

.hero-services-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: gold;
  font-weight: 600
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px
}

.hero-service-box {
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 20px 15px;
  transition: .3s;
  border: 1px solid rgba(255, 255, 255, .2);
  cursor: pointer;
  display: block
}

.hero-service-box:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-3px);
  border-color: gold
}

.hero-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 20px;
  background: linear-gradient(135deg, #f93, #ff6b00)
}

.hero-service-box p {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin: 0
}

.about-us {
  width: 100%;
  padding: 80px 5%;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0)
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%
}

.about-image {
  flex: 1
}

.image-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 0, 0, .2)
}

.slides {
  display: flex;
  width: 500%;
  height: 120%;
  transition: transform .5s ease-in-out
}

.slide {
  width: 20%;
  height: 100%
}

.product-image img,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-content h2 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 20px
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 30px 0
}

.stat {
  flex: 1
}

.stat h3 {
  font-size: 2.2rem;
  color: #f93;
  margin-bottom: 5px
}

.reviews,
.stat p {
  font-size: .9rem;
  color: #777
}

.about-btn,
.read-more-btn {
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 4px 10px rgba(255, 107, 0, .3)
}

.about-btn:hover,
.buy-btn:hover,
.read-more-btn:hover {
  background: linear-gradient(to right, #ff6b00, #ff4500);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, .4)
}

.expert-team {
  margin: 20px 0
}

.expert-card {
  background: rgba(255, 255, 255, .1);
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border-left: 4px solid gold
}

.expert-card h4 {
  color: gold;
  margin-bottom: 8px;
  font-size: 1.1em
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0
}

.highlight-item {
  display: flex;
  align-items: center;
  background: rgba(255, 215, 0, .1);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, .3)
}

.highlight-item i {
  color: gold;
  margin-right: 10px;
  font-size: 1.2em
}

.video-section {
  background: linear-gradient(135deg, #fff7eb, #ffe9cc);
  padding: 80px 5%
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px
}

.astrology-services {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0);
  width: 100%;
  position: relative;
  overflow: hidden
}

.astrology-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="%23ff9933"/></svg>') 0 0/100px 100px;
  z-index: 0
}

.astrology-services__title {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .1);
  animation: 3s ease-in-out infinite alternate titleGlow
}

@keyframes titleGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .1)
  }

  100% {
    text-shadow: 2px 2px 10px rgba(255, 153, 51, .3)
  }
}

.astrology-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1
}

.astrology-service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  transition: .4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffe4cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1
}

.ranking-card,
.testimonial-box {
  border-radius: 15px;
  transition: .3s
}

.astrology-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  transition: .6s;
  z-index: -1
}

.astrology-service-card:hover::before,
.chatbot-send:hover::before,
.generate-btn:hover::before,
.match-btn:hover::before,
.quick-option:hover::before {
  left: 100%
}

.astrology-service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(255, 152, 0, .3);
  border-color: #f93
}

.astrology-service-card h3 {
  font-size: 1.4rem;
  color: #8b0000;
  margin-bottom: 15px;
  transition: .3s
}

.astrology-service-card:hover h3 {
  color: #ff6b00;
  transform: scale(1.05)
}

.astrology-service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  transition: .3s
}

.astrology-service-card:hover p {
  color: #333
}

.astrology-service-card img {
  width: 160px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: .4s;
  filter: grayscale(.2)
}

.astrology-service-card:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.astrology-service-card:nth-child(odd) {
  animation: 6s ease-in-out infinite float
}

.astrology-service-card:nth-child(2n) {
  animation: 6s ease-in-out 1s infinite float
}

.ranking-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  width: 100%
}

.enhanced-reasons-container,
.kundali-content-container,
.kundli-matching-content-container,
.ranking-container {
  max-width: 1200px;
  margin: 0 auto
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 15px
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  opacity: .9
}

.faq-heading,
.testimonial-title {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif
}

.ranking-cards,
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px
}

.ranking-card {
  background: rgba(255, 255, 255, .1);
  padding: 30px 20px;
  backdrop-filter: blur(10px)
}

.ranking-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .2)
}

.ranking-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: gold
}

.ranking-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px
}

.ranking-card p {
  font-size: .9rem;
  opacity: .9
}

.testimonials {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #fffaf0, #fff5e6);
  width: 100%
}

.testimonial-title {
  color: #8b0000;
  margin-bottom: 50px
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px
}

.testimonial-box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(139, 0, 0, .1)
}

.testimonial-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(139, 0, 0, .2)
}

.intro-content p,
.testimonial-content {
  margin-bottom: 20px
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  color: #555
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px
}

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover
}

.testimonial-user h4 {
  color: #8b0000;
  margin-bottom: 5px
}

.testimonial-user span {
  color: #777;
  font-size: .9rem
}

.faq-section {
  background: linear-gradient(135deg, #fff8e1, #ffe8b3);
  color: #5e2a00;
  padding: 80px 5%;
  width: 100%
}

.faq-heading {
  font-weight: 700;
  color: #b45f06;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(255, 193, 7, .5);
  letter-spacing: 1px
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left
}

.faq-item {
  background: #fff6d1;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: .4s;
  border: 1.5px solid #f1c27d;
  box-shadow: 0 4px 10px rgba(244, 183, 64, .25)
}

.faq-item.active {
  border-color: #e38b29;
  box-shadow: 0 6px 15px rgba(227, 139, 41, .35)
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 20px;
  color: #6a3700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffedb3, #ffe1a0);
  transition: .3s
}

.faq-question:hover {
  background: linear-gradient(to right, #ffe3a3, #ffd17a)
}

.faq-answer {
  display: none;
  padding: 18px 20px 20px;
  font-size: 1rem;
  color: #7b3e00;
  line-height: 1.7;
  background: #fff9e5
}

.faq-item.active .faq-answer {
  display: block;
  animation: .4s ease-in-out fadeIn
}

.faq-icon {
  font-size: 1rem;
  color: #b45f06;
  transition: transform .3s
}

.faq-item.active .faq-icon {
  transform: rotate(180deg)
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: Poppins, sans-serif
}

.admin-header h2,
.astro-store-section .section-title,
.auth-header h2,
.benefits-section h2,
.compatibility-section .section-title,
.content-section h3,
.couple-names,
.footer-about h2,
.highlight-box h4,
.horoscope-cta h2,
.horoscope-hero h1,
.horoscope-intro h2,
.product-name,
.step-content h2,
.zodiac-name,
.zodiac-section h2 {
  font-family: 'Playfair Display', serif
}

.chatbot-toggle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f93, #ff6b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 0, .6);
  transition: .3s;
  animation: 2s infinite pulse, 3s ease-in-out infinite robotFloat;
  overflow: hidden;
  position: relative;
  border: 3px solid gold
}

@keyframes robotFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  25% {
    transform: translateY(-5px) rotate(2deg)
  }

  50% {
    transform: translateY(-10px) rotate(0)
  }

  75% {
    transform: translateY(-5px) rotate(-2deg)
  }
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(255, 107, 0, .8);
  animation: none
}

.chatbot-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: .3s
}

.chatbot-toggle:hover img {
  transform: scale(1.1)
}

.chatbot-label {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b00, #ff4500);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  animation: 2s infinite labelPulse;
  border: 1px solid gold
}

@keyframes labelPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1)
  }

  50% {
    transform: translateX(-50%) scale(1.05)
  }
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 3px solid #f93;
  animation: .5s ease-out windowAppear
}

.chatbot-header,
.chatbot-status {
  align-items: center;
  display: flex
}

@keyframes windowAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.9)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.chatbot-header {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  padding: 15px;
  gap: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, .2);
  position: relative
}

.chatbot-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, gold, transparent, gold);
  animation: 3s linear infinite headerShine
}

.bot-message::before,
.user-message::before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: '';
  position: absolute;
  top: 0
}

@keyframes headerShine {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.chatbot-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(255, 215, 0, .5)
}

.chatbot-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .3)
}

.chatbot-status {
  gap: 6px;
  font-size: .7rem;
  opacity: .9
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: 2s infinite blink, 2s infinite statusPulse
}

@keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 5px #4caf50
  }

  50% {
    box-shadow: 0 0 15px #4caf50
  }
}

.chatbot-close {
  background: rgba(255, 255, 255, .2);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, .3);
  transform: rotate(90deg)
}

.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef)
}

.chatbot-send,
.quick-option {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: .3s
}

.message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 15px;
  font-size: .85rem;
  line-height: 1.4;
  position: relative;
  animation: .3s ease-out messageAppear
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.bot-message {
  background: #fff;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .1);
  border: 1px solid #e9ecef;
  animation: .4s ease-out botMessageAppear
}

@keyframes botMessageAppear {
  from {
    opacity: 0;
    transform: translateX(-20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.bot-message::before {
  left: -8px;
  border-right: 8px solid #fff
}

.user-message {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  box-shadow: 0 3px 8px rgba(255, 107, 0, .3);
  animation: .4s ease-out userMessageAppear
}

@keyframes userMessageAppear {
  from {
    opacity: 0;
    transform: translateX(20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.user-message::before {
  right: -8px;
  border-left: 8px solid #ff6b00
}

.message-time {
  font-size: .65rem;
  opacity: .7;
  margin-top: 5px;
  text-align: right
}

.auth-divider,
.auth-footer,
.footer-bottom,
.horoscope-hero,
.horoscope-intro,
.stat-card {
  text-align: center
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 15px 15px 15px 5px;
  align-self: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  border: 1px solid #e9ecef;
  animation: 1.5s infinite typingPulse
}

@keyframes typingPulse {

  0%,
  100% {
    opacity: .7
  }

  50% {
    opacity: 1
  }
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: 1.4s ease-in-out infinite typing
}

.typing-dot:first-child {
  animation-delay: -.32s
}

.typing-dot:nth-child(2) {
  animation-delay: -.16s
}

@keyframes typing {

  0%,
  100%,
  80% {
    transform: scale(.8);
    opacity: .5
  }

  40% {
    transform: scale(1);
    opacity: 1
  }
}

.chatbot-input-area {
  padding: 15px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 10px;
  background: #fff;
  position: relative
}

.chatbot-input-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f93, transparent)
}

.chatbot-send::before,
.quick-option::before {
  position: absolute;
  left: -100%;
  transition: .6s;
  top: 0;
  content: ''
}

.chatbot-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 20px;
  outline: 0;
  font-size: .85rem;
  transition: .3s;
  background: #f8f9fa
}

.chatbot-input:focus {
  border-color: #f93;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, .2);
  background: #fff
}

.chatbot-send {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 107, 0, .3)
}

.chatbot-send::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent)
}

.chatbot-send:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 107, 0, .5)
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 15px;
  background: #fff;
  border-top: 1px solid #e9ecef
}

.quick-option {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  padding: 8px 12px;
  font-size: .75rem;
  color: #555
}

.quick-option::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, .1), transparent)
}

.quick-option:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  border-color: #f93;
  color: #ff6b00;
  box-shadow: 0 4px 8px rgba(255, 107, 0, .2)
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, .6)
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, .8)
  }
}

.namaste-animation {
  animation: 3s infinite namaste;
  transform-origin: center bottom
}

@keyframes namaste {

  0%,
  100% {
    transform: scale(1) rotate(0)
  }

  25%,
  75% {
    transform: scale(1.05) rotate(-5deg)
  }

  50% {
    transform: scale(1.1) rotate(5deg)
  }
}

.hi-text {
  font-size: 14px;
  font-weight: 600;
  color: #ff6b00;
  margin-bottom: 5px;
  animation: 1s ease-in-out forwards fade-slide
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(-5px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  z-index: 10000;
  backdrop-filter: blur(5px)
}

.auth-header,
.auth-tabs {
  display: flex;
  margin-bottom: 20px
}

.consultation-card,
.enhanced-feature,
.enhanced-hero-form-card,
.stat-card {
  backdrop-filter: blur(10px)
}

.auth-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  border: 2px solid #f93
}

.auth-header {
  justify-content: space-between;
  align-items: center
}

.auth-header h2 {
  color: gold;
  font-size: 1.4rem
}

.auth-close {
  background: 0 0;
  border: none;
  color: gold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: .3s
}

.auth-form input,
.auth-tabs {
  background: rgba(255, 255, 255, .1)
}

.auth-close:hover {
  transform: rotate(90deg)
}

.auth-tabs {
  border-radius: 8px;
  padding: 4px
}

.auth-submit-btn,
.auth-tab {
  border: none;
  cursor: pointer
}

.auth-tab {
  flex: 1;
  padding: 10px;
  background: 0 0;
  color: #fff;
  border-radius: 6px;
  transition: .3s;
  font-weight: 500;
  font-size: .9rem
}

.admin-tab.active,
.auth-tab.active,
.time-period-btn.active {
  background: #f93;
  color: #fff
}

.admin-tab-content.active,
.auth-form.active {
  display: block
}

.auth-form .form-group {
  position: relative;
  margin-bottom: 12px
}

.auth-form .form-group i,
.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #f93;
  font-size: .9rem
}

.auth-form input,
.auth-submit-btn {
  color: #fff;
  transition: .3s;
  width: 100%
}

.auth-form input {
  padding: 12px 12px 12px 40px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  font-size: .9rem
}

.auth-form input:focus {
  border-color: #f93;
  outline: 0;
  background: rgba(255, 255, 255, .15)
}

.auth-form input::placeholder {
  color: rgba(255, 255, 255, .7)
}

.auth-submit-btn {
  padding: 12px;
  background: linear-gradient(135deg, #f93, #ff6b00);
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  margin-top: 10px
}

.admin-close:hover,
.admin-logout:hover,
.auth-submit-btn:hover {
  background: linear-gradient(135deg, #ff6b00, #ff4500);
  transform: translateY(-2px)
}

.auth-divider {
  margin: 12px 0;
  color: gold;
  font-size: .75rem;
  opacity: .8
}

.auth-footer {
  margin-top: 12px
}

#auth-message {
  color: #ff6b6b;
  font-size: .85rem;
  min-height: 18px
}

.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  z-index: 10000;
  overflow-y: auto
}

.admin-container {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  min-height: 100vh;
  padding: 20px;
  color: #fff
}

.admin-header h2 {
  color: gold;
  font-size: 1.6rem
}

.admin-close,
.admin-logout {
  background: linear-gradient(135deg, #f93, #ff6b00);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: .3s;
  font-size: .9rem
}

.admin-tabs,
.search-box input,
.stat-card {
  background: rgba(255, 255, 255, .1)
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 25px
}

.stat-card {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .2)
}

.stat-card h3 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 5px
}

.stat-card p {
  color: rgba(255, 255, 255, .8);
  font-size: .8rem
}

.admin-tabs {
  display: flex;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 4px;
  flex-wrap: wrap
}

.admin-tab {
  padding: 10px 15px;
  border: none;
  background: 0 0;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  transition: .3s;
  font-weight: 500;
  font-size: .85rem
}

.admin-table tr:hover,
.table-container {
  background: rgba(255, 255, 255, .05)
}

.search-box {
  position: relative;
  margin-bottom: 15px;
  max-width: 280px
}

.search-box input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #fff;
  font-size: .85rem
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, .7)
}

.table-container {
  overflow-x: auto;
  border-radius: 12px;
  padding: 15px
}

.action-btn,
.user-management-btn {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: #fff
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: .8rem
}

.admin-table th {
  background: rgba(255, 153, 51, .2);
  padding: 12px;
  text-align: left;
  color: gold;
  font-weight: 600;
  border-bottom: 2px solid #f93
}

.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9)
}

.action-btn {
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .75rem;
  transition: .3s;
  margin: 2px
}

.read-more-btn,
.user-management-btn {
  border: none;
  cursor: pointer;
  transition: .3s
}

.action-btn.delete {
  background: linear-gradient(135deg, #f44336, #da190b)
}

.action-btn:hover {
  transform: translateY(-1px);
  opacity: .9
}

.user-management-btn {
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px
}

.user-avatar,
.user-management-btn i {
  font-size: .8rem
}

.user-management-btn:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px)
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 12px
}

.admin-header-buttons {
  display: flex;
  gap: 10px;
  align-items: center
}

.user-avatar,
.user-profile {
  align-items: center;
  color: #fff
}

.action-btn.view-user {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  margin-right: 5px
}

.action-btn.view-user:hover {
  background: linear-gradient(135deg, #1976d2, #1565c0)
}

.user-profile {
  display: none;
  gap: 8px
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f93, #ff6b00);
  display: flex;
  justify-content: center;
  font-weight: 700
}

.admin-btn,
.category-tab,
.cta-btn,
.product-name,
.read-more-btn {
  font-weight: 600
}

.user-name {
  font-size: .85rem
}

.logout-btn {
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .75rem;
  transition: .3s
}

.logout-btn:hover {
  background: rgba(255, 255, 255, .1)
}

.footer {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  padding: 40px 5% 20px;
  width: 100%
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto
}

.footer-about h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: gold
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fff;
  font-size: .9rem
}

.social-icons {
  display: flex;
  gap: 12px
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: gold;
  transition: .3s;
  font-size: .9rem
}

.social-icons a:hover {
  background: gold;
  color: #ff6b00;
  transform: translateY(-2px)
}

.footer-contact h3,
.footer-links h3,
.footer-services h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: gold;
  font-family: 'Playfair Display', serif
}

.footer-contact li,
.footer-links li,
.footer-services li {
  margin-bottom: 8px
}

.footer-links a,
.footer-services a {
  color: #fff;
  text-decoration: none;
  transition: color .3s;
  font-size: .9rem
}

.footer-links a:hover,
.footer-services a:hover {
  color: gold;
  padding-left: 3px
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-size: .9rem
}

.footer-contact i {
  color: gold;
  margin-top: 2px;
  font-size: .9rem
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  color: gold;
  font-size: .8rem
}

.admin-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: .3s;
  border: none;
  display: inline-block
}

.admin-btn:hover {
  background: linear-gradient(45deg, #e55a2b, #e58215);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, .4);
  color: #fff
}

@media (max-width:1200px) {
  .hero-main-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px
  }

  .hero-form-container,
  .hero-services-container {
    max-width: 100%
  }
}

@media (max-width:992px) {

  .brand-name,
  .hero-title {
    font-size: 2rem
  }

  .hero-subtitle {
    font-size: .95rem
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px
  }

  .about-stats {
    justify-content: space-around
  }

  .planet-0 {
    width: 35px;
    height: 35px
  }

  .planet-1 {
    width: 14px;
    height: 14px
  }

  .planet-2 {
    width: 18px;
    height: 18px
  }

  .planet-3,
  .planet-8 {
    width: 20px;
    height: 20px
  }

  .planet-4 {
    width: 16px;
    height: 16px
  }

  .planet-5 {
    width: 30px;
    height: 30px
  }

  .planet-6 {
    width: 28px;
    height: 28px
  }

  .planet-7 {
    width: 22px;
    height: 22px
  }
}

@media (max-width:768px) {

  .menu-toggle,
  .navbar.active {
    display: flex
  }

  .admin-stats,
  .hero-services-grid {
    grid-template-columns: 1fr
  }

  .animated-header {
    padding: 10px 4%;
    min-height: 80px;
    flex-wrap: wrap
  }

  .logo-section {
    gap: 10px;
    flex: 1 1 auto
  }

  .about-stats,
  .navbar {
    flex-direction: column
  }

  .logo-container,
  .rotating-logo {
    width: 50px;
    height: 50px
  }

  .rotating-logo img {
    width: 42px;
    height: 42px
  }

  .brand-name {
    font-size: 1.6rem
  }

  .brand-subtitle {
    font-size: .7rem;
    letter-spacing: 2px
  }

  .menu-toggle {
    order: 2
  }

  .navbar,
  .navbar a:hover::after {
    display: none
  }

  .nav-container {
    padding: 0 4%;
    top: 80px
  }

  .navbar {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #8b0000;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    animation: .3s ease-out slideDown
  }

  .navbar li {
    width: 100%;
    text-align: center
  }

  .navbar a {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .planet {
    display: none !important
  }

  .planet-0 {
    display: flex !important;
    width: 25px;
    height: 25px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%)
  }

  .hero-content {
    padding: 30px 15px
  }

  .astrology-services__title,
  .faq-heading,
  .hero-title,
  .section-title,
  .testimonial-title {
    font-size: 1.8rem
  }

  .hero-subtitle {
    font-size: .9rem;
    margin-bottom: 20px
  }

  .about-stats,
  .hero-main-container {
    gap: 20px
  }

  .hero-form-container,
  .hero-services-container {
    padding: 20px
  }

  .hero-services-grid {
    gap: 12px
  }

  .hero-service-box {
    padding: 15px 10px
  }

  .hero-service-icon {
    width: 40px;
    height: 40px;
    font-size: 16px
  }

  .chatbot-input,
  .hero-service-box p,
  .message {
    font-size: .8rem
  }

  .about-us,
  .astrology-services,
  .faq-section,
  .ranking-section,
  .testimonials,
  .video-section {
    padding: 60px 4%
  }

  .astrology-services__grid,
  .ranking-cards,
  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .astrology-service-card,
  .ranking-card,
  .testimonial-box {
    padding: 25px 15px
  }

  .chatbot-container {
    right: 10px;
    bottom: 10px
  }

  .chatbot-toggle {
    width: 60px;
    height: 60px
  }

  .chatbot-label {
    font-size: .7rem;
    padding: 4px 8px;
    top: -28px
  }

  .chatbot-window {
    width: 300px;
    height: 450px;
    right: -10px
  }

  .chatbot-header,
  .chatbot-input-area,
  .chatbot-messages {
    padding: 12px
  }

  .chatbot-input,
  .quick-options {
    padding: 10px 12px
  }

  .chatbot-header img {
    width: 35px;
    height: 35px
  }

  .chatbot-header h3 {
    font-size: 1rem
  }

  .chatbot-send {
    width: 40px;
    height: 40px
  }

  .auth-container {
    padding: 20px;
    width: 95%
  }

  .admin-container {
    padding: 15px
  }

  .admin-header h2 {
    font-size: 1.3rem
  }

  .table-container {
    padding: 10px
  }

  .admin-table {
    font-size: .7rem
  }

  .admin-table td,
  .admin-table th {
    padding: 8px 10px
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start
  }

  .admin-header-buttons {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px
  }

  .user-management-btn {
    padding: 8px 12px;
    font-size: .8rem;
    margin-right: 0
  }

  .hero-section {
    margin-top: 140px
  }

  body {
    padding-top: 140px
  }
}

.benefits-grid,
.horoscope-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.horoscope-hero {
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)) center/cover, url('images/horoscope-bg.jpg') center/cover;
  padding: 100px 5%;
  color: #fff;
  position: relative
}

.horoscope-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: gold
}

.horoscope-cta p,
.horoscope-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6
}

.horoscope-intro {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0)
}

.horoscope-intro h2 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 30px
}

.intro-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555
}

.content-section ul,
.intro-content ul {
  margin: 20px 0;
  padding-left: 20px
}

.intro-content li {
  margin-bottom: 10px
}

.horoscope-types {
  margin-top: 50px
}

.horoscope-type {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(139, 0, 0, .1);
  transition: .3s;
  text-align: center
}

.horoscope-type:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(139, 0, 0, .15)
}

.horoscope-type i {
  font-size: 3rem;
  color: #f93;
  margin-bottom: 20px
}

.horoscope-type h3 {
  font-size: 1.5rem;
  color: #8b0000;
  margin-bottom: 15px
}

.benefit-item i,
.zodiac-icon {
  font-size: 2.5rem
}

.horoscope-type p {
  color: #666;
  line-height: 1.6
}

.zodiac-section {
  padding: 80px 5%;
  background: #fff
}

.benefits-section h2,
.zodiac-section h2 {
  font-size: 2.5rem;
  color: #8b0000;
  text-align: center;
  margin-bottom: 50px
}

.zodiac-card {
  box-shadow: 0 8px 20px rgba(139, 0, 0, .1)
}

.zodiac-card:hover {
  box-shadow: 0 12px 25px rgba(139, 0, 0, .15)
}

.zodiac-header {
  background: linear-gradient(135deg, #f93, #ff6b00);
  padding: 20px;
  color: #fff
}

.zodiac-dates {
  opacity: .9
}

.zodiac-content {
  padding: 20px
}

.zodiac-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px
}

.read-more-btn {
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px
}

.read-more-btn:hover {
  background: linear-gradient(to right, #ff6b00, #ff4500);
  transform: translateY(-2px)
}

.astrologers-section,
.benefits-section {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0)
}

.benefits-grid {
  max-width: 1200px
}

.benefit-item {
  box-shadow: 0 10px 25px rgba(139, 0, 0, .1)
}

.benefit-item i {
  color: #f93;
  margin-bottom: 20px
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: #8b0000;
  margin-bottom: 15px
}

.benefit-item p {
  line-height: 1.6
}

.horoscope-cta {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  text-align: center
}

.horoscope-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap
}

.cta-btn {
  background: #fff;
  color: #ff6b00;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s
}

.cta-btn:hover {
  background: gold;
  transform: translateY(-3px)
}

@media (max-width:768px) {

  .animated-header,
  .nav-container,
  .navbar {
    position: fixed !important;
    left: 0 !important;
    width: 100% !important
  }

  .animated-header {
    top: 0 !important;
    height: 100px !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #1a1a2e, #16213e) !important
  }

  body {
    padding-top: 70px !important
  }

  .nav-container {
    top: 70px !important;
    z-index: 9998 !important;
    background: linear-gradient(to right, #8b0000, #b22222) !important
  }

  .navbar {
    top: 120px !important;
    z-index: 9997 !important
  }

  .horoscope-hero h1 {
    font-size: 2.2rem
  }

  .horoscope-hero p {
    font-size: 1rem
  }

  .benefits-section h2,
  .horoscope-cta h2,
  .horoscope-intro h2,
  .zodiac-section h2 {
    font-size: 2rem
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .cta-btn {
    width: 100%;
    max-width: 300px
  }
}

@media (max-width:500px) {
  .hero-title {
    font-size: 1.6rem
  }

  .hero-subtitle {
    font-size: .85rem
  }

  .hero-form input,
  .hero-form select {
    padding: 10px 10px 10px 35px;
    font-size: .85rem
  }

  .brand-name {
    font-size: 1.4rem
  }

  .brand-subtitle {
    font-size: .65rem
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .chatbot-window {
    width: 280px;
    height: 420px
  }

  .planet-0 {
    width: 20px;
    height: 20px
  }

  .admin-header-buttons {
    flex-direction: column;
    gap: 8px
  }

  .admin-close,
  .admin-logout,
  .user-management-btn {
    width: 100%;
    text-align: center;
    justify-content: center
  }

  .hero-section {
    margin-top: 140px
  }

  .benefits-section h2,
  .horoscope-cta h2,
  .horoscope-hero h1,
  .horoscope-intro h2,
  .zodiac-section h2 {
    font-size: 1.8rem
  }

  .zodiac-grid {
    grid-template-columns: 1fr
  }
}

.astro-store-section {
  padding: 60px 5%;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0);
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: auto
}

.category-tab,
.product-card {
  background: #fff;
  cursor: pointer
}

.astro-store-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.astro-store-section .section-title {
  font-size: 2.8rem;
  color: #8b0000;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(139, 0, 0, .1);
  animation: 3s ease-in-out infinite titlePulse
}

.astro-store-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  animation: 1s ease-out fadeInUp
}

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 15px
}

.category-tab {
  border: 2px solid #f93;
  color: #8b0000;
  padding: 12px 25px;
  border-radius: 30px;
  transition: .3s;
  box-shadow: 0 4px 10px rgba(255, 153, 51, .2)
}

.category-tab.active {
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, .4)
}

.category-tab:hover:not(.active) {
  background: #fff8f0;
  transform: translateY(-2px)
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0
}

.product-card {
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(139, 0, 0, .1);
  border: 2px solid transparent;
  transition: .4s;
  text-align: center;
  position: relative;
  overflow: hidden
}

.astro-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #f93, #ff6b00);
  transform: scaleX(0);
  transition: transform .3s
}

.astro-card:hover::before,
.product-card:hover::before,
.zodiac-card.selected::before,
.zodiac-card:hover::before {
  transform: scaleX(1)
}

.product-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(139, 0, 0, .2);
  border-color: #f93
}

.product-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 107, 0, .3);
  transition: .3s
}

.buy-btn,
.content-section::before {
  width: 100%;
  background: linear-gradient(to right, #f93, #ff6b00)
}

.product-card:hover .product-image {
  transform: scale(1.1) rotate(2deg)
}

.product-name {
  font-size: 1.3rem;
  color: #8b0000;
  margin-bottom: 10px
}

.product-description {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
  line-height: 1.5
}

.price-box,
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px
}

.stars {
  color: gold;
  font-size: 1.1rem
}

.current-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8b0000
}

.buy-btn,
.wa-float {
  color: #fff;
  transition: .3s
}

.buy-btn {
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 107, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.content-section {
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 15px 40px rgba(139, 0, 0, .1);
  position: relative;
  overflow: hidden
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 6px
}

.content-section h3 {
  font-size: 1.8rem;
  color: #8b0000;
  margin: 30px 0 15px
}

.content-section p {
  font-size: 1.1rem
}

.content-section li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px
}

.highlight-box {
  background: linear-gradient(135deg, #fff8f0, #fff0e0);
  border-left: 4px solid #f93;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0
}

.highlight-box h4 {
  color: #8b0000;
  margin-bottom: 15px;
  font-size: 1.4rem
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0
}

.benefit-item p {
  color: #555;
  font-size: .95rem
}

.wa-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, .4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 2s infinite pulse
}

.wa-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .6)
}

.wa-float .wa-icon {
  width: 40px;
  height: 40px
}

.compatibility-section {
  padding: 100px 3% 30px;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0);
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  box-sizing: border-box
}

.compatibility-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0
}

.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden
}

.heart {
  position: absolute;
  font-size: 12px;
  color: #ff6b6b;
  opacity: .5;
  animation: 12s linear infinite floatHeart
}

@keyframes floatHeart {
  0% {
    transform: translateY(100vh) rotate(0);
    opacity: .8
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0
  }
}

.compatibility-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0
}

.compatibility-section .section-title {
  font-size: 1.8rem;
  color: #8b0000;
  margin-bottom: 10px;
  line-height: 1.2
}

.compatibility-section .section-subtitle {
  font-size: .9rem;
  color: #555;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1
}

.step-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 5px;
  transition: .3s;
  box-shadow: 0 3px 8px rgba(139, 0, 0, .1)
}

.step.active .step-circle {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  border-color: #f93;
  transform: scale(1.05)
}

.step-line {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: 1;
  transform: translateX(-50%)
}

.step-line.active {
  background: linear-gradient(to right, #f93, #ff6b00)
}

.step-text {
  font-size: .8rem;
  color: #555;
  font-weight: 500
}

.step.active .step-text,
.zodiac-name {
  font-weight: 600;
  color: #8b0000
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 0 auto 20px
}

.zodiac-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 8px;
  box-shadow: 0 4px 8px rgba(139, 0, 0, .1);
  border: 1px solid transparent;
  transition: .3s;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden
}

.zodiac-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #f93, #ff6b00);
  transform: scaleX(0);
  transition: transform .2s
}

.zodiac-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(139, 0, 0, .15)
}

.zodiac-card.selected {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(139, 0, 0, .2);
  border-color: #ff6b00;
  background: linear-gradient(135deg, #fff8f0, #fff0e0)
}

.zodiac-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f93, #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(255, 107, 0, .2);
  transition: .2s
}

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

.zodiac-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1)
}

.zodiac-name {
  font-size: .9rem;
  margin-bottom: 4px;
  line-height: 1.1
}

.zodiac-dates {
  font-size: .7rem;
  color: #777;
  font-weight: 500;
  line-height: 1.1
}

.step-content {
  margin-top: 10px
}

.step-content h2 {
  color: #8b0000;
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.2
}

.result-section {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(139, 0, 0, .15);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden
}

.result-section::before,
.service-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #f93, #ff6b00)
}

.compatibility-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00, #8b0000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 15px 0;
  line-height: 1
}

.compatibility-section .btn,
.generate-btn,
.matching-tab {
  font-weight: 600;
  cursor: pointer
}

.couple-names {
  font-size: 1.4rem;
  color: #8b0000;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.2
}

.heart-icon {
  color: #ff6b6b;
  font-size: 1.2rem
}

.compatibility-text {
  font-size: .9rem;
  color: #555;
  line-height: 1.4;
  margin: 15px 0 20px
}

.compatibility-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0
}

.detail-item {
  background: #fff8f0;
  padding: 12px;
  border-radius: 10px;
  border-left: 3px solid #f93
}

.detail-item h4 {
  color: #8b0000;
  margin-bottom: 5px;
  font-size: .9rem;
  line-height: 1.1
}

.detail-item p {
  color: #555;
  font-size: .8rem;
  line-height: 1.2
}

.kundali-hero-title,
.kundli-matching-title,
.service-description .highlight-box h4,
.service-description h2,
.service-description h3 {
  color: #8b0000;
  line-height: 1.2;
  font-family: 'Playfair Display', serif
}

.compatibility-section .action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap
}

.compatibility-section .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: .9rem;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px
}

.compatibility-section .btn-primary {
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  box-shadow: 0 3px 8px rgba(255, 107, 0, .3)
}

.compatibility-section .btn-primary:hover {
  background: linear-gradient(to right, #ff6b00, #ff4500);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(255, 107, 0, .4)
}

.compatibility-section .btn-secondary {
  background: linear-gradient(to right, #8b0000, #b22222);
  color: #fff;
  box-shadow: 0 3px 8px rgba(139, 0, 0, .3)
}

.compatibility-section .btn-secondary:hover {
  background: linear-gradient(to right, #b22222, #8b0000);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(139, 0, 0, .4)
}

.service-description {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 8px 20px rgba(139, 0, 0, .1);
  position: relative;
  overflow: hidden
}

.service-description h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center
}

.service-description h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px
}

.service-description p {
  font-size: .85rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 12px
}

.service-description ul {
  margin: 12px 0;
  padding-left: 18px
}

.service-description li {
  font-size: .85rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 6px
}

.service-description .highlight-box {
  background: linear-gradient(135deg, #fff8f0, #fff0e0);
  border-left: 3px solid #f93;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0
}

.service-description .highlight-box h4 {
  margin-bottom: 8px;
  font-size: 1.1rem
}

.service-description .compatibility-details {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 15px 0
}

.step-content {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 5px
}

.step-content::-webkit-scrollbar {
  width: 4px
}

.step-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px
}

.step-content::-webkit-scrollbar-thumb {
  background: #f93;
  border-radius: 10px
}

@media (max-width:768px) {

  .astro-store-section .section-title,
  .compatibility-percentage,
  .content-section h2 {
    font-size: 2rem
  }

  .astro-store-section .section-subtitle,
  .service-description h3 {
    font-size: 1.1rem
  }

  .category-tabs {
    gap: 10px
  }

  .category-tab {
    padding: 10px 20px;
    font-size: .9rem
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px
  }

  .content-section {
    padding: 40px 20px
  }

  .compatibility-section .section-title,
  .content-section h3 {
    font-size: 1.5rem
  }

  .benefits-grid {
    grid-template-columns: 1fr
  }

  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
  }

  .compatibility-section {
    padding: 90px 2% 20px;
    min-height: auto
  }

  .compatibility-section .section-subtitle {
    font-size: .85rem;
    margin-bottom: 20px
  }

  .compatibility-section .action-buttons {
    flex-direction: column;
    align-items: center
  }

  .compatibility-section .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 8px 16px;
    font-size: .85rem
  }

  .couple-names {
    font-size: 1.2rem;
    flex-direction: row;
    gap: 8px
  }

  .service-description {
    padding: 20px 15px;
    margin: 20px auto
  }

  .service-description h2 {
    font-size: 1.3rem
  }

  .service-description li,
  .service-description p {
    font-size: .8rem
  }
}

.kundali-hero-section,
.kundli-matching-hero {
  padding: 60px 5% 40px;
  background: linear-gradient(135deg, rgba(255, 153, 51, .1), rgba(139, 0, 0, .05));
  position: relative;
  overflow: hidden
}

.kundali-hero-container,
.kundli-matching-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.kundali-hero-content,
.kundli-matching-content {
  padding-right: 20px
}

.kundali-hero-title,
.kundli-matching-title {
  font-size: 2.5rem;
  margin-bottom: 20px
}

.kundali-hero-subtitle,
.kundli-matching-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px
}

.kundali-hero-features,
.kundli-matching-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px
}

.hero-feature,
.matching-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 153, 51, .1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: .9rem;
  color: #8b0000
}

.content-section h2 i,
.enhanced-form-title h3 i,
.enhanced-input-label i,
.hero-feature i,
.matching-feature i {
  color: #f93
}

.kundali-form-container,
.kundli-matching-form-container {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(139, 0, 0, .15);
  border: 1px solid #ffe4cc;
  position: relative;
  overflow: hidden
}

.generate-btn,
.match-btn {
  box-shadow: 0 5px 15px rgba(255, 107, 0, .3);
  overflow: hidden
}

.kundali-form-container::before,
.kundli-matching-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #f93, #ff6b00)
}

.form-title,
.matching-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #8b0000;
  margin-bottom: 25px;
  text-align: center;
  position: relative
}

.form-title::after,
.matching-form-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #f93, #ff6b00);
  border-radius: 2px
}

.kundali-form,
.matching-form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.generate-btn {
  padding: 14px;
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  transition: .3s;
  margin-top: 10px;
  position: relative
}

.generate-btn::before,
.match-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: .5s
}

.generate-btn:hover,
.match-btn:hover {
  background: linear-gradient(to right, #ff6b00, #ff4500);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, .4)
}

.kundali-content-section,
.kundli-matching-content-section {
  padding: 60px 5%;
  background: linear-gradient(to bottom, #fff5e6, #fffaf0)
}

.kundali-features,
.matching-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0
}

@media (max-width:992px) {

  .benefits-list,
  .form-row,
  .kundali-features,
  .kundali-hero-container {
    grid-template-columns: 1fr
  }

  .kundali-hero-container {
    gap: 30px
  }

  .kundali-hero-content {
    padding-right: 0;
    text-align: center
  }

  .kundali-hero-title {
    font-size: 2.2rem
  }

  .kundali-hero-features {
    justify-content: center
  }

  .content-section {
    padding: 20px
  }

  .content-section h2 {
    font-size: 1.5rem
  }

  .cta-section {
    padding: 30px 20px
  }

  .cta-section h3 {
    font-size: 1.6rem
  }
}

@media (max-width:768px) {
  .kundali-hero-title {
    font-size: 1.8rem
  }

  .kundali-hero-subtitle {
    font-size: 1rem
  }

  .kundali-form-container {
    padding: 25px 20px
  }

  .form-title {
    font-size: 1.5rem
  }

  .time-row {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:500px) {
  .kundali-hero-section {
    padding: 40px 4% 30px
  }

  .kundali-hero-title {
    font-size: 1.6rem
  }

  .hero-feature {
    font-size: .8rem;
    padding: 6px 12px
  }

  .kundali-form-container {
    padding: 20px 15px
  }

  .form-title {
    font-size: 1.3rem
  }

  .time-row {
    grid-template-columns: 1fr
  }
}

.matching-tabs {
  display: flex;
  margin-bottom: 25px;
  position: relative;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 5px
}

.matching-swiper {
  position: absolute;
  top: 5px;
  left: 0;
  width: 50%;
  height: calc(100% - 10px);
  background: linear-gradient(to right, #f93, #ff6b00);
  border-radius: 8px;
  transition: left .5s cubic-bezier(.68, -.55, .265, 1.55);
  z-index: 1
}

.matching-tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: 0 0;
  font-size: 1rem;
  color: #8b0000;
  border-radius: 8px;
  transition: .3s;
  position: relative;
  z-index: 2
}

.enhanced-hero-main-content,
.matching-tab.active {
  color: #fff
}

.matching-tab:hover:not(.active) {
  color: #ff6b00
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

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

.form-group.full-width {
  grid-column: 1/-1
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #8b0000;
  font-size: .9rem
}

.form-label i {
  color: #f93;
  font-size: .9rem
}

.form-control {
  padding: 12px 15px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: .95rem;
  transition: .3s;
  background: #fff
}

.form-control:focus {
  border-color: #f93;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, .2);
  outline: 0
}

.time-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px
}

.time-period-container {
  display: flex;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px
}

.match-btn,
.time-period-btn {
  border: none;
  transition: .3s;
  cursor: pointer
}

.time-period-btn {
  flex: 1;
  padding: 10px;
  background: #f5f5f5;
  font-size: .9rem
}

.content-section h2,
.match-btn {
  display: flex;
  align-items: center;
  gap: 10px
}

.match-btn {
  padding: 14px;
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  position: relative;
  justify-content: center
}

.content-section {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(139, 0, 0, .1);
  border-left: 5px solid #f93
}

.benefit-item,
.feature-item {
  padding: 20px;
  border-radius: 10px;
  transition: .3s;
  text-align: center
}

.content-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #8b0000;
  margin-bottom: 20px
}

.content-section p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555
}

.benefit-item h4,
.feature-item h4 {
  color: #8b0000;
  margin-bottom: 10px
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0
}

.benefit-item {
  background: #f9f5f0;
  border-left: 4px solid #f93
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.benefit-item h4 {
  font-size: 1.1rem
}

.feature-item {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.cta-section,
.feature-icon {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15)
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px
}

.importance-list {
  list-style-type: none;
  margin: 20px 0
}

.importance-list li {
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #eee;
  position: relative
}

.enhanced-reason-list li::before,
.importance-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f93;
  font-weight: 700;
  font-size: 1.2rem
}

.cta-section {
  text-align: center;
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #ff6b00;
  border-radius: 30px;
  font-weight: 600;
  transition: .3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2)
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, .3)
}

@media (max-width:992px) {
  .kundli-matching-container {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .kundli-matching-content {
    padding-right: 0;
    text-align: center
  }

  .kundli-matching-title {
    font-size: 2.2rem
  }

  .kundli-matching-features {
    justify-content: center
  }

  .benefits-list,
  .form-row,
  .matching-features {
    grid-template-columns: 1fr
  }

  .content-section {
    padding: 20px
  }

  .content-section h2 {
    font-size: 1.5rem
  }

  .cta-section {
    padding: 30px 20px
  }

  .cta-section h3 {
    font-size: 1.6rem
  }
}

@media (max-width:768px) {
  .kundli-matching-title {
    font-size: 1.8rem
  }

  .kundli-matching-subtitle {
    font-size: 1rem
  }

  .kundli-matching-form-container {
    padding: 25px 20px
  }

  .matching-form-title {
    font-size: 1.5rem
  }

  .time-row {
    grid-template-columns: 1fr 1fr
  }
}

.consultation-hero {
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)) center/cover, url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
  padding: 100px 5%;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 160px
}

.consultation-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, gold, #f93, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.consultation-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6
}

.consultation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto
}

.consultation-card {
  background: rgba(255, 255, 255, .1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: .3s
}

.consultation-btn,
.consultation-icon {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff
}

.consultation-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .15)
}

.consultation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem
}

.search-icon,
.search-input {
  transition: .3s;
  font-size: 1rem
}

.consultation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: gold
}

.consultation-card p {
  margin-bottom: 20px;
  font-size: .95rem
}

.consultation-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: .3s
}

.consultation-btn:hover {
  background: linear-gradient(135deg, #ff6b00, #ff4500);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, .4)
}

.astrologers-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #8b0000;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(139, 0, 0, .1);
  animation: 3s ease-in-out infinite titlePulse
}

@keyframes titlePulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.02)
  }
}

.astrologers-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
  position: relative;
  animation: 1s ease-out fadeInUp
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.search-bar-container {
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative
}

.search-bar {
  position: relative;
  width: 100%
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #f93;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(255, 153, 51, .15);
  color: #333;
  font-family: Poppins, sans-serif
}

.astro-details h3,
.enhanced-hero-title,
.enhanced-reason-card h3,
.enhanced-reasons-section h2 {
  font-family: 'Playfair Display', serif
}

.search-input:focus {
  outline: 0;
  border-color: #ff6b00;
  box-shadow: 0 4px 20px rgba(255, 107, 0, .25);
  transform: translateY(-1px)
}

.search-input::placeholder {
  color: #999;
  font-weight: 400
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #f93, #ff6b00);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: #fff
}

.search-icon:hover {
  background: linear-gradient(to right, #ff6b00, #ff4500);
  transform: translateY(-50%) scale(1.05)
}

.search-icon:active {
  transform: translateY(-50%) scale(.95)
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  z-index: 1000;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid #eee
}

.search-suggestion-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .2s
}

.search-suggestion-item:hover {
  background: #fff8f0
}

.search-suggestion-item:last-child {
  border-bottom: none
}

.suggestion-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f93
}

.suggestion-info h4 {
  margin: 0 0 5px;
  color: #8b0000;
  font-size: .95rem
}

.suggestion-info p {
  margin: 0;
  color: #666;
  font-size: .85rem
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center
}

.category-btn {
  padding: 10px 20px;
  border: 1px solid #f93;
  background: #fff;
  color: #8b0000;
  border-radius: 25px;
  cursor: pointer;
  transition: .3s;
  font-weight: 500
}

.active-cat,
.category-btn:hover {
  background: linear-gradient(to right, #f93, #ff6b00);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 107, 0, .3)
}

.astro-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.astro-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(139, 0, 0, .1);
  transition: .4s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden
}

.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 0, 0, .2)
}

.astro-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f93;
  box-shadow: 0 5px 15px rgba(255, 107, 0, .3)
}

.astro-details h3 {
  font-size: 1.4rem;
  color: #8b0000;
  margin-bottom: 10px
}

.astro-details p {
  color: #555;
  margin-bottom: 8px;
  font-size: .95rem
}

.rating-stars {
  color: gold;
  font-size: 1.1rem;
  margin: 10px 0
}

.price-section {
  display: flex;
  gap: 15px;
  margin: 15px 0
}

.price-tag {
  background: linear-gradient(135deg, #f93, #ff6b00);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(255, 107, 0, .3)
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: .9rem;
  align-self: center
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px
}

.action-buttons .call-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: .9rem
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, gold, #f93);
  color: #8b0000;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: .8rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(255, 153, 51, .3)
}

@media (max-width:992px) {
  .astro-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
  }
}

@media (max-width:768px) {
  .search-bar-container {
    max-width: 90%;
    margin: 0 auto 20px
  }

  .search-input {
    padding: 12px 45px 12px 15px;
    font-size: .95rem
  }

  .search-icon,
  .suggestion-info h4 {
    font-size: .9rem
  }

  .search-icon {
    width: 35px;
    height: 35px;
    right: 15px
  }

  .search-suggestion-item {
    padding: 10px 15px
  }

  .suggestion-avatar {
    width: 30px;
    height: 30px
  }

  .suggestion-info p {
    font-size: .8rem
  }

  .consultation-hero {
    margin-top: 140px;
    padding: 60px 5%
  }

  .astrologers-section .section-title,
  .consultation-hero h1 {
    font-size: 2.2rem
  }

  .astro-card {
    flex-direction: column;
    text-align: center;
    align-items: center
  }

  .astro-img {
    width: 120px;
    height: 120px
  }

  .action-buttons {
    flex-direction: column
  }

  .astrologers-section .section-subtitle {
    font-size: 1rem
  }
}

@media (max-width:500px) {
  .kundli-matching-hero {
    padding: 40px 4% 30px
  }

  .kundli-matching-title {
    font-size: 1.6rem
  }

  .matching-feature {
    font-size: .8rem;
    padding: 6px 12px
  }

  .kundli-matching-form-container {
    padding: 20px 15px
  }

  .matching-form-title {
    font-size: 1.3rem
  }

  .astro-list,
  .consultation-options,
  .time-row {
    grid-template-columns: 1fr
  }

  .consultation-hero h1 {
    font-size: 1.8rem
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px
  }
}

.enhanced-hero-section {
  position: relative;
  min-height: 550px;
  background: linear-gradient(135deg, #0a0a1a 0, #1a1a3e 30%, #2d1b69 70%, #4a1e8c 100%);
  padding: 40px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.cosmic-bg,
.nebula,
.star,
.stars-container {
  position: absolute
}

.cosmic-bg {
  inset: 0;
  z-index: 1
}

.stars-container {
  width: 100%;
  height: 100%
}

.star {
  background: #fff;
  border-radius: 50%;
  animation: 3s infinite twinkle
}

.star:first-child {
  top: 20%;
  left: 10%;
  width: 2px;
  height: 2px;
  animation-delay: 0s
}

.star:nth-child(2) {
  top: 40%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation-delay: .5s
}

.star:nth-child(3) {
  top: 60%;
  left: 20%;
  width: 2px;
  height: 2px;
  animation-delay: 1s
}

.nebula {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(138, 43, 226, .15) 0, transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(30px)
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

.enhanced-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  width: 100%
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, gold, #ff8c00);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: 3s ease-in-out infinite float;
  box-shadow: 0 5px 15px rgba(255, 215, 0, .3)
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-3px)
  }
}

.enhanced-hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff
}

.highlight {
  background: linear-gradient(45deg, gold, #f93, #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative
}

.enhanced-hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 25px
}

.enhanced-hero-description p {
  margin-bottom: 15px
}

.enhanced-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0
}

.enhanced-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: .3s
}

.enhanced-feature:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
  border-color: gold
}

.enhanced-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, gold, #f93);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #000;
  flex-shrink: 0
}

.enhanced-feature h4 {
  font-size: .9rem;
  margin-bottom: 3px;
  color: #fff
}

.enhanced-feature p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.3
}

.enhanced-hero-form-card {
  background: rgba(255, 255, 255, .98);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25), 0 0 0 1px rgba(255, 215, 0, .3);
  border: 1px solid rgba(255, 255, 255, .2);
  animation: .8s ease-out formAppear;
  height: fit-content;
  max-height: 480px;
  overflow: visible
}

@keyframes formAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.enhanced-form-title {
  text-align: center;
  margin-bottom: 20px
}

.enhanced-form-title h3 {
  color: #8b0000;
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.enhanced-form-title p {
  color: #666;
  font-size: .85rem
}

.enhanced-attractive-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.enhanced-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.enhanced-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.enhanced-input-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8b0000;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 2px
}

.enhanced-form-group input,
.enhanced-form-group select {
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: .9rem;
  color: #333;
  background: #fff;
  transition: .3s;
  height: 38px;
  width: 100%
}

.enhanced-form-group input:focus,
.enhanced-form-group select:focus {
  outline: 0;
  border-color: #f93;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, .1)
}

.enhanced-gender-selector {
  display: flex;
  gap: 6px
}

.enhanced-gender-option {
  flex: 1;
  padding: 8px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: .3s;
  font-size: .85rem
}

.enhanced-gender-option.active {
  background: #f93;
  border-color: #f93;
  color: #fff
}

.enhanced-gender-option:hover:not(.active) {
  border-color: #f93;
  color: #f93
}

.enhanced-dob-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.enhanced-service-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  width: 100%;
  padding-right: 30px
}

.enhanced-service-dropdown i.fa-chevron-down {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none
}

.enhanced-submit-btn {
  background: linear-gradient(45deg, #8b0000, #b22222);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%
}

.enhanced-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, .3)
}

.enhanced-security-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap
}

.enhanced-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fa;
  padding: 6px 10px;
  border-radius: 15px;
  font-size: .75rem;
  color: #666;
  border: 1px solid #e0e0e0
}

.enhanced-badge i {
  color: #28a745
}

.enhanced-alt-contact {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee
}

.enhanced-alt-contact p {
  color: #666;
  font-size: .85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.enhanced-direct-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: .3s
}

.enhanced-direct-call-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, .3)
}

.enhanced-floating-planets {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1
}

.enhanced-planet {
  position: absolute;
  width: 30px;
  height: 30px;
  background: gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  animation: 20s linear infinite floatPlanet
}

.enhanced-planet:first-child {
  top: 15%;
  right: 10%;
  animation-delay: 0s
}

.enhanced-planet:nth-child(2) {
  top: 60%;
  right: 20%;
  background: #4169e1;
  animation-delay: 5s
}

.enhanced-reason-card::before,
.enhanced-reasons-section h2::after,
.enhanced-reasons-section::before {
  content: '';
  background: linear-gradient(to right, #f93, #8b0000)
}

@keyframes floatPlanet {

  0%,
  100% {
    transform: translate(0, 0) rotate(0)
  }

  25% {
    transform: translate(15px, -15px) rotate(90deg)
  }

  50% {
    transform: translate(0, -30px) rotate(180deg)
  }

  75% {
    transform: translate(-15px, -15px) rotate(270deg)
  }
}

.enhanced-reasons-section {
  background: linear-gradient(135deg, #f9f3e9 0, #f5e8d3 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.enhanced-reasons-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px
}

.enhanced-reasons-section h2 {
  text-align: center;
  color: #8b0000;
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative
}

.enhanced-reasons-section h2::after {
  display: block;
  width: 100px;
  height: 3px;
  margin: 15px auto
}

.enhanced-reasons-intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px
}

.enhanced-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px
}

.enhanced-reason-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  transition: .3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 0, 0, .1)
}

.enhanced-reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15)
}

.enhanced-reason-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px
}

.enhanced-reason-card h3 {
  color: #8b0000;
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4
}

.enhanced-reason-subtitle {
  color: #f93;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #f93
}

.enhanced-reason-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px
}

.enhanced-reason-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0
}

.enhanced-reason-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #555;
  line-height: 1.6
}

@media (max-width:1200px) {
  .enhanced-hero-title {
    font-size: 2.4rem
  }

  .enhanced-hero-content {
    gap: 25px
  }
}

@media (max-width:992px) {
  .enhanced-hero-section {
    min-height: auto;
    padding: 30px 15px
  }

  .enhanced-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px
  }

  .enhanced-hero-title {
    font-size: 2.2rem
  }

  .enhanced-hero-form-card {
    margin: 0 auto;
    max-width: 500px
  }
}

@media (max-width:768px) {

  .enhanced-features-grid,
  .enhanced-form-row {
    grid-template-columns: 1fr
  }

  .enhanced-hero-section {
    margin-top: 140px;
    padding: 20px 15px
  }

  .enhanced-hero-title {
    font-size: 2rem;
    text-align: center
  }

  .enhanced-hero-description {
    text-align: center
  }

  .enhanced-features-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
  }

  .enhanced-dob-inputs {
    grid-template-columns: 1fr 1fr
  }

  .enhanced-gender-selector {
    flex-direction: row
  }

  .enhanced-security-badges {
    justify-content: center
  }

  .enhanced-reasons-section {
    padding: 50px 15px
  }

  .enhanced-reasons-section h2 {
    font-size: 2rem
  }

  .enhanced-reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .enhanced-reason-card {
    padding: 20px
  }

  .enhanced-reason-card h3 {
    font-size: 1.3rem
  }
}

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

  .step-circle {
    width: 30px;
    height: 30px;
    font-size: .9rem
  }

  .step-line {
    top: 15px;
    height: 2px
  }

  .step-text {
    font-size: .7rem
  }

  .zodiac-card {
    padding: 10px 6px
  }

  .zodiac-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 6px
  }

  .zodiac-icon img {
    width: 25px;
    height: 25px
  }

  .zodiac-name {
    font-size: .8rem
  }

  .zodiac-dates {
    font-size: .65rem
  }

  .compatibility-details {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .detail-item {
    padding: 10px
  }

  .search-bar-container {
    max-width: 100%
  }

  .search-input {
    padding: 10px 40px 10px 15px;
    font-size: .9rem;
    border-radius: 25px
  }

  .search-icon {
    width: 32px;
    height: 32px;
    right: 10px;
    font-size: .85rem
  }

  .enhanced-hero-section {
    padding: 15px 12px
  }

  .enhanced-hero-title,
  .enhanced-reasons-section h2 {
    font-size: 1.8rem
  }

  .enhanced-hero-description {
    font-size: 1rem
  }

  .enhanced-hero-form-card {
    padding: 20px
  }

  .enhanced-dob-inputs {
    grid-template-columns: 1fr
  }

  .enhanced-gender-selector {
    flex-direction: column
  }

  .enhanced-floating-badge {
    font-size: .8rem;
    padding: 6px 12px
  }

  .enhanced-reason-card {
    padding: 15px
  }
}