*,
body,
html {
  margin: 0;
  padding: 0;
}
.navbar-brand,
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}
.blog-hero,
.footer-bottom,
.hero,
.hero-blog,
.image-caption,
.pricing-header,
.teacher-card,
.yoga-hero {
  text-align: center;
}
.blog-link,
.categories-list a,
.reply-btn,
.social-links a {
  text-decoration: none;
}
.author-image img,
.author-img,
.blog-img img,
.comment-avatar img,
.popular-post-img img,
.service-img img,
.teacher-img {
  object-fit: cover;
  object-fit: cover;
}
:root {
  --primary-color: #a8d5ba;
  --secondary-color: #c9b6e4;
  --accent-color: #f5f0e6;
  --text-color: #333;
  --light-text: #666;
  --white: #fff;
  --primary: #8e6c4d;
  --secondary: #c9a87c;
  --light: #f8f5f0;
  --dark: #4a3c2a;
  --accent: #a68a64;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--white);
}
.footer-logo,
.modal-title,
.navbar-brand,
.spa-logo,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s;
}
.loader,
.spa-logo {
  position: relative;
}
.hero,
.hero-blog {
  display: flex;
  align-items: center;
}
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.spa-logo {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  overflow: hidden;
}
.spa-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  animation: 1.5s 0.5s forwards logoUnderline;
}
@keyframes logoUnderline {
  to {
    width: 100%;
  }
}
.loader {
  width: 100px;
  height: 100px;
}
.floating-elements,
.loader-circle {
  width: 100%;
  height: 100%;
  position: absolute;
}
.loader-circle {
  border: 5px solid transparent;
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: 1.5s linear infinite spin;
}
.loader-circle:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: var(--secondary-color);
  animation: 1.8s linear infinite spinReverse;
}
.loader-circle:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: var(--primary-color);
  animation: 2s linear infinite spin;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.loading-text {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: 2s infinite pulse;
}
.nav-link:hover,
.navbar-brand {
  color: var(--primary-color) !important;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.floating-elements {
  overflow: hidden;
  z-index: -1;
}
.floating-element {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  animation: 15s linear infinite float;
}
.floating-element:first-child {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23a8d5ba"><path d="M12 2L4 12l8 10 8-10z"/></svg>');
  width: 40px;
  height: 40px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 20s;
}
.floating-element:nth-child(2) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9b6e4"><circle cx="12" cy="12" r="10"/></svg>');
  width: 60px;
  height: 60px;
  top: 70%;
  left: 10%;
  animation-delay: 2s;
  animation-duration: 25s;
}
.floating-element:nth-child(3) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23a8d5ba"><path d="M12 2L2 7l10 5 10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>');
  width: 50px;
  height: 50px;
  top: 30%;
  left: 80%;
  animation-delay: 4s;
  animation-duration: 18s;
}
.floating-element:nth-child(4) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9b6e4"><path d="M12 2L4 12l8 10 8-10z"/></svg>');
  width: 30px;
  height: 30px;
  top: 80%;
  left: 85%;
  animation-delay: 6s;
  animation-duration: 22s;
}
.nav-link::after,
.navbar-brand::after {
  bottom: -5px;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  content: "";
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.navbar-brand {
  font-size: 1.8rem;
  position: relative;
}
.btn-hero,
.btn-outline-light {
  font-size: 1.1rem;
  margin: 0 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.navbar-brand::after {
  left: 0;
  height: 2px;
  background: var(--secondary-color);
}
.nav-link:hover::after,
.navbar-brand:hover::after {
  width: 100%;
}
.nav-link {
  color: var(--text-color) !important;
  font-weight: 400;
  margin: 0 10px;
  transition: 0.3s;
  position: relative;
}
.nav-link::after {
  left: 0;
  height: 2px;
  background: var(--primary-color);
}
.btn-book,
.btn-book:hover,
.btn-hero,
.btn-hero:hover,
.btn-outline-light,
.hero,
.hero-blog,
.pricing-btn:hover,
.service-card:hover .service-content h4,
.service-card:hover .service-content p,
.service-card:hover .service-price {
  color: var(--white);
}
.btn-book {
  background-color: var(--primary-color);
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-book::before,
.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: 0.3s;
  z-index: -1;
}
.btn-book:hover::before,
.btn-hero:hover::before,
.btn-outline-light:hover::before,
.btn-submit:hover::before,
.pricing-btn:hover::before {
  left: 0;
}
.hero-blog {
  justify-content: center;
}
.hero h1,
.hero-blog h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: 1s ease-out fadeInDown;
}
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/Wellness.jpeg") center/cover no-repeat;
  justify-content: center;
  position: relative;
}
.hero-content {
  max-width: 800px;
  padding: 0 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: 1s ease-out 0.3s both fadeInUp;
}
.hero-buttons {
  animation: 1s ease-out 0.6s both fadeInUp;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-hero {
  background-color: var(--primary-color);
  border: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-hero:active,
.btn-outline-light:active,
.btn-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn-outline-light {
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.about-features,
.social-links {
  margin-top: 30px;
}
.floating-leaves,
.leaf {
  z-index: 0;
  position: absolute;
}
.btn-outline-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: 0.3s;
  z-index: -1;
}
.btn-outline-light:hover {
  color: var(--text-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.floating-leaves {
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
.leaf {
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  animation: linear infinite floatLeaf;
}
.pricing-btn,
.search-form,
.section,
.service-card,
.testimonial-card,
.testimonial-text,
footer {
  position: relative;
}
@keyframes floatLeaf {
  0% {
    transform: translateY(100vh) rotate(0);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}
.section-title {
  color: var(--text-color);
  display: inline-block;
}
.section-title:after {
  content: "";
  background-color: var(--primary-color);
  animation: 1s ease-out forwards expandLine;
}
.pricing-card:hover .pricing-header,
.service-card::before {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
.section-subtitle {
  color: var(--light-text);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-content h3,
.about-feature i,
.pricing-features li i,
.service-price {
  color: var(--primary-color);
}
.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s;
}
.about-img:hover {
  transform: perspective(1000px) rotateY(0);
}
.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.about-feature:hover {
  transform: translateX(10px);
}
.about-feature i {
  font-size: 1.5rem;
  margin-right: 15px;
  transition: transform 0.3s;
}
.about-feature:hover i,
.contact-item:hover i,
.pricing-features li:hover i {
  transform: scale(1.2);
}
.contact,
.services {
  background-color: var(--accent-color);
}
.pricing-card,
.service-card,
.testimonial-card {
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.service-card {
  border-radius: 10px;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  z-index: 1;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: var(--white);
}
.service-card:hover::before {
  opacity: 0.9;
}
.blog-img,
.service-img {
  height: auto;
  overflow: hidden;
}
.blog-img img,
.service-img img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.service-card:hover .service-img img {
  transform: scale(1.1);
  opacity: 0.8;
}
.blog-content,
.massage-content,
.service-content {
  padding: 25px;
}
.blog-content h4,
.service-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
  transition: color 0.3s;
}
.service-content p {
  color: var(--light-text);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
}
.author-info p,
.testimonial-text {
  color: var(--light-text);
}
.testimonial-card {
  margin-bottom: 30px;
  transition: 0.3s;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: height 0.3s;
}
.btn-submit::before,
.pricing-btn::before {
  top: 0;
  left: -100%;
  z-index: -1;
  position: absolute;
  content: "";
}
.testimonial-card:hover::before {
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial-text {
  line-height: 1.6;
}
.author-img {
  transition: transform 0.3s;
}
.newsletter-form button:hover,
.testimonial-card:hover .author-img {
  transform: scale(1.1);
}
.author-info h5 {
  font-size: 1.1rem;
}
.pricing-card {
  border-radius: 10px;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-btn,
.pricing-header,
.social-links a {
  background-color: var(--primary-color);
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pricing-header {
  color: var(--white);
  padding: 25px;
  transition: 0.3s;
}
.pricing-card.featured .pricing-btn,
.pricing-card.featured .pricing-header,
.social-links a:hover {
  background-color: var(--secondary-color);
}
.pricing-card.featured:hover .pricing-header {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}
.pricing-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-period {
  font-size: 0.9rem;
  opacity: 0.8;
}
.pricing-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}
.blog-link:hover i,
.contact-item:hover,
.pricing-features li:hover {
  transform: translateX(5px);
}
.facial-features li:last-child,
.pricing-features li:last-child,
.retreat-features li:last-child,
.schedule-table tr:last-child td {
  border-bottom: none;
}
.pricing-features li i {
  margin-right: 10px;
  transition: transform 0.3s;
}
.blog-link:hover,
.footer-bottom a:hover,
.footer-logo:hover,
.pricing-card.featured .pricing-features li i {
  color: var(--secondary-color);
}
.pricing-btn {
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.blog-card,
.contact-form,
.contact-info {
  background-color: var(--white);
}
.blog-link,
.contact-item i,
.footer-logo {
  color: var(--primary-color);
}
.pricing-btn::before {
  width: 100%;
  height: 100%;
  background: var(--text-color);
  transition: 0.3s;
}
.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
}
.blog-link {
  display: inline-flex;
  align-items: center;
}
.contact-form {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.contact-form:hover,
.contact-info:hover,
.map-container:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.form-control,
.form-select {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.contact-info,
.map-container {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(168, 213, 186, 0.25);
  transform: translateY(-2px);
}
.contact-info {
  padding: 30px;
  height: 100%;
  transition: 0.3s;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: transform 0.3s;
}
.contact-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  transition: transform 0.3s;
}
.contact-item h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.contact-item p {
  color: var(--light-text);
  margin-bottom: 0;
}
.social-links {
  display: flex;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
}
.map-container {
  height: 400px;
  overflow: hidden;
  transition: 0.3s;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
footer {
  background: linear-gradient(135deg, #1a1a1a, #111);
  color: var(--white);
  padding: 80px 0 20px;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  box-shadow: 0 0 15px var(--primary-color);
}
.footer-about,
.footer-links,
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
}
.footer-about:hover,
.footer-links:hover,
.footer-newsletter:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
}
.btn-submit::before,
.scroll-to-top:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}
.footer-logo {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 15px;
  display: inline-block;
}
.footer-about p,
.footer-newsletter p {
  color: #bbb;
  line-height: 1.6;
}
.footer-links h5,
.footer-newsletter h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h5::after,
.footer-newsletter h5::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  transition: 0.3s;
}
.footer-links h5:hover::after,
.footer-newsletter h5:hover::after {
  width: 70px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}
.newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  background: #222;
}
.btn-submit,
.modal-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  background: 0 0;
  color: #fff;
  outline: 0;
}
.newsletter-form input::placeholder {
  color: #aaa;
}
.newsletter-form button {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  padding: 0 18px;
  color: #fff;
  transition: 0.3s;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
}
.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}
.blog-card:hover .blog-content h4,
.footer-bottom a {
  color: var(--primary-color);
}
@media (max-width: 768px) {
  footer {
    padding: 60px 0 20px;
  }
  .footer-about,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 20px;
  }
  .newsletter-form {
    flex-direction: row;
  }
}
.modal-content {
  border-radius: 10px;
  border: none;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: 0.3s;
}
.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}
.modal-header {
  border-radius: 10px 10px 0 0;
  border: none;
}
.modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}
.btn-submit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.floating-cta,
.scroll-to-top {
  position: fixed;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.3s;
  cursor: pointer;
}
.btn-submit::before {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.btn-submit:hover {
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.floating-cta {
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  justify-content: center;
  font-size: 1.5rem;
  animation: 2s infinite pulse;
}
.floating-cta:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: none;
}
.scroll-to-top {
  bottom: 50px;
  right: 15px;
  width: 50px;
  height: 50px;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.benefits-list li,
.yoga-hero {
  align-items: center;
  display: flex;
}
.class-card,
.teacher-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.blog-card:hover,
.class-card:hover,
.teacher-card:hover {
  transform: translateY(-10px);
}
.scroll-to-top.active + .floating-cta {
  bottom: 160px;
}
.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}
.nav-link.active::after {
  width: 100% !important;
}
.yoga-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6))
      center/cover fixed,
    url("../images/909.jpg") center/cover fixed;
  height: 60vh;
  justify-content: center;
  color: #fff;
  padding-top: 40px;
}
.class-card {
  overflow: hidden;
  transition: transform 0.3s;
  margin-bottom: 30px;
  background: #fff;
}
.class-img,
.facial-img,
.massage-img,
.retreat-img {
  height: 250px;
  overflow: hidden;
}
.class-img img,
.facial-img img,
.massage-img img,
.retreat-img img,
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img,
.class-card:hover .class-img img,
.facial-card:hover .facial-img img,
.massage-card:hover .massage-img img,
.retreat-card:hover .retreat-img img,
.team-card:hover .team-img img {
  transform: scale(1.05);
}
.accordion-body,
.class-content {
  padding: 20px;
}
.class-schedule {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
}
.schedule-table td,
.schedule-table th {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}
.schedule-table th {
  background-color: #e9ecef;
}
.page-item.active .page-link,
.page-link:hover,
.search-form button,
.section-title::after {
  background: var(--primary);
  background: var(--primary);
}
.teacher-card {
  padding: 20px;
  background: #fff;
  transition: transform 0.3s;
}
.benefits-list,
ol,
ul {
  padding-left: 0;
}
.teacher-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 5px solid #f8f9fa;
}
.benefits-list {
  list-style-type: none;
}
.benefits-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.benefits-list li i {
  margin-right: 10px;
  color: #6c757d;
}
.hero-blog {
  background: linear-gradient(rgba(74, 60, 42, 0.7), rgba(74, 60, 42, 0.7))
      center/cover,
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80")
      center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-content h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.blog-card h4,
.section-title {
  color: var(--dark);
}
.section-title::after {
  content: "";
  display: block;
  margin: 15px auto;
  border-radius: 2px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
}
.section-subtitle {
  color: #777;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.author-social a:hover,
.btn-submit:hover,
.tag:hover {
  transform: translateY(-2px);
}
#blog-spot .blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  display: flex;
  gap: 40px;
  padding: 60px 0;
}
.blog-hero .blog-meta {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.author-social a:hover,
.blog-link:hover,
.reply-btn:hover {
  color: var(--secondary);
}
.blog-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-card p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.blog-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}
.comment-author,
.sidebar-widget h4 {
  font-weight: 700;
  color: var(--dark);
}
.btn-submit,
.form-label,
.page-link,
.reply-btn {
  font-weight: 600;
}
.search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination {
  margin-top: 50px;
  justify-content: center;
}
.page-link {
  color: var(--primary);
  border: none;
  margin: 0 5px;
  border-radius: 50% !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-link:hover {
  color: #fff;
}
.page-item.active .page-link {
  border-color: var(--primary);
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .btn-outline-light {
    margin-top: 5%;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .about-img {
    margin-bottom: 30px;
  }
  .map-container {
    height: 300px;
    margin-top: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .newsletter-form button {
    border-radius: 5px;
  }
  .floating-cta {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
  .scroll-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 80px;
    right: 10px;
  }
  .scroll-to-top.active + .floating-cta {
    bottom: 130px;
  }
  body {
    padding-top: 70px;
  }
  .hero-content h1,
  .section-title {
    font-size: 2rem;
  }
}
.blog-hero {
  padding: 100px 0 60px;
  background: linear-gradient(rgba(74, 60, 42, 0.7), rgba(74, 60, 42, 0.7))
      center/cover,
    url("https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80")
      center/cover;
  color: #fff;
}
.blog-hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 15px;
}
.author-section,
.comments-section,
.post-content {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.blog-main,
.comment-content {
  flex: 1;
}
.blog-sidebar {
  width: 320px;
}
.post-content {
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.post-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.post-content h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}
.post-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}
.post-image {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-caption {
  font-style: italic;
  color: #777;
  margin-top: 10px;
  font-size: 0.9rem;
}
blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 30px;
  background: var(--light);
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}
blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
}
.blockquote-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary);
}
.facial-hero,
.massage-hero,
.schedule-table td,
.skin-type-card,
.team-card,
.technique-card {
  text-align: center;
}
.author-section {
  display: flex;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  gap: 25px;
}
.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-image img,
.comment-avatar img,
.popular-post-img img {
  width: 100%;
  height: 100%;
}
.author-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.author-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.author-social a {
  color: var(--primary);
  font-size: 1.2rem;
  transition: 0.3s;
}
.comments-section {
  padding: 40px;
  border-radius: 10px;
}
.comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
}
.comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.comment-date {
  color: #777;
  font-size: 0.9rem;
}
.reply-btn {
  color: var(--primary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.btn-submit,
.form-control {
  font-size: 1rem;
  transition: 0.3s;
}
.comment-form {
  margin-top: 50px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
}
.search-form button,
.tag:hover {
  color: #fff;
  background: var(--primary);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}
.form-control:focus,
.search-form input:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(142, 108, 77, 0.2);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.btn-submit {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
}
.btn-submit:hover {
  background-color: var(--secondary);
}
.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-widget h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.sidebar-widget h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}
.search-form input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  transition: 0.3s;
}
.search-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.search-form button:hover {
  background: var(--secondary);
}
.categories-list {
  list-style: none;
}
.categories-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.categories-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.categories-list a {
  color: var(--text);
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}
.categories-list a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.categories-list span {
  background: var(--light);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}
