/* ==================== GENERAL RESET ==================== */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

/* ==================== PAGE BACKGROUND ==================== */
body {
  background: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* ==================== HEADER STYLES ==================== */
header {
  background: linear-gradient(180deg, #000000, #272323);
  color: #333;
  padding: 15px 0;
  position: relative;
  top: 0;
  z-index: 2;
  position: fixed;
  width: 100%;
  color: white;
   
}

/* Styling for back arrow */
.back-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 5px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.back-arrow:hover {
  background-color: #eaeaea;
}

.back-arrow i {
  width: 24px;
  height: 24px;
  stroke: #333;
}

/* For mobile devices */
@media (max-width: 768px) {
  .back-arrow {
    padding: 8px;
  }

  .back-arrow i {
    width: 20px;
    height: 20px;
  }

  /* Show mobile menu when toggle button is clicked */
  .navbar {
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 0;
    background: #333;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    
  }

  .navbar.active {
    display: flex; /* Show when active */
  }

  /* Style the dropdown for mobile */
  .dropdown-menu {
    position: relative;
    background-color: #ffffff; /* Lighter background */
  }

  .dropdown-menu a {
    color: #000000; /* Text color */
    text-decoration: none;
  }

  .dropdown-menu a:hover {
    background-color: #000000; /* Highlight on hover */
  }
}



/* ==================== CONTAINER LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding:  10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ==================== LOGO STYLING ==================== */
.logo img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 60px;
  
  }

.logo {
  flex-grow: 1;
}

/* ==================== NAVBAR STYLES ==================== */
.navbar {
  list-style: none;
  display: flexbox;
  margin: 0;
}

.navbar li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 17px 15px;
  border-radius: 8px;
  
}
.dropdown-menu li a  {
  padding: 4px 4px;
}

.navbar li a:hover {

  transform: scale(1.05);
}

