/* ============================================================
   ADHISAKTHI ASTROLOGERS - Main Stylesheet
   ============================================================ */

/* ----- CSS Variables (Super Combo Palette) ----- */
:root {
  --primary-maroon: #5A1020;
  --temple-red: #8E1B2F;
  --dark-maroon: #3A0813;
  --antique-gold: #D4A72C;
  --soft-gold: #F1D77A;
  --light-gold: #FFF0B8;
  --warm-ivory: #FFF9ED;
  --cream-bg: #FFF4DC;
  --dark-brown: #29140E;
  --text-brown: #57382E;
  --white: #FFFFFF;
  --shadow-gold: rgba(212, 167, 44, 0.25);
  --shadow-maroon: rgba(90, 16, 32, 0.15);
  --transition: all 0.3s ease;
}

/* ----- Global Reset & Base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--warm-ivory);
  color: var(--dark-brown);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--primary-maroon);
}

a {
  text-decoration: none;
  color: var(--primary-maroon);
  transition: var(--transition);
}

a:hover {
  color: var(--antique-gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ----- Typography Helpers ----- */
.gold-text {
  color: var(--antique-gold);
}

.maroon-text {
  color: var(--primary-maroon);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--antique-gold);
  border-radius: 3px;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-brown);
  max-width: 700px;
}

/* ----- Header / Navigation ----- */
.site-header {
  background: linear-gradient(135deg, var(--dark-maroon) 0%, var(--primary-maroon) 100%);
  padding: 0.6rem 0;
  border-bottom: 3px solid var(--antique-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--white) !important;
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.navbar-brand .logo-icon {
  color: var(--antique-gold);
  font-size: 1.8rem;
}

.navbar-brand .logo-text {
  color: var(--white);
}

.navbar-brand .logo-tagline {
  font-size: 0.75rem;
  color: var(--soft-gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  display: none;
}

@media (min-width: 992px) {
  .navbar-brand .logo-tagline {
    display: block;
    margin-left: 0.3rem;
    font-size: 0.7rem;
    opacity: 0.8;
  }
}

.navbar-nav .nav-link {
  color: var(--light-gold) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--antique-gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.btn-consult {
  background: var(--antique-gold) !important;
  color: var(--dark-maroon) !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.btn-consult:hover {
  background: var(--soft-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-gold);
}

/* Dropdown */
.dropdown-menu {
  background: var(--primary-maroon);
  border: 1px solid var(--antique-gold);
  border-radius: 12px;
  padding: 0.5rem 0;
}

.dropdown-item {
  color: var(--light-gold);
  padding: 0.5rem 1.5rem;
  font-weight: 400;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--antique-gold);
  color: var(--dark-maroon);
}

.dropdown-divider {
  border-color: var(--antique-gold);
  opacity: 0.3;
}

/* Mobile Toggle */
.navbar-toggler {
  border-color: var(--antique-gold);
  color: var(--antique-gold);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ----- Floating Buttons (Desktop) ----- */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  text-decoration: none !important;
}

.float-btn i {
  font-size: 1.3rem;
}

.call-btn {
  background: var(--primary-maroon);
}

.call-btn:hover {
  background: var(--temple-red);
  transform: scale(1.05);
  color: var(--white);
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.05);
  color: var(--white);
}

/* ----- Mobile Bottom Bar ----- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark-maroon);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 2px solid var(--antique-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mob-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light-gold);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  transition: var(--transition);
  text-decoration: none !important;
}

.mob-btn i {
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.mob-btn:hover {
  color: var(--antique-gold);
}

.mob-btn.btn-book {
  background: var(--antique-gold);
  color: var(--dark-maroon);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.mob-btn.btn-book i {
  color: var(--dark-maroon);
}

/* ----- Hero Banner ----- */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-maroon) 0%, var(--primary-maroon) 60%, var(--temple-red) 100%);
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-banner.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--antique-gold);
  color: var(--dark-maroon);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-title .gold-text {
  color: var(--antique-gold);
}

.hero-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-primary-gold {
  background: var(--antique-gold);
  color: var(--dark-maroon);
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-gold:hover {
  background: var(--soft-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-gold);
  color: var(--dark-maroon);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--antique-gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-gold:hover {
  background: var(--antique-gold);
  color: var(--dark-maroon);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.trust-item i {
  color: var(--antique-gold);
  font-size: 1.2rem;
}

/* ----- Trust Highlights Cards ----- */
.trust-cards {
  padding: 4rem 0;
  background: var(--cream-bg);
}

.trust-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-maroon);
  transition: var(--transition);
  border-bottom: 4px solid var(--antique-gold);
  height: 100%;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-gold);
}