.popular-post-content a,
.tag {
  color: var(--dark);
  text-decoration: none;
  transition: 0.3s;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  background: var(--light);
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
}
.popular-post {
  display: block !important;
  gap: 15px;
  margin-bottom: 20px;
}
.popular-post:last-child {
  margin-bottom: 0;
}
.popular-post-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.retreat-card,
.team-card {
  background: #fff;
  height: 100%;
  overflow: hidden;
}
.popular-post-content h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  margin-top: 10px !important;
}
.accordion-button:not(.collapsed),
.popular-post-content a:hover {
  color: var(--primary);
}
.popular-post-date {
  color: #777;
  font-size: 0.85rem;
}
.text-primary {
  --bs-text-opacity: 1;
  color: rgb(168 213 186) !important;
}
.blog-content p {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.retreat-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}
.facial-card:hover,
.retreat-card:hover,
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 155, 155, 0.2);
}
.facial-content,
.retreat-content,
.team-content {
  padding: 1.5rem;
}
.facial-content h4,
.retreat-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.facial-price,
.retreat-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}
.facial-features,
.retreat-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.facial-features li,
.retreat-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}
.facial-features li i,
.retreat-features li i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.team-card,
.testimonial-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.schedule-table th {
  background-color: var(--primary);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}
.schedule-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.schedule-table tr:nth-child(2n) {
  background-color: rgba(93, 155, 155, 0.03);
}
.team-card {
  border-radius: 15px;
  transition: 0.3s;
}
.team-img {
  height: 300px;
  overflow: hidden;
}
.team-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team-content p {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}
.testimonial-text:before {
  content: "";
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(93, 155, 155, 0.1);
  font-family: Georgia, serif;
}
.author-info p {
  margin-bottom: 0;
  color: var(--primary);
  font-size: 0.9rem;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
@media (max-width: 992px) {
  .retreat-hero h1 {
    font-size: 3rem;
  }
  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .retreat-hero {
    min-height: 600px;
  }
  .retreat-hero h1 {
    font-size: 2.5rem;
  }
  .retreat-hero p {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .retreat-hero h1 {
    font-size: 2rem;
  }
}
.facial-hero {
  height: 80vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3))
      center/cover,
    url("../images/18790.jpg") center/cover;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  padding-top: 80px;
}
.facial-card,
.skin-type-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
}
.facial-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.facial-hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.facial-card {
  transition: 0.4s;
  position: relative;
}
.skin-type-card {
  transition: 0.3s;
  padding: 2rem;
}
.skin-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(93, 155, 155, 0.2);
}
.skin-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.skin-type-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.massage-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80")
      center/cover no-repeat;
  padding: 180px 0 100px;
  color: #fff;
}
.massage-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.massage-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.btn-hero {
  background-color: #fff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-hero:hover {
  background-color: var(--secondary);
  color: var(--dark);
}
.section {
  padding: 100px 0;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 40px;
}
.bg-light {
  background-color: #f9f7f5 !important;
}
.massage-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.massage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.treatment-duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1;
}
.massage-content h4,
.technique-card h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.massage-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
}
.massage-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.massage-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.technique-icon,
.testimonial-author {
  align-items: center;
  display: flex;
}
.massage-features li i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 5px;
}
.concern-badge {
  display: inline-block;
  background-color: rgba(125, 127, 125, 0.1);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
}
.technique-card,
.testimonial-card {
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.technique-card {
  background: #fff;
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s;
}
.accordion-button:not(.collapsed),
.technique-icon {
  background-color: rgba(125, 127, 125, 0.1);
  color: var(--primary);
}
.technique-card:hover {
  transform: translateY(-5px);
}
.technique-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  height: 100%;
}
.testimonial-rating {
  color: #ffc107;
  margin-bottom: 20px;
}
.privacy-hero,
.terms-hero {
  color: #fff;
  text-align: center;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
}
.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.author-info h5 {
  font-weight: 700;
  margin-bottom: 5px;
}
.accordion-button {
  font-weight: 600;
  padding: 20px;
}
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6))
      center/cover,
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80")
      center/cover;
  padding: 120px 0 80px;
}
.privacy-container,
.terms-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: -50px auto 50px;
}
.section-title:after {
  content: "";
  background-color: var(--secondary);
  margin: 0;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}
