@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Poppins&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: #0a0528;
  padding-top: 80px;
  color: #fff;
}

/* NAVBAR */
.astro-nav {
  background: linear-gradient(135deg, rgba(10,5,40,0.95), rgba(26,15,60,0.95));
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 15px rgba(245,197,66,0.25);
  border-bottom: 1px solid rgba(245,197,66,0.3);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
}

.astro-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f5c542, transparent, #f5c542);
  opacity: 0.7;
}

.navbar-brand {
  font-size: 1.6rem;
  color: #f5c542 !important;
  font-family: "Cinzel", serif;
  font-weight: 600;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #f5c542 !important;
}

/* COMMON */
.text-gold { 
  color: #f5c542 !important; 
}

.section-title {
  font-family: 'Cinzel', serif;
  color: #f5c542;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* HERO */
.hero-mockup {
  position: relative;
  background: linear-gradient(rgba(10,5,40,0.75), rgba(10,5,40,0.85)), url("images/breadcrumb_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 80px 0 50px; /* Reduced padding: 80px 0 50px */
  min-height: 70vh; /* Reduced from 85vh to 70vh */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-mockup .row {
  align-items: center;
  min-height: 350px; /* Reduced from 400px to 350px */
}

.hero-mockup h1 {
  font-size: 2.6rem; /* Slightly reduced from 2.8rem */
  line-height: 1.2;
  margin-bottom: 1rem; /* Reduced from 1.2rem */
  font-weight: 700;
}

.hero-subtext {
    font-size: 1.05rem; /* Slightly reduced from 1.1rem */
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  max-width: 500px;
  color: #ddd;
  line-height: 1.6;
}

.hero-img {
   max-height: 340px; /* Reduced from 380px */
  width: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hero-mockup::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,66,0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-mockup .container {
  position: relative;
  z-index: 2;
}

/* BUTTONS */
.btn-gold {
  background: #f5c542;
  color: #000;
  border-radius: 25px;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #e0ad2f;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245,197,66,0.3);
}

.btn-gold-sm {
  background: #f5c542;
  color: #000;
  border-radius: 18px;
  padding: 6px 16px;
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-gold-sm:hover {
  background: #e0ad2f;
  transform: translateY(-1px);
}

.btn-outline-gold {
  border: 2px solid #f5c542;
  color: #f5c542;
  border-radius: 22px;
  padding: 8px 22px;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: #f5c542;
  color: #000;
  transform: translateY(-2px);
}

/* COUNTER SECTION */
.counter-section {
  background: #f9f9f9;
  padding: 70px 0;
  border-top: 3px solid #f5c542;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.counter-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.counter-section .counter {
  color: #2a2359;
  font-size: 2.5rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.counter-section p {
  color: #555;
  font-size: 1rem;
  font-weight: 500;
}

/* SERVICES */
.services-mockup {
  background: #f8f8f8;
  padding: 70px 0;
}

.service-card-mockup {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card-mockup:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: #f5c542;
}

.service-card-mockup h5 {
  color: #2b1055;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card-mockup p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 0.95rem;
}

.service-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* SERVICES CAROUSEL */
#servicesCarousel .carousel-item {
  padding: 20px 0 40px;
}

#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(245, 197, 66, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(245, 197, 66, 0.3);
}

#servicesCarousel .carousel-control-prev {
  left: -50px;
}

#servicesCarousel .carousel-control-next {
  right: -50px;
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon {
  filter: invert(0.5) sepia(1) saturate(5) hue-rotate(10deg);
}

/* ASTROLOGER SECTION */
.astrologer-section {
  background: #f2f2f2;
  padding: 70px 0;
}

.astrologer-section .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.astrologer-section .row {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  align-items: stretch;
}

.astrologer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px; /* Reduced from 450px to 380px */
}

.astrologer-content {
 padding: 40px; /* Reduced from 50px */
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.astrologer-content h2 {
   color: #2a2359;
  font-size: 1.8rem; /* Reduced from 2rem */
  margin-bottom: 12px; /* Reduced from 15px */
}

.astrologer-content h4 {
  color: #f5c542;
  font-size: 1.2rem; /* Reduced from 1.3rem */
  margin-bottom: 12px; /* Reduced from 15px */
}

.astrologer-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px; /* Reduced from 12px */
  font-size: 0.95rem; /* Reduced from 1rem */
}

/* TESTIMONIALS */
.testimonials-section {
  background: #f8f8f8;
  padding: 70px 0;
  border-top: 2px solid rgba(245,197,66,0.3);
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  border-color: #f5c542;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #f5c542;
  box-shadow: 0 3px 10px rgba(245,197,66,0.2);
}

.testimonial-card h5 {
  color: #2a2359;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonial-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}

/* TESTIMONIAL SLIDER FIX */
.testimonials-section .carousel-item {
  padding: 20px 0;
}

.testimonials-section .carousel-inner {
  padding: 0 50px;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(245, 197, 66, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(245, 197, 66, 0.3);
  opacity: 1;
}

.testimonials-section .carousel-control-prev {
  left: -20px;
}

.testimonials-section .carousel-control-next {
  right: -20px;
}

.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
  filter: invert(0.5) sepia(1) saturate(5) hue-rotate(10deg);
  width: 25px;
  height: 25px;
}

/* BLOG */
.blog-mockup {
  background: #f9f9f9;
  padding: 70px 0;
}

.blog-card-mockup {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.blog-card-mockup:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: #f5c542;
}

.blog-img {
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-mockup h5 {
  color: #2b1055;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card-mockup p.text-muted {
  color: #666 !important;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 0.9rem;
}

/* BLOG SLIDER */
#blogCarousel .carousel-item {
  padding: 20px 0;
}

#blogCarousel .carousel-inner {
  padding: 0 50px;
}

#blogCarousel .carousel-control-prev,
#blogCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(245, 197, 66, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(245, 197, 66, 0.3);
  opacity: 1;
}

#blogCarousel .carousel-control-prev {
  left: -20px;
}

