/* RESET MARGIN & PADDING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: #0d0d2b;
  color: gold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: gold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar .logo img {
  width: 22px;
  height: 22px;
}

/* Nav Links */
.navbar nav {
  display: flex;
  gap: 1.5rem;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: gold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start; /* Align all content to the left */
  }

  .navbar .logo {
    font-size: 1.05rem;
    margin-right: auto; /* Push nav and hamburger to the right */
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1a1a40;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
    display: none;
    text-align: center;
  }

  .navbar nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


.services-hero {
  background: 
    url('https://png.pngtree.com/thumb_back/fh260/background/20240526/pngtree-astrology-zodiac-sign-of-horoscope-in-deep-blue-the-star-and-image_15731970.jpg') 
    no-repeat center center / cover,
    radial-gradient(ellipse at top, #1a1a40, #0d0d2b);
  color: white;
  padding: 6rem 2rem 5rem;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  animation: riseUp 1.2s ease forwards;
}

.services-hero h1 {
  font-size: 2.5rem;
  color: gold;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.1rem;
  color: #f9ff00;
  margin-bottom: 2rem;
}

.hero-btn {
  padding: 0.75rem 1.5rem;
  background: gold;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.hero-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 25px gold;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(20px) }
  to { opacity: 1; transform: translateY(0) }
}
@media (max-width: 600px) {
  .services-hero h1 {
    font-size: 1.7rem;
  }
  .services-hero p {
    font-size: 1rem;
  }
}
.services-grid {
  background: radial-gradient(ellipse at center, #1a1a40, #0d0d2b);
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.services-grid h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.services-grid .sub-text {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #1c1c3b;
  border-radius: 16px;
  padding: 2rem 1.2rem;
  color: white;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.service-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: gold;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
}
.pricing-section {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.pricing-section h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pricing-section .sub-text {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.price-card {
  background: #1c1c3b;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
}

.price-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.price-card h3 {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 1.1rem;
  color: #ffdd57;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  color: #ccc;
  font-size: 0.95rem;
}

.pricing-note {
  margin-top: 2rem;
  color: #ccc;
  font-size: 0.95rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.consultation-details {
  background: #1a1a40;
  color: white;
  padding: 4rem 2rem;
}

.consult-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.consultation-details h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.consult-intro {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.consult-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  background: #1f1f3f;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.step h3 {
  color: gold;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #ccc;
}

.consult-actions h4 {
  color: gold;
  margin-bottom: 0.3rem;
}

.consult-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.consult-btn {
  padding: 0.7rem 1.5rem;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.consult-btn:hover {
  background: white;
  box-shadow: 0 0 20px gold;
}
.faq-section {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.faq-section h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.faq-intro {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.faq-container details {
  background: #1a1a40;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-container details:hover {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.faq-container summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: gold;
  cursor: pointer;
}

.faq-container p {
  margin-top: 0.8rem;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Make details open smoother */
.faq-container details[open] summary::after {
  content: "▲";
  float: right;
  font-size: 0.8rem;
  color: gold;
  margin-left: 10px;
}

.faq-container summary::after {
  content: "▼";
  float: right;
  font-size: 0.8rem;
  color: gold;
  margin-left: 10px;
}
.cta-footer {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-footer h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.cta-footer p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-inline: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: gold;
  color: black;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.cta-btn img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-top: -2px;
}

.cta-btn:hover {
  background: white;
  box-shadow: 0 0 20px gold;
  transform: translateY(-3px);
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }
}
/* Floating Button (bottom right) */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: gold;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-call:hover {
  transform: scale(1.1);
}

.floating-call img {
  width: 30px;
  height: 30px;
  margin-top: -2px;
}

/* Popup Contact Menu */
.contact-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #1a1a40;
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: 240px;
  animation: fadeIn 0.3s ease-in-out;
}

.contact-popup h4 {
  color: gold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-popup a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  background: #2a2a5a;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

.contact-popup a:hover {
  background: gold;
  color: black;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
}
.pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.pricing-btn {
  display: inline-block;
  background: gold;
  color: black;
  font-weight: bold;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.pricing-btn:hover {
  background: white;
  box-shadow: 0 0 25px gold;
}