.privacy-section,
.terms-section {
  margin-bottom: 40px;
}
.privacy-section h3,
.terms-section h3 {
  color: var(--dark);
  font-weight: 600;
  margin: 25px 0 15px;
}
.privacy-section p,
.terms-section p {
  margin-bottom: 15px;
  color: #555;
}
.privacy-section ul,
.terms-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.privacy-section li,
.terms-section li {
  margin-bottom: 8px;
}
.privacy-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6))
      center/cover,
    url("https://images.unsplash.com/photo-1551782450-17144efb9c50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1769&q=80")
      center/cover;
  padding: 120px 0 80px;
}
.section-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.highlight {
  background-color: rgba(138, 109, 98, 0.1);
  border-left: 4px solid var(--primary);
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.privacy-table td,
.privacy-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.privacy-table th {
  background-color: var(--light);
  color: var(--dark);
  font-weight: 600;
}
.privacy-table tr:hover {
  background-color: rgba(138, 109, 98, 0.05);
}
.faq-accordion .accordion-item {
  border: none;
  background: 0 0;
  margin-bottom: 1.25rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.faq-accordion .accordion-header {
  background-color: #fff;
  border-radius: 20px;
}
.faq-accordion .accordion-button {
  background-color: #fff;
  color: #2c3e2f;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 20px !important;
  box-shadow: none;
  border: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #9b7b4c;
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(155, 123, 76, 0.3);
}
.faq-accordion .accordion-button::after {
  background-size: 1rem;
  filter: brightness(0.6);
}
.faq-accordion .accordion-body {
  background-color: #fefaf5;
  padding: 1.5rem 1.8rem;
  color: #5a5a5a;
  line-height: 1.7;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 0.98rem;
}
.faq-hero {
  background: linear-gradient(
      135deg,
      rgba(44, 62, 47, 0.92),
      rgba(30, 45, 33, 0.88)
    ),
    url("assets/images/hero-bg.jpg") center/cover no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .faq-hero {
    min-height: 45vh;
  }
}
.faq-category-badge {
  display: inline-block;
  background: #9b7b4c20;
  color: #9b7b4c;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-card-faq {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid #f0e5d8;
}
.contact-card-faq i {
  font-size: 2.5rem;
  color: #9b7b4c;
  margin-bottom: 1rem;
}
.btn-faq-contact {
  background: 0 0;
  border: 2px solid #9b7b4c;
  color: #9b7b4c;
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  transition: 0.3s;
}
.btn-faq-contact:hover {
  background: #9b7b4c;
  color: #fff;
}