#blogCarousel .carousel-control-next {
  right: -20px;
}

#blogCarousel .carousel-control-prev-icon,
#blogCarousel .carousel-control-next-icon {
  filter: invert(0.5) sepia(1) saturate(5) hue-rotate(10deg);
  width: 25px;
  height: 25px;
}

/* SLIDER RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-section .carousel-inner,
  #blogCarousel .carousel-inner {
    padding: 0 30px;
  }
  
  .testimonials-section .carousel-control-prev,
  .testimonials-section .carousel-control-next,
  #blogCarousel .carousel-control-prev,
  #blogCarousel .carousel-control-next {
    display: none;
  }
}

/* YOUTUBE SECTION */
.youtube-section {
  background: #f8f8f8;
  padding: 70px 0;
  position: relative;
}

.youtube-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: #000;
  margin-bottom: 25px;
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.youtube-cta {
  background: #ff0000;
  color: white;
  padding: 8px 20px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}

.youtube-cta:hover {
  background: #cc0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* FAQ */
.faq-section {
  background: #ffffff;
  padding: 70px 0;
  border-top: 2px solid rgba(245,197,66,0.2);
}

.faq-section .accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background: #f8f9fa;
  color: #2a2359;
  font-weight: 600;
  padding: 16px;
  font-size: 1rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: #f5c542;
  color: #000;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #f5c542;
}

.accordion-body {
  padding: 16px;
  color: #555;
  line-height: 1.6;
  background: #fff;
  font-size: 0.95rem;
}

/* FINAL CTA */
.cta-section {
  background: linear-gradient(135deg, #2a2359, #0a0528);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* STAR BACKGROUND */
#stars, #stars2, #stars3 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

#stars {
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'><circle cx='2' cy='2' r='1.5' fill='white'/></svg>") repeat;
  animation: animStar 60s linear infinite;
  opacity: 0.7;
}

#stars2 {
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'><circle cx='3' cy='3' r='1' fill='white'/></svg>") repeat;
  animation: animStar 120s linear infinite;
  opacity: 0.4;
}

#stars3 {
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'><circle cx='4' cy='4' r='0.5' fill='white'/></svg>") repeat;
  animation: animStar 180s linear infinite;
  opacity: 0.2;
}

@keyframes animStar {
  from { transform: translateY(0px); }
  to { transform: translateY(-2000px); }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COLOR FIXES */
.service-card-mockup,
.service-card-mockup h5,
.service-card-mockup p {
  color: #222 !important;
}

.blog-card-mockup,
.blog-card-mockup h5,
.blog-card-mockup p {
  color: #222 !important;
}

.testimonial-card,
.testimonial-card h5,
.testimonial-card p {
  color: #222 !important;
}

.youtube-section h2,
.youtube-section p {
  color: #222 !important;
}

.counter-section h2,
.counter-section p {
  color: #222 !important;
}

.faq-section h2,
.faq-section p {
  color: #222 !important;
}

.services-mockup h2,
.services-mockup p {
  color: #222 !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .container,
  .astrologer-section .container-fluid {
    max-width: 100%;
    padding: 0 15px;
  }
  
  #servicesCarousel .carousel-control-prev {
    left: -30px;
  }
  
  #servicesCarousel .carousel-control-next {
    right: -30px;
  }
}