/* ==================== DROPDOWN MENU ==================== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f3f5de;
  top: 52px;
  right: 0;
  min-width: 250px;
  border-radius: 5px;
 
  
}

.dropdown-menu li {
  font-size: 1px;
  margin-bottom: 1px;
}

.dropdown-menu li a {
  color: #333;
  display: block;
  transition: background 0.3s ease;
}

/* ==================== MOBILE MENU TOGGLE ==================== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
  position: absolute;
  right: 20px;
}

/* ==================== MOBILE VIEW ==================== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .navbar {
    flex-direction: column;
    background: #000000;
    position: absolute;
    right: 0;
    top: 85px;
    width: 100%;
    display: none;
  }

  .navbar li {
    text-align: center;
    padding: 9px 0;
  }
  .menu-toggle {
    display: block;
     
    
  }

  .navbar.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
  }

  .logo {
    flex-grow: 0;
    text-align: left;

    
  }
}

/* ==================== DESKTOP VIEW ==================== */
@media (min-width: 769px) {
  .navbar {
    display: flex !important;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ==================== SLIDER SECTION ==================== */
.slider {
  background-color: #fff;
  padding: 30px 55px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: nowrap;
  margin: auto;
}

.slider-text {
  max-width: 300px;
  font-size: 1.2rem;
  color: black;
  font-weight: 600;
  margin-bottom: 0;
  flex-basis: 100%;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 18px;
  text-decoration: none;
  gap: 10px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.whatsapp-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.whatsapp-text {
  font-weight: 600;
}

/* ==================== CONTACT BUTTON ==================== */
.contact-btn {
  background-color: black;
  color: white;
  padding: 8px 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: auto;
}

.contact-btn:hover {
  background-color: #555;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  .slider-content {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .whatsapp-btn,
  .contact-btn {
    width: auto;
    text-align: center;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .slider-text {
    font-size: 1rem;
  }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;

}

.services-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.services-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ==================== SERVICE BOX ==================== */
.service-box {
  background-color: 	#f5ebeb;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(33.333% - 8px);
  color:	#000000;
}



.service-box.large.groupe {
  background: linear-gradient(135deg, #ff0000, #1d0606);
  color: white;
}

.service-box.large.batucada {
   background: linear-gradient(45deg, #000000, #3a2e2e);
  color: white;
}
.service-box.anniversaire {
   background: linear-gradient(45deg, #070436, #3a2e2e);
  color: white;
}

.adulte{
  background: linear-gradient(50deg, #000000 0%, #695f5f 100%);
  color: white;
}

.service-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 0.9rem;
  color: inherit;
  margin: 0;
}

/* ==================== MOBILE SERVICES ==================== */
@media (max-width: 600px) {
  .services-title {
  font-size: 0.5rem;
  color: #000;
  margin-bottom: 10px;
}
  .service-box {
    flex: 0 0 calc(33.333% - 8px);
  }

  .service-box.large {
    flex: 0 0 calc(50% - 6px);
  }

  .service-box h3 {
    font-size: 0.8rem;
  }

  .service-box img {
    width: 35px;
    height: 35px;
  }
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.why-title {
  font-size: 1.2rem;
  color: #610696;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.why-slider {
  position: relative;
  overflow: hidden;
  height: 390px;
  max-width: 900px;
  margin: 0 auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease;
  padding: 20px 40px;
  border-radius: 16px;
  background: linear-gradient(45deg, #000000, #252323);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.slide img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.slide h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.slide p {
  font-size: 1rem;
  color: #ffffff;
  max-width: 600px;
  line-height: 1.6;
}

/* ==================== SLIDER DOTS ==================== */
.slider-dots {
  margin-top: 10px;
}

.slider-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #5759df;
}

/* ==================== WHY BUTTON ==================== */
.why-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #000000, #252323);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.why-btn:hover {
  transform: scale(1.05);
}

/* ==================== CONSULTATION VIDEO ==================== */
.consultation-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  margin-top: 90px;
  
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(60%) blur(0.1px);

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 2;
}

.consultation-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.consultation-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.consultation-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.consultation-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-consult.call {
 background: linear-gradient(45deg, #000000, #412828);  color: white;
}

.btn-consult.whatsapp {
  background: linear-gradient(45deg, #25d36542, #128c7e);
  color: white;
}

.btn-consult:hover {
  transform: scale(1.05);
}

.btn-consult i {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
.consultation-video-section {
  height: 60vh;
}
}


/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.see-more-container {
  text-align: center;
  margin-top: 30px;
}

.see-more-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #000000, #252323);
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.see-more-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

figcaption {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #130842;
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.3s ease;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: linear-gradient(145deg, #fdf0ff, #f4f9ff);
  padding: 60px 20px;
  border-radius: 30px 30px 0 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(102, 51, 153, 0.08);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.05rem;
  font-weight: bold;
  border: none;
  background-color: #f1f0ee;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #f1f0ee;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #000000;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.extra-faqs.hidden {
  display: none;
}

.faq-more-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

#toggle-more-faqs {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#toggle-more-faqs:hover {
  background-color: #ffffff;
  color: #000;
  border: 2px solid black;
}


/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 3rem;
  background: #ffffff;
  max-width: 900px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #3b3b3b;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  color: #5c5c5c;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid #dcdcdc;
  border-radius: 1rem;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 600;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.3);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8b1b7c;
  box-shadow: 0 0 0 3px rgba(139, 27, 124, 0.1);
  outline: none;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-btn-form {
  background: linear-gradient(45deg, #000000, #252323);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}


.contact-btn-form:hover {
  background: linear-gradient(45deg, #000000, #252323);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 27, 124, 0.3);
}

.contact-btn-form:active {
  background: linear-gradient(45deg, #000000, #252323);
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem;
  }

  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-btn-form {
    font-size: 1rem;
  }
}

 
/* ==================== FOOTER STYLES ==================== */
.site-footer {
  background: linear-gradient(45deg, #000000, #252323);
  color: #fff;
  padding: 60px 0 0;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #8b1b7c, #ff6fd8, #8b1b7c);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo img {
  width: 72px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact i {
  width: 20px;
  text-align: center;
  margin-right: 10px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #8b1b7c;
  transform: translateY(-5px);
}

.footer-newsletter h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 15px;
  border: white solid 1px ;
  border-radius: 30px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: #8b1b7c;
  background: rgba(255, 255, 255, 0.2);
}

.footer-newsletter button {
  background: #ffffff;
  border: rgb(0, 0, 0) solid 0.5px ;
  color: #000000;

  padding: 12px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 95%;
}

.footer-newsletter button:hover {
  background: #000000;
  transform: translateY(-2px);
  color: white;
  border: solid 2px white;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #000000, #252323);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(139, 27, 124, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #000000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links,
  .footer-contact,
  .footer-social {
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after,
  .footer-social h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
  }
}
/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== UTILITY CLASSES ==================== */
.hidden {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-title,
  .why-title,
  .section-title-reviews,
  .section-title,
  .packages-section-title,
  .contact-section h2,
  #faq-heading {
    font-size: 1.3rem;
    color: #000;
  }
  
  .consultation-content h2 {
    font-size: 2rem;
  }
  
  .consultation-content p {
    font-size: 1rem;
  }
  
  .btn-consult {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .card {
    padding: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}