.trust-card i {
  font-size: 2.8rem;
  color: var(--antique-gold);
  margin-bottom: 1rem;
}

.trust-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-maroon);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-brown);
  margin: 0;
}

/* ----- Welcome Section ----- */
.welcome-section {
  padding: 4rem 0;
  background: var(--warm-ivory);
}

.welcome-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-maroon);
}

.welcome-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ----- Service Cards ----- */
.services-section {
  padding: 4rem 0;
  background: var(--cream-bg);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-maroon);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(212, 167, 44, 0.15);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-gold);
  border-color: var(--antique-gold);
}

.service-card .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  background: var(--cream-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--antique-gold);
}

.service-card .icon-wrap i {
  font-size: 2.4rem;
  color: var(--antique-gold);
}

.service-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-maroon);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-brown);
}

.service-card .btn-link-gold {
  color: var(--antique-gold);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.service-card .btn-link-gold:hover {
  color: var(--primary-maroon);
}

/* ----- Zodiac Tool ----- */
.zodiac-tool {
  padding: 4rem 0;
  background: var(--warm-ivory);
}

.tool-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px var(--shadow-maroon);
  border: 1px solid rgba(212, 167, 44, 0.2);
}

.tool-box select {
  border: 2px solid #e0d6c8;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  background: var(--white);
}

.tool-box select:focus {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px var(--shadow-gold);
}

.compatibility-result {
  padding: 1.5rem;
  background: var(--cream-bg);
  border-radius: 16px;
  margin-top: 1.5rem;
  display: none;
}

.compatibility-result .percentage {
  font-size: 3rem;
  font-weight: 700;
  color: var(--antique-gold);
}

.compatibility-result .progress-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

/* ----- Testimonials ----- */
.testimonials-section {
  padding: 4rem 0;
  background: var(--cream-bg);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-maroon);
  border-left: 4px solid var(--antique-gold);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-gold);
}

.testimonial-card .stars {
  color: var(--antique-gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.testimonial-card .testi-text {
  font-style: italic;
  color: var(--text-brown);
  margin-bottom: 1rem;
}

.testimonial-card .testi-name {
  font-weight: 600;
  color: var(--primary-maroon);
}

/* ----- Consultation Form ----- */
.consult-section {
  padding: 4rem 0;
  background: var(--warm-ivory);
}

.form-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px var(--shadow-maroon);
  border: 1px solid rgba(212, 167, 44, 0.15);
}

.form-box .form-control {
  border: 2px solid #e0d6c8;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.form-box .form-control:focus {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px var(--shadow-gold);
}

.form-box label {
  font-weight: 500;
  color: var(--primary-maroon);
}

/* ----- FAQ Accordion ----- */
.faq-section {
  padding: 4rem 0;
  background: var(--cream-bg);
}

.accordion-item {
  border: 1px solid rgba(212, 167, 44, 0.2);
  margin-bottom: 0.8rem;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--primary-maroon);
  background: var(--white);
  padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--cream-bg);
  color: var(--primary-maroon);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--antique-gold);
}

.accordion-body {
  background: var(--white);
  color: var(--text-brown);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--dark-maroon);
  color: var(--light-gold);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--antique-gold);
}

.site-footer h5 {
  color: var(--antique-gold);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  color: var(--antique-gold);
  font-size: 1.8rem;
}

.footer-brand .logo-tagline {
  font-size: 0.7rem;
  color: var(--soft-gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--light-gold);
  font-size: 1.3rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--antique-gold);
  transform: scale(1.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-gold);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--antique-gold);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact i {
  color: var(--antique-gold);
  font-size: 1rem;
  width: 20px;
}

.footer-contact a {
  color: var(--light-gold);
}

.footer-contact a:hover {
  color: var(--antique-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom .credit a {
  color: var(--antique-gold);
}

.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .floating-buttons {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding: 60px 0;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .mobile-bottom-bar {
    padding: 6px 0;
  }

  .mob-btn {
    font-size: 0.6rem;
  }

  .mob-btn i {
    font-size: 1.2rem;
  }

  .form-box {
    padding: 1.5rem;
  }

  .tool-box {
    padding: 1.5rem;
  }

  .welcome-image img {
    height: 250px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-card {
    padding: 1.5rem 1rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }
}

/* ============================================================
   PREMIUM SECTION DESIGN
   Adhisakthi Astrologers
============================================================ */

/* Common section spacing */
.services-section,
.welcome-section,
.zodiac-tool {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Decorative background glow */
.services-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.15),
        transparent 70%
    );
    pointer-events: none;
}

.services-section::after {
    content: "ॐ";
    position: absolute;
    left: 4%;
    bottom: 2%;
    font-size: 180px;
    font-family: Georgia, serif;
    color: rgba(128, 22, 45, 0.035);
    pointer-events: none;
}


/* ============================================================
   SECTION HEADING
============================================================ */

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 22px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;

    color: var(--primary-maroon);
    letter-spacing: -0.5px;
}

.section-title.center::before {
    content: "✦";
    display: block;

    margin-bottom: 10px;

    color: var(--antique-gold);
    font-size: 20px;

    animation: starGlow 2.5s infinite ease-in-out;
}

.section-title.center::after {
    content: "";

    position: absolute;
    width: 85px;
    height: 3px;

    left: 50%;
    bottom: -12px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--antique-gold),
        transparent
    );
}

.section-subtitle {
    max-width: 650px;

    margin-top: 12px;

    color: #776a64;

    font-size: 1.05rem;
    line-height: 1.8;
}


/* ============================================================
   SOLUTIONS / SERVICE CARDS
============================================================ */

.service-card {
    position: relative;

    height: 100%;

    padding: 34px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 249, 235, 0.95)
        );

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(74, 20, 35, 0.07);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* Gold top border animation */

.service-card::before {
    content: "";

    position: absolute;

    width: 0;
    height: 4px;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        var(--primary-maroon),
        var(--antique-gold),
        var(--primary-maroon)
    );

    transition: width 0.45s ease;
}


/* Decorative zodiac circle */

.service-card::after {
    content: "✦";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -40px;
    bottom: -45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: rgba(212, 175, 55, 0.15);

    border: 1px solid rgba(212, 175, 55, 0.12);

    font-size: 30px;

    transition: 0.5s ease;
}


.service-card:hover {
    transform: translateY(-12px);

    border-color: var(--antique-gold);

    box-shadow:
        0 24px 50px rgba(92, 22, 44, 0.16);
}


.service-card:hover::before {
    width: 100%;
}


.service-card:hover::after {
    transform:
        translate(-12px, -12px)
        rotate(90deg);

    color: rgba(212, 175, 55, 0.3);
}


/* ============================================================
   SERVICE ICON
============================================================ */

.service-card .icon-wrap {
    position: relative;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius:
        50% 50% 50% 15%;

    background: linear-gradient(
        145deg,
        var(--primary-maroon),
        #a1294c
    );

    box-shadow:
        0 10px 24px rgba(128, 22, 45, 0.25);

    transition:
        transform 0.4s ease,
        border-radius 0.4s ease;
}


.service-card .icon-wrap::after {
    content: "";

    position: absolute;

    width: 84px;
    height: 84px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(212, 175, 55, 0.6);

    animation:
        iconRotate
        14s linear infinite;
}


.service-card .icon-wrap i {
    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size: 29px;
}


.service-card:hover .icon-wrap {
    transform:
        rotate(-5deg)
        scale(1.08);

    border-radius: 50%;
}


/* ============================================================
   CARD CONTENT
============================================================ */

.service-card h5 {
    position: relative;

    margin-bottom: 14px;

    color: var(--primary-maroon);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1.4;
}


.service-card p {
    position: relative;

    min-height: 72px;

    margin-bottom: 20px;

    color: #716863;

    font-size: 0.96rem;

    line-height: 1.75;
}


/* ============================================================
   LEARN MORE LINK
============================================================ */

.btn-link-gold {
    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary-maroon);

    font-size: 0.9rem;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.btn-link-gold::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 0;
    bottom: -5px;

    background:
        var(--antique-gold);

    transition:
        width 0.3s ease;
}


.btn-link-gold:hover {
    color:
        var(--antique-gold);
}


.btn-link-gold:hover::after {
    width: 100%;
}


.btn-link-gold i {
    transition:
        transform 0.3s ease;
}


.btn-link-gold:hover i {
    transform:
        translateX(6px);
}


/* ============================================================
   WHY CHOOSE US CARDS
============================================================ */

.trust-card {
    position: relative;

    height: 100%;

    padding: 35px 28px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid
        rgba(212, 175, 55, 0.2);

    border-radius: 22px;

    border-bottom:
        5px solid
        var(--primary-maroon);

    box-shadow:
        0 10px 30px
        rgba(74, 20, 35, 0.07);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.trust-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 22px 45px
        rgba(74, 20, 35, 0.15);
}