@media (max-width: 992px) {
  .hero-mockup h1 {
    font-size: 2.4rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  #servicesCarousel .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  
  .astrologer-content {
    padding: 35px;
  }
  
  .counter-section .counter {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero-mockup {
    padding: 80px 0 40px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-mockup h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtext {
    font-size: 1rem;
    margin: 0 auto 30px;
  }
  
  .hero-img {
    max-height: 280px;
    margin-top: 25px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }
  
  #servicesCarousel .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .astrologer-content {
    padding: 30px 20px;
    text-align: center;
  }
  
  .astrologer-img {
    min-height: 350px;
  }
  
  .counter-section {
    padding: 50px 0;
    margin-top: -20px;
  }
  
  .counter-box {
    padding: 25px 15px;
    margin-bottom: 15px;
  }
  
  .counter-section .counter {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  section,
  .services-mockup,
  .blog-mockup,
  .testimonials-section,
  .youtube-section,
  .counter-section,
  .faq-section,
  .astrologer-section {
    padding: 50px 0 !important;
  }
  
  .testimonial-card,
  .service-card-mockup,
  .blog-card-mockup {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .hero-mockup h1 {
    font-size: 1.8rem;
  }
  
  .btn-gold {
    padding: 9px 22px;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .astrologer-content h2 {
    font-size: 1.6rem;
  }
  
  .counter-section .counter {
    font-size: 1.8rem;
  }
  
  .youtube-video-container {
    border-radius: 8px;
  }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .hero-mockup h1 {
    font-size: 2.2rem; /* Reduced from 2.4rem */
  }
  
  .hero-mockup {
    min-height: 65vh; /* Reduced for tablet */
  }
  
  .astrologer-content {
    padding: 30px; /* Reduced from 35px */
  }
}

@media (max-width: 768px) {
  .hero-mockup {
    padding: 70px 0 40px; /* Adjusted padding */
    min-height: auto; /* Removed fixed height on mobile */
  }
  
  .hero-mockup h1 {
    font-size: 1.9rem; /* Slightly reduced from 2rem */
    line-height: 1.3;
  }
  
  .hero-subtext {
    font-size: 1rem;
    margin: 0 auto 25px; /* Adjusted margin */
  }
  
  .hero-img {
    max-height: 260px; /* Reduced from 280px */
    margin-top: 20px; /* Reduced from 25px */
  }
  
  .astrologer-img {
    min-height: 320px; /* Reduced from 350px */
  }
  
  .astrologer-content {
    padding: 25px 20px; /* Reduced from 30px 20px */
  }
  
  .astrologer-content h2 {
    font-size: 1.5rem; /* Reduced from 1.6rem */
  }
}

@media (max-width: 576px) {
  .hero-mockup h1 {
    font-size: 1.7rem; /* Reduced from 1.8rem */
  }
  
  .astrologer-content h2 {
    font-size: 1.4rem; /* Reduced from 1.6rem */
  }
}
/* Add these styles to your existing style.css file */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    font-size: 34px;
}

/* WhatsApp Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #FF9933; /* Using your saffron accent color */
    color: #1a237e; /* Using your primary dark color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #D68910; /* Using your accent-dark color */
    color: #1a237e; /* Using your primary dark color */
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Sticky Navbar Shrink Effect */
.astro-nav.nav-shrink {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 70px;
        right: 15px;
        font-size: 16px;
    }
}

/* Hide on print */
@media print {
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .back-to-top {
        background-color: #FF9933;
        color: #1a237e;
    }
    
    .back-to-top:hover {
        background-color: #D68910;
    }
}

/* Focus states for accessibility */
.whatsapp-float:focus,
.back-to-top:focus {
    outline: 3px solid #FF9933;
    outline-offset: 3px;
}

/* Counter animation (for the counters in your HTML) */
.counter {
    display: inline-block;
}
/* LEGAL PAGES ENHANCEMENTS */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0528 0%, #1a0f3c 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.legal-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(245, 197, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 197, 66, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.legal-page .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(245, 197, 66, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.legal-page h1 {
    color: #f5c542;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.legal-page h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f5c542, transparent);
}

.legal-page h3 {
    color: #f5c542;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-left: 20px;
    position: relative;
}

.legal-page h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #f5c542;
    border-radius: 50%;
}

.legal-page p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-page ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 2rem;
}

.legal-page ul li {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.legal-page ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #f5c542;
    font-size: 14px;
}

.legal-page strong {
    color: #fff;
    font-weight: 600;
}

/* Legal Navigation */
.legal-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 197, 66, 0.2);
}

.legal-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(245, 197, 66, 0.1);
    color: #f5c542;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(245, 197, 66, 0.2);
}

.legal-nav a:hover {
    background: rgba(245, 197, 66, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.1);
}

.legal-nav i {
    font-size: 14px;
}

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #f5c542;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.info-card h4 {
    color: #f5c542;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card p {
    margin-bottom: 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-page .container {
        padding: 40px;
    }
    
    .legal-page h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .legal-page .container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-page h3 {
        font-size: 1.3rem;
        margin: 2rem 0 0.8rem;
    }
    
    .legal-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .legal-nav a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .legal-page {
        padding: 80px 0 40px;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
    }
    
    .legal-page p, .legal-page ul li {
        font-size: 1rem;
    }
}