.trust-card > i {
    width: 75px;
    height: 75px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    color:
        var(--primary-maroon);

    background:
        linear-gradient(
            145deg,
            #fff5d9,
            #f5df9d
        );

    font-size: 31px;

    box-shadow:
        0 8px 20px
        rgba(212, 175, 55, 0.22);

    transition:
        0.4s ease;
}


.trust-card:hover > i {
    color: white;

    background:
        linear-gradient(
            145deg,
            var(--primary-maroon),
            #a12b50
        );

    transform:
        rotateY(360deg);
}


.trust-card h5 {
    color:
        var(--primary-maroon);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        1.2rem;

    font-weight:
        700;

    margin-bottom:
        13px;
}


.trust-card p {
    margin-bottom:
        0;

    color:
        #746b66;

    line-height:
        1.7;
}


/* ============================================================
   ZODIAC COMPATIBILITY SECTION
============================================================ */

.zodiac-tool {
    background:
        radial-gradient(
            circle at top,
            #851c3d,
            #4c1024 60%,
            #280814
        );
}


.zodiac-tool::before {
    content:
        "✦  ✧  ✦  ✧  ✦";

    position:
        absolute;

    width:
        100%;

    top:
        35px;

    left:
        0;

    color:
        rgba(255, 220, 130, 0.18);

    text-align:
        center;

    font-size:
        24px;

    letter-spacing:
        35px;
}


.zodiac-tool .section-title {
    color:
        #ffffff;
}


.zodiac-tool .section-subtitle {
    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}


.tool-box {
    position:
        relative;

    padding:
        50px;

    background:
        rgba(
            255,
            255,
            255,
            0.97
        );

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.6
        );

    border-radius:
        28px;

    box-shadow:
        0 30px 70px
        rgba(
            0,
            0,
            0,
            0.3
        );
}


.tool-box::before {
    content:
        "☉";

    position:
        absolute;

    top:
        -27px;

    left:
        50%;

    transform:
        translateX(-50%);

    width:
        55px;

    height:
        55px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        white;

    background:
        var(--antique-gold);

    border:
        5px solid
        #68162f;

    font-size:
        24px;
}


/* ============================================================
   FORM DESIGN
============================================================ */

.tool-box .form-label {
    margin-bottom:
        10px;

    color:
        var(--primary-maroon);

    font-size:
        0.92rem;
}


.tool-box .form-select {
    min-height:
        58px;

    padding:
        12px 18px;

    color:
        #554943;

    background-color:
        #fffdf7;

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.45
        );

    border-radius:
        13px;

    box-shadow:
        none;

    transition:
        0.3s ease;
}


.tool-box .form-select:focus {
    border-color:
        var(--antique-gold);

    box-shadow:
        0 0 0 4px
        rgba(
            212,
            175,
            55,
            0.13
        );
}


/* ============================================================
   COMPATIBILITY BUTTON
============================================================ */

.btn-primary-gold {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        56px;

    padding:
        14px 34px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--primary-maroon),
            #a02c50
        );

    border:
        1px solid
        var(--antique-gold);

    border-radius:
        50px;

    font-size:
        0.96rem;

    font-weight:
        700;

    box-shadow:
        0 10px 25px
        rgba(
            111,
            20,
            48,
            0.25
        );

    transition:
        0.35s ease;
}


.btn-primary-gold:hover {
    color:
        var(--primary-maroon);

    background:
        linear-gradient(
            135deg,
            var(--antique-gold),
            #f1d579
        );

    transform:
        translateY(-4px);

    box-shadow:
        0 16px 30px
        rgba(
            212,
            175,
            55,
            0.3
        );
}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes iconRotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}


@keyframes starGlow {

    0%,
    100% {
        opacity:
            0.5;

        transform:
            scale(0.9);
    }

    50% {
        opacity:
            1;

        transform:
            scale(1.25);
    }

}


/* ============================================================
   MOBILE RESPONSIVE
============================================================ */

@media (
    max-width: 768px
) {

    .services-section,
    .welcome-section,
    .zodiac-tool {

        padding:
            70px 0;

    }


    .section-title {

        font-size:
            2rem;

    }


    .service-card {

        padding:
            28px 23px;

    }


    .service-card p {

        min-height:
            auto;

    }


    .tool-box {

        padding:
            45px 22px
            28px;

    }


    .btn-primary-gold {

        width:
            100%;

    }


    .zodiac-tool::before {

        letter-spacing:
            12px;

        font-size:
            17px;

    }

}