* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  background: #fff !important;
}

.wellness-section .container-fluid {
  --bs-gutter-x: 0rem;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: 0.4s ease;
  padding: 15px 0;
}

.main-header.sticky {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo-img {
  width: 130px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #b44ca5;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  transition: 0.4s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.menu-icon i {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.custom-dropdown {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 10px;
}

.custom-dropdown .dropdown-item {
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.custom-dropdown .dropdown-item:hover {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
}

.hero-section {
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: zoomEffect 8s linear infinite;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75),
    rgba(9, 107, 106, 0.25),
    rgba(180, 76, 165, 0.18)
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 700px;
  color: #fff;
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b44ca5;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
  width: 7%;
  z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

@media (max-width: 991px) {
  .main-header {
    background: rgba(0, 0, 0, 0.9);
  }

  .navbar-collapse {
    background: #000;
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .logo-img {
    width: 95px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .theme-btn,
  .border-btn {
    width: 100%;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 420px;
  height: 100vh;
  z-index: 99999;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url("/images-new/IMG\ EMBTY.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: 0.5s ease;
  padding: 60px;
  overflow: hidden;
}

.side-menu.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 35px;
  right: 35px;
  cursor: pointer;
}

.close-btn i {
  font-size: 32px;
  color: #111;
}

.side-menu-content {
  margin-top: 80px;
}

.side-menu-content h2 {
  font-size: 70px;
  font-weight: 300;
  color: #111;
  margin-bottom: 40px;
  line-height: 1;
}

.contact-info p {
  font-size: 24px;
  color: #111;
  margin-bottom: 22px;
  font-weight: 300;
}

.contact-info span {
  font-weight: 500;
  color: #b44ca5;
}

.social-links {
  margin-top: 50px;
  display: flex;
  gap: 25px;
}

.social-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.3s;
}

.social-links a:hover {
  color: #096b6a;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 576px) {
  .side-menu {
    width: 100%;
    padding: 40px 30px;
  }

  .side-menu-content h2 {
    font-size: 48px;
  }

  .contact-info p {
    font-size: 18px;
  }
}

.counter-section {
  padding: 80px 0;
  background: #fff;
}

.counter-box {
  text-align: center;
  background: linear-gradient(90deg, #e6b8e0, #9edfdc);
  padding: 40px 20px;
  border-radius: 20px;
  height: 100%;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-box:hover {
  transform: translateY(-8px);
}

.counter-box h2 {
  font-size: 55px;
  font-weight: 700;
  color: #b44ca5;
  margin-bottom: 10px;
  line-height: 1;
}
.counter-box p {
  font-size: 19px;
  margin: 0;
  font-weight: 500;
  color: #096b6a;
}

@media (max-width: 767px) {
  .counter-section {
    padding: 60px 0;
  }

  .counter-box {
    padding: 30px 15px;
  }

  .counter-box h2 {
    font-size: 38px;
  }

  .counter-box p {
    font-size: 15px;
  }
}

.wellness-section {
  background-color: #fff;
}

.wellness-content {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  padding: 90px 70px;
  height: 100%;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  display: inline-block;
  font-weight: 600;
}

.wellness-content h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 700px;
}

.wellness-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 15px;
  max-width: 700px;
}

.wellness-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 25px;
}

.wellness-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 500;
}

.wellness-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.wellness-image-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main-image {
  height: 620px;
}

.main-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;
}

.bottom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.floating-box {
  background: linear-gradient(135deg, #096b6a, #b44ca5);
  padding: 35px;
  border-radius: 12px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-box h3 {
  color: #fff;
  font-size: 45px;
  margin-bottom: 18px;
  font-weight: 400;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 2px;
  transition: 0.4s;
}

.theme-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.border-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  transition: 0.4s;
}

.border-btn:hover {
  background: #fff;
  color: #000;
}
.floating-box p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 22px;
}

.floating-box i {
  color: #fff;
  font-size: 34px;
}

.clients {
  display: flex;
  align-items: center;
}

.clients img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
}

.clients img:first-child {
  margin-left: 0;
}

.small-image {
  overflow: hidden;
}

.small-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .wellness-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .wellness-content {
    padding: 60px 35px;
  }

  .wellness-content h2 {
    font-size: 32px;
  }

  .wellness-list {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 500px;
  }

  .bottom-layout {
    grid-template-columns: 1fr;
  }

  .small-image {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .wellness-section {
    padding: 70px 0;
  }

  .wellness-content {
    padding: 45px 25px;
  }

  .wellness-content h2 {
    font-size: 34px;
  }

  .wellness-content p {
    font-size: 15px;
  }

  .floating-box {
    min-height: auto;
    padding: 28px;
  }

  .floating-box h3 {
    font-size: 44px;
  }
}

.spa-services {
  padding: 100px 0;
  background: #fff;
}

.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}

.services-title span::before,
.services-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #b08a57;
}

.services-title span::before {
  right: 120%;
}

.services-title span::after {
  left: 120%;
}

.services-title h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin: 0;
}

.services-title h2 span {
  color: #7c8b67;
  font-size: inherit;
  letter-spacing: 0;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 430px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.service-content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
}

.service-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 500;
}

.service-content p {
  color: #b44ca5;
  font-size: 13px;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 600;
}

.services-btn {
  text-align: center;
  margin-top: 50px;
}

.services-btn a {
  display: inline-block;
  padding: 18px 42px;
  border: 1px solid #555;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.4s;
}

.services-btn a:hover {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  border-color: #55624b;
  color: #fff;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-title h2 {
    font-size: 42px;
  }

  .service-card {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .spa-services {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title h2 {
    font-size: 34px;
  }

  .service-card {
    height: 420px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .services-title span::before,
  .services-title span::after {
    width: 35px;
  }
}

.spa-gallery {
  padding: 50px 0;
  background: linear-gradient(90deg, #f7e4f3, #e3f7f5);
  overflow: hidden;
}

.gallery-title {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-title span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  background: linear-gradient(90deg, rgb(180, 76, 165), rgb(9, 107, 106)) text;
}

.gallery-title span::before,
.gallery-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #b8925f;
}

.gallery-title span::before {
  right: 120%;
}

.gallery-title span::after {
  left: 120%;
}

.gallery-title h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr 1fr;
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  height: 380px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: 0.5s;
}

.gallery-content {
  position: absolute;
  left: 30px;
  bottom: 25px;
  z-index: 3;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.5s;
}

.gallery-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 500;
}

.gallery-content span {
  color: #d8b07b;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.gallery-item:hover img {
  transform: scale(1.12) rotate(2deg);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-content {
  opacity: 1;
  transform: translateY(0);
}

/* Large center card spans 2 rows */
.gallery-large {
  grid-row: span 2;
  height: 785px;
  background: #7de1e3;
  position: relative;
}

/* Arch-shaped image cutout inside the large card */
.gallery-arch {
  position: absolute;
  inset: 25px;
  overflow: hidden;
  border-top-left-radius: 320px;
  border-top-right-radius: 320px;
  z-index: 2;
}

.gallery-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.gallery-large:hover .gallery-arch img {
  transform: scale(1.1);
}

.lb-data .lb-caption {
  font-size: 16px;
  font-weight: 500;
}

.lb-data .lb-number {
  font-size: 14px;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large {
    grid-column: span 2;
    height: 650px;
  }
}

@media (max-width: 991px) {
  .gallery-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .spa-gallery {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item {
    height: 320px;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
    height: 500px;
  }

  .gallery-arch {
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
  }

  .gallery-title h2 {
    font-size: 34px;
  }

  .gallery-title span::before,
  .gallery-title span::after {
    width: 35px;
  }
}

/* Gradient border on lightbox image using border-image */
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid transparent;
  border-image: linear-gradient(90deg, #b44ca5, #096b6a) 1 !important;
}

.faq-section {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

/* Sticky positioning for the FAQ left column on scroll */
.faq-left {
  position: sticky;
  top: 120px;
}

.faq-subtitle {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  text-transform: uppercase;
  padding: 0 80px;
}

.faq-subtitle::before,
.faq-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #b08a57;
}

.faq-subtitle::before {
  left: 0;
}

.faq-subtitle::after {
  right: 0;
}

.faq-left h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin-bottom: 50px;
}

.faq-contact-box {
  background: #f5f2eb;
  border-radius: 24px;
  overflow: hidden;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-contact-top {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  padding: 28px 35px;
  text-align: center;
}

.faq-contact-top h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  margin: 0;
}

.faq-contact-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-item-new {
  padding: 35px;
}

.contact-item-new:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-item-new h4 {
  color: #222;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
}

.contact-item-new a {
  color: #096b6a;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s;
  word-break: break-word;
}

.contact-item-new a:hover {
  color: #b44ca5;
}
.contact-item-about {
  padding: 35px;
}
.contact-item-about a {
  color: #096b6a;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s;
  word-break: break-word;
}

.contact-item-about a:hover {
  color: #b44ca5;
}
.faq-wrapper {
  padding-left: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 30px 0;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
}

.faq-question h3 {
  color: #222;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  transition: 0.3s;
}

.faq-left h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin-bottom: 50px;
}

.gradient-text {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.faq-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #096b6a;
  transition: 0.4s;
}

/* max-height animation for smooth FAQ expand/collapse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  color: #000;
  font-size: 16px;
  line-height: 1.9;
  margin-top: 20px;
  max-width: 90%;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  border-color: transparent;
}

.faq-item.active .faq-question h3 {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item:hover .faq-question h3 {
  color: #096b6a;
}

@media (max-width: 1200px) {
  .faq-left h2 {
    font-size: 48px;
  }

  .faq-question h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper {
    padding-left: 0;
  }

  .faq-left {
    position: relative;
    top: 0;
    margin-bottom: 50px;
  }

  .faq-left h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-left h2 {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .faq-subtitle {
    padding: 0 55px;
    font-size: 11px;
  }

  .faq-subtitle::before,
  .faq-subtitle::after {
    width: 35px;
  }

  .faq-contact-top h3 {
    font-size: 24px;
  }

  .faq-contact-bottom {
    grid-template-columns: 1fr;
  }

  .contact-item-new:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .contact-item-new {
    padding: 28px 20px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 16px;
    max-width: 100%;
  }

  .faq-icon {
    min-width: 38px;
    height: 38px;
    font-size: 22px;
  }
}

.testimonial-section {
  padding: 50px 0;
  background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
  overflow: hidden;
}

.testimonial-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-title span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  text-transform: uppercase;
}

.testimonial-title span::before,
.testimonial-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #b08a57;
}

.testimonial-title span::before {
  right: 120%;
}

.testimonial-title span::after {
  left: 120%;
}

.testimonial-title h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin: 0;
}

.testimonial-title h2 .gradient-text {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonialSwiper {
  padding-bottom: 20px;
}

.testimonialSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.5);

  /* Equal height fix for swiper slides */
  width: 100%;
  height: 100%;
  min-height: 270px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(180, 76, 165, 0.08),
    rgba(9, 107, 106, 0.08)
  );
  opacity: 0;
  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 70px;
  opacity: 0.08;
  color: #096b6a;
  z-index: 1;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.testimonial-top img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-user {
  flex: 1;
}

.testimonial-user h3 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #222;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-user span {
  font-size: 15px;
  color: #096b6a;
  font-weight: 500;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-stars i {
  color: #ffb400;
  font-size: 16px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 2;

  /* flex-grow pushes content to fill equal-height cards */
  flex-grow: 1;
}

.swiper-pagination {
  position: relative;
  margin-top: 45px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #096b6a;
  opacity: 0.3;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: linear-gradient(90deg, #b44ca5, #096b6a);
}

@media (max-width: 1200px) {
  .testimonial-title h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .testimonial-section {
    padding: 90px 0;
  }

  .testimonial-title h2 {
    font-size: 42px;
  }

  .testimonial-card {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-title {
    margin-bottom: 40px;
  }

  .testimonial-title h2 {
    font-size: 34px;
  }

  .testimonial-title span::before,
  .testimonial-title span::after {
    width: 35px;
  }

  .testimonial-card {
    padding: 28px;
    min-height: auto;
    border-radius: 22px;
  }

  .testimonial-top {
    align-items: flex-start;
  }

  .testimonial-top img {
    width: 62px;
    height: 62px;
  }

  .testimonial-user h3 {
    font-size: 22px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .testimonial-quote {
    font-size: 55px;
  }
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 45px;
}

.testimonial-prev,
.testimonial-next {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.4s;

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.testimonial-prev i,
.testimonial-next i {
  font-size: 18px;
  color: #096b6a;
  transition: 0.4s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #b44ca5, #096b6a);
}

.testimonial-prev:hover i,
.testimonial-next:hover i {
  color: #fff;
}

@media (max-width: 767px) {
  .testimonial-prev,
  .testimonial-next {
    width: 50px;
    height: 50px;
  }
}

.booking-section {
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.booking-wrapper {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  max-width: 1050px;
  margin: auto;
}

.booking-image {
  position: relative;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.booking-image:hover img {
  transform: scale(1.05);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15));
}

.booking-content {
  position: absolute;
  left: 35px;
  bottom: 35px;
  z-index: 2;
}

.booking-content span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.booking-content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 400;
}

.booking-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  max-width: 380px;
  margin: 0;
}

.booking-form-area {
  padding: 40px;
  background: #fff;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-title {
  margin-bottom: 24px;
}

.booking-title span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.booking-title h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  position: relative;
}

.form-control,
.form-select {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 18px;
  font-size: 15px;
  color: #222;
  background: #fff;
  box-shadow: none !important;
  transition: 0.4s;
}

textarea.form-control {
  height: 110px;
  resize: none;
  padding-top: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: #b44ca5;
  background: #fff;
}

.form-control::placeholder {
  color: #888;
}

.booking-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.4s;
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(180, 76, 165, 0.25);
}

@media (max-width: 1200px) {
  .booking-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .booking-section {
    padding: 70px 0;
  }

  .booking-image {
    min-height: 320px;
  }

  .booking-form-area {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .booking-wrapper {
    border-radius: 18px;
  }

  .booking-image {
    min-height: 280px;
  }

  .booking-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .booking-content h2 {
    font-size: 30px;
  }

  .booking-content p {
    font-size: 14px;
  }

  .booking-title h2 {
    font-size: 28px;
  }

  .booking-form-area {
    padding: 30px 20px;
  }
}

/*Footer Section */

.footer-section {
  background: linear-gradient(90deg, #096b6a, #b44ca5);
  padding-top: 90px;
  color: #fff;
  overflow: hidden;
}

/* LOGO */

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ABOUT */

.footer-about p {
  font-size: 17px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 35px;
  max-width: 360px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  font-size: 18px;

  transition: 0.4s;
  backdrop-filter: blur(10px);
}

.footer-social a:hover {
  background: #fff;
  color: #096b6a;
  transform: translateY(-5px);
}

/* TITLES */

.footer-links h3,
.footer-contact h3,
.footer-map h3 {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 400;
  color: #fff;
}

/* LINKS */

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 18px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 8px;
}

/* CONTACT */

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  color: #fff;
  text-decoration: none;

  transition: 0.3s;
}

.footer-contact-line i {
  font-size: 18px;
  color: #fff;
  margin-top: 5px;
  min-width: 18px;
}

.footer-contact-line span {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.footer-contact-line:hover {
  transform: translateX(5px);
  opacity: 0.9;
}

/* MAP */

.map-wrapper {
  overflow: hidden;
  border-radius: 22px;
  height: 250px;

  border: 3px solid rgba(255, 255, 255, 0.12);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .footer-section {
    padding-top: 70px;
  }

  .footer-logo img {
    max-width: 190px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-map h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding-top: 60px;
  }

  .footer-about p {
    font-size: 15px;
    line-height: 1.9;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-map h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .footer-links ul li a,
  .footer-contact-line span {
    font-size: 16px;
  }

  .footer-logo img {
    max-width: 170px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .map-wrapper {
    height: 220px;
    border-radius: 18px;
  }

  .footer-bottom {
    margin-top: 50px;
  }
}

/* Beauty and Spa Center Section */
.beauty-spa-section {
  background: #fff;
  overflow: hidden;
}

.beauty-img-wrapper {
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beauty-circle-img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.beauty-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.beauty-ring {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 3px solid #096b6a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 0% 75%);
}

.beauty-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 0;

  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-size: 10px 10px;

  background-color: transparent;

  -webkit-mask-image: radial-gradient(circle, #000 1.5px, transparent 1.5px);
  -webkit-mask-size: 10px 10px;
  mask-image: radial-gradient(circle, #000 1.5px, transparent 1.5px);
  mask-size: 10px 10px;
}

.beauty-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #096b6a, #b44ca5);
  z-index: -1;
}

.beauty-dots-top {
  top: 0;
  right: 0;
}

.beauty-dots-bottom {
  bottom: 0;
  left: 0;
}

.beauty-text-content {
  padding-left: 20px;
}

.beauty-heading {
  font-size: 52px;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
  margin-bottom: 20px;
}

.beauty-heading-accent {
  color: #b44ca5;
  font-weight: 700;
}

.beauty-leaf-icon {
  font-size: 28px;
  vertical-align: middle;
}

.beauty-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
  line-height: 1.6;
}

.beauty-desc {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 520px;
}

.beauty-signature {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 28px;
  color: #bbb;
  margin-bottom: 10px;
}

.beauty-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #f9f5f8;
  border-radius: 10px;
  padding: 12px 18px;
  transition: 0.3s;
}

.beauty-feature-item:hover {
  background: linear-gradient(90deg, #f7e4f3, #e3f7f5);
}

.beauty-feature-item i {
  color: #b44ca5;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .beauty-text-content {
    padding-left: 0;
  }
  .beauty-heading {
    font-size: 40px;
  }
  .beauty-img-wrapper {
    width: 340px;
    height: 340px;
  }
  .beauty-circle-img {
    width: 280px;
    height: 280px;
  }
  .beauty-ring {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 767px) {
  .beauty-img-wrapper {
    width: 280px;
    height: 280px;
  }
  .beauty-circle-img {
    width: 230px;
    height: 230px;
  }
  .beauty-ring {
    width: 265px;
    height: 265px;
  }
  .beauty-heading {
    font-size: 34px;
    text-align: center;
  }
  .beauty-text-content {
    text-align: center;
  }
  .beauty-feature-item {
    justify-content: center;
  }
  .beauty-desc,
  .beauty-tagline {
    font-size: 15px;
  }
  .beauty-signature {
    text-align: center;
  }
}

/* ===== Page Header / Banner ===== */
.page-header {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding-top: 117px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: headerZoom 10s linear infinite alternate;
}

@keyframes headerZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(9, 107, 106, 0.45) 50%,
    rgba(180, 76, 165, 0.35) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-subtitle {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 0 70px;
}

.page-header-subtitle::before,
.page-header-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.page-header-subtitle::before {
  left: 0;
}
.page-header-subtitle::after {
  right: 0;
}

.page-header-title {
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 2px;
}

/* Breadcrumb */
.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  gap: 0;
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.page-header .breadcrumb-item a:hover {
  color: #b44ca5;
}

.page-header .breadcrumb-item a i {
  margin-right: 5px;
  font-size: 13px;
}

.page-header .breadcrumb-item.active {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
  content: "/";
  padding: 0 10px;
}

/* Bottom wave */
.page-header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.page-header-wave svg {
  width: 100%;
  height: 55px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .page-header {
    height: 460px;
  }
  .page-header-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .page-header {
    height: 400px;
  }
  .page-header-title {
    font-size: 38px;
  }
  .page-header-subtitle {
    padding: 0 45px;
    font-size: 11px;
  }
  .page-header-subtitle::before,
  .page-header-subtitle::after {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .page-header {
    height: 400px;
  }
  .page-header-title {
    font-size: 30px;
  }
}

/* ===== What We Offer Section ===== */
.what-we-offer-section {
  background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
  overflow: hidden;
}

.offer-content {
  padding: 80px 60px 80px 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-main-title {
  font-size: 52px;
  font-weight: 400;
  color: #000;
  letter-spacing: 6px;
  margin-bottom: 50px;
}

.offer-list {
  display: flex;
  flex-direction: column;
}

.offer-item {
  padding: 28px 0;
}

.offer-item:first-child {
  padding-top: 0;
}

.offer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.offer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-icon i {
  font-size: 15px;
  color: #096b6a;
}

.offer-name {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.offer-right p {
  font-size: 15px;
  color: #000;
  line-height: 1.85;
  margin: 0;
}

.offer-divider {
  height: 2px;
  background: linear-gradient(90deg, #096b6a 0%, #b44ca5 100%);
  margin-top: 28px;
  border-radius: 10px;
}
.offer-item:last-child .offer-divider {
  display: none;
}

/* Right Image */
.offer-image-wrap {
  position: relative;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.8s ease;
}

.offer-image-wrap:hover .offer-img {
  transform: scale(1.04);
}

.offer-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 241, 234, 0.25),
    rgba(0, 0, 0, 0.08)
  );
}

/* Responsive */
@media (max-width: 1200px) {
  .offer-content {
    padding: 70px 40px 70px 50px;
  }
  .offer-main-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .offer-content {
    padding: 60px 30px;
  }
  .offer-main-title {
    font-size: 36px;
    letter-spacing: 4px;
  }
  .offer-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .offer-content {
    padding: 50px 20px;
  }
  .offer-main-title {
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 35px;
  }
  .offer-name {
    font-size: 17px;
  }
  .offer-right p {
    font-size: 14px;
  }
  .offer-item {
    padding: 22px 0;
  }
}

/* ===== Price Plans Section ===== */
.price-plans-section {
  padding: 100px 0;
  background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
  position: relative;
  overflow: hidden;
}

.price-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.price-bg-circle-1 {
  width: 500px;
  height: 500px;
  background: rgba(180, 76, 165, 0.08);
  bottom: -100px;
  right: -100px;
  filter: blur(60px);
}

.price-bg-circle-2 {
  width: 300px;
  height: 300px;
  background: rgba(9, 107, 106, 0.06);
  top: 50px;
  right: 200px;
  filter: blur(50px);
}

.price-plans-section .container {
  position: relative;
  z-index: 1;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dotted #096b6a;
  transition: 0.3s;
}

.price-item:hover {
  transform: translateX(6px);
}

.price-item:hover .price-value {
  color: #b44ca5;
}

.price-item-img {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.price-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.price-item:hover .price-item-img img {
  transform: scale(1.1);
}

.price-item-info {
  flex-shrink: 0;
  min-width: 170px;
}

.price-item-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.3;
}

.price-item-info p {
  font-size: 12px;
  color: #b44ca5;
  margin: 0;
  font-weight: 600;
}

.price-item-dots {
  flex: 1;
  height: 1px;
  border-top: 1.5px dashed rgba(0, 0, 0, 0.15);
  margin: 0 12px;
}

.price-item-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
}

.from-label {
  font-size: 14px;
  color: #096b6a;
}

.price-value {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  transition: 0.3s;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .price-main-title {
    font-size: 48px;
  }
  .price-item-info {
    min-width: 140px;
  }
}

@media (max-width: 991px) {
  .price-plans-section {
    padding: 80px 0;
  }
  .price-main-title {
    font-size: 42px;
  }
  .price-item-info {
    min-width: 120px;
  }
  .price-item-info h4 {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .price-plans-section {
    padding: 60px 0;
  }
  .price-main-title {
    font-size: 34px;
  }
  .price-item-img {
    width: 60px;
    height: 60px;
  }
  .price-item-info {
    min-width: 100px;
  }
  .price-value {
    font-size: 20px;
  }
  .price-item-dots {
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .price-item-info p {
    display: none;
  }
  .price-item-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
  }
  .price-item-info h4 {
    font-size: 13px;
  }
}

/* ===== Combo Packages Section ===== */
.combo-section {
  padding: 100px 0;
  background: #f8f8f8;
  overflow: hidden;
}

/* Card */
.combo-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.combo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(180, 76, 165, 0.12);
  border-color: rgba(180, 76, 165, 0.2);
}

/* Featured card */
.combo-card-featured {
  border: 2px solid #b44ca5;
}

.combo-card-featured .combo-price {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badge */
.combo-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-bottom-left-radius: 10px;
  text-transform: uppercase;
}

/* Price */
.combo-price {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1;
  margin-bottom: 12px;
  margin-top: 10px;
}

/* Service Name */
.combo-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #b44ca5;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Divider */
.combo-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 76, 165, 0.3),
    transparent
  );
  margin-bottom: 20px;
}

/* Description */
.combo-desc {
  color: #000;
  line-height: 1.85;
  flex-grow: 1;
  margin-bottom: 24px;
}

/* Book Now Button */
.combo-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-align: center;
  transition: 0.4s;
  text-transform: uppercase;
}

.combo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(180, 76, 165, 0.3);
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .combo-price {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .combo-section {
    padding: 80px 0;
  }
  .combo-price {
    font-size: 32px;
  }
  .combo-card {
    padding: 28px 22px;
  }
}

@media (max-width: 767px) {
  .combo-section {
    padding: 60px 0;
  }
  .combo-price {
    font-size: 30px;
  }
  .combo-name {
    font-size: 12px;
  }
  .combo-card {
    padding: 26px 18px;
  }
}

.service-cards-section {
  padding: 100px 0;
  background: #fff;
}
 
.service-cards-title {
  text-align: center;
  margin-bottom: 60px;
}
 
.service-cards-title span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  text-transform: uppercase;
}
 
.service-cards-title span::before,
.service-cards-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #b08a57;
}
 
.service-cards-title span::before { right: 120%; }
.service-cards-title span::after  { left:  120%; }
 
.service-cards-title h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #222;
  font-weight: 400;
  margin: 0;
}
 
/* Grid: 3 columns */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
 
/* Card */
.service-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
 
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(180, 76, 165, 0.13);
}
 
/* Image */
.service-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f0f0f0;
}
 
.service-card-img.no-image {
  display: none;
}
 
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
 
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
 
/* Body */
.service-card-body {
  padding: 28px 26px 30px;
  background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #b44ca5, #096b6a) 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
 
.service-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
}
 
/* Accent underline below title */
.service-card-body h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.4s ease;
}
 
.service-card:hover .service-card-body h3::after {
  width: 70px;
}
 
.service-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
 
/* Book Now Button */
.service-card-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-align: center;
  transition: 0.4s;
  text-transform: uppercase;
  margin-top: auto;
}
 
.service-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(180, 76, 165, 0.3);
  color: #fff;
}
 
/* Responsive */
@media (max-width: 1200px) {
  .service-cards-title h2 { font-size: 48px; }
}
 
@media (max-width: 991px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards-title h2 { font-size: 42px; }
  .service-cards-section { padding: 80px 0; }
}
 
@media (max-width: 767px) {
  .service-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-cards-title h2 { font-size: 34px; }
  .service-cards-section { padding: 60px 0; }
  .service-cards-title span::before,
  .service-cards-title span::after { width: 35px; }
  .service-card-img { height: 220px; }
}


.blog-section{
    padding:100px 0;
    background:linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.blog-card{
    background:#fff;
    overflow:hidden;
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-image{
    position:relative;
    overflow:hidden;
    height:280px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-date{
    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(90deg, #096b6a, #b44ca5);
    width:70px;
    color: #FFF;
    height:70px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-size:12px;
    letter-spacing:2px;
}

.blog-content{
    padding:28px;
}
.blog-meta {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 500;
    background: linear-gradient(90deg, #096b6a, #b44ca5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-title{
    font-size:24px;
    line-height:1.3;
    font-weight:300;
    color:#000;
    margin-bottom:15px;
}

.blog-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:22px;
}

.blog-link{
    text-decoration:none;
    color:#111;
    font-size:13px;
    letter-spacing:4px;
    font-weight:600;
    text-transform:uppercase;
    position:relative;
}

.blog-link::after{
    content:"";
    display:block;
    width:120px;
    height:1px;
    background:#111;
    margin-top:10px;
}

@media(max-width:991px){
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-title{
        font-size:28px;
    }
}

.case-study-section{
    padding:100px 0;
    background:linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
}

.case-study-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.case-card{
    background:#fff;
    border:1px solid #eee;
    overflow:hidden;
    transition:.4s;
    height:100%;
}

.case-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.case-image{
    position:relative;
    height:240px;
    overflow:hidden;
}

.case-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.case-card:hover img{
    transform:scale(1.08);
}

.case-category{
    position:absolute;
    top:15px;
    left:15px;
    background:linear-gradient(90deg,#096b6a,#b44ca5);
    color:#fff;
    padding:8px 14px;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.case-content{
    padding:25px;
}

.case-metric{
    font-size:34px;
    font-weight:700;
    line-height:1;
    margin-bottom:15px;
    background:linear-gradient(90deg,#096b6a,#b44ca5);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.case-title{
    font-size:24px;
    line-height:1.4;
    margin-bottom:15px;
    color:#222;
    font-weight:400;
}

.case-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.case-link{
    text-decoration:none;
    color:#096b6a;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.case-link:hover{
    color:#b44ca5;
}

@media(max-width:1200px){
    .case-study-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){
    .case-study-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .case-study-grid{
        grid-template-columns:1fr;
    }
}

.blog-content h3{
    font-size:24px;
    margin:50px 0 25px;
    font-weight:500;
    color:#111;
}

.service-block{
    margin-bottom:30px;
    padding-left:25px;
    border-left:3px solid #b44ca5;
}

.service-block h4{
    font-size:28px;
    margin-bottom:10px;
    color:#111;
    font-weight:400;
}

.service-block p{
    margin:0;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
    margin-bottom:50px;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    background:#fff;
    border:1px solid #eee;
    transition:.4s;
}

.benefit-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.benefit-item i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(
        90deg,
        #b44ca5,
        #096b6a
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;
}

.benefit-item span{
    font-size:18px;
    font-weight:500;
    color:#222;
}

.blog-highlight{
    margin-top:50px;
    padding:40px;
    background:linear-gradient(
        90deg,
        rgba(180,76,165,.08),
        rgba(9,107,106,.08)
    );

    border-left:4px solid #096b6a;
}

.blog-highlight h3{
    margin-top:0;
}

@media(max-width:767px){

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .service-block h4{
        font-size:24px;
    }

    .blog-content h3{
        font-size:28px;
    }
}
.blog-section-image{
    margin:50px 0 30px;
}

.blog-section-image img{
    width:100%;
    max-height:450px;
    object-fit:cover;
    border-radius:8px;
    display:block;
}

.blog-section-image{
    margin:0 0 40px;
    overflow:hidden;
    border-radius:8px;
}

.blog-section-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.service-block{
    margin-bottom:30px;
    padding-left:25px;
    border-left:3px solid #b44ca5;
}

.service-block h4{
    font-size:28px;
    margin-bottom:10px;
    color:#111;
    font-weight:400;
}

.service-block p{
    margin:0;
}

.custom-benefits{
    list-style:none;
    padding:0;
    margin:25px 0 40px;
}

.custom-benefits li{
    position:relative;
    padding-left:42px;
    margin-bottom:16px;
}

.custom-benefits li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;

    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:linear-gradient(90deg,#b44ca5,#096b6a);

    color:#fff;
    font-size:13px;
    font-weight:700;
}

.blog-highlight{
    margin-top:40px;
    padding:35px;
    border-left:4px solid #096b6a;
    background:linear-gradient(
        90deg,
        rgba(180,76,165,.06),
        rgba(9,107,106,.06)
    );
}

.inner-blog-image{
    margin:50px 0;
    overflow:hidden;
    border-radius:12px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.inner-blog-image img{
    width:100%;
    display:block;
}

.inner-blog-caption{
    padding:18px 25px;
    text-align:center;
    color:#666;
    font-style:italic;
    background:#fff;
    border-top:1px solid #eee;
}

.contact-section{
    padding:50px 0;
    background:#fff;
}

.contact-subtitle{
    display:inline-block;
    font-size:12px;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:20px;
    background:linear-gradient(90deg,#b44ca5,#096b6a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-title{
    font-size:58px;
    line-height:1.1;
    font-weight:400;
    color:#222;
    margin-bottom:25px;
}

.contact-title span{
    background:linear-gradient(90deg,#b44ca5,#096b6a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-desc{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
    max-width:550px;
}

/* LEFT CARD */

.contact-info-card{
    border-radius:25px;
    overflow:hidden;
    background:linear-gradient(135deg,#096b6a,#b44ca5);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:35px;
    min-height:160px;
}

.contact-border-right{
    border-right:1px solid rgba(255,255,255,.12);
}

.contact-border-bottom{
    border-bottom:1px solid rgba(255,255,255,.12);
}

.contact-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#fff;
    font-size:24px;
}

.contact-sub-headng{
    color:#fff !important;
    font-size:24px;
    margin-bottom:8px;
    font-weight:500;
}
.contact-item a{
    color:#fff !important;
    font-size:16px;
    margin-bottom:8px;
    font-weight:500;
}
.contact-item p{
    color:rgba(255,255,255,.85);
    margin:0;
    line-height:1.8;
}

.contact-social{
    padding:30px 35px;
    border-top:1px solid rgba(255,255,255,.12);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.contact-social h5{
    color:#fff;
    margin:0;
    font-size:18px;
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s;
}

.social-links a:hover{
    background:#fff;
    color:#096b6a;
    transform:translateY(-5px);
}

/* FORM */

.contact-form-box{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.form-title{
    font-size:52px;
    color:#222;
    font-weight:400;
    margin-bottom:35px;
}

.form-title span{
    background:linear-gradient(90deg,#b44ca5,#096b6a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.custom-input{
    height:60px;
    border:none;
    background:#f6f7f8;
    border-radius:14px;
    padding:0 20px;
    box-shadow:none !important;
}

.custom-input:focus{
    background:#f6f7f8;
    border:1px solid #b44ca5;
}

.custom-textarea{
    height:140px;
    resize:none;
    padding-top:18px;
}

.submit-btn{
    width:100%;
    border:none;
    height:60px;
    border-radius:14px;
    background:linear-gradient(90deg,#b44ca5,#096b6a);
    color:#fff;
    font-weight:500;
    letter-spacing:1px;
    transition:.4s;
}

.submit-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:991px){

    .contact-title{
        font-size:42px;
    }

    .form-title{
        font-size:40px;
    }

    .contact-form-box{
        padding:30px;
    }
}

@media(max-width:767px){

    .contact-section{
        padding:70px 0;
    }

    .contact-title{
        font-size:34px;
    }

    .form-title{
        font-size:32px;
    }

    .contact-border-right{
        border-right:none;
    }

    .contact-border-bottom{
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .contact-item{
        padding:25px;
        min-height:auto;
    }

    .contact-social{
        justify-content:center;
        text-align:center;
    }
}

.form-select.custom-input{
    height:60px;
    border:none;
    background:#f6f7f8;
    border-radius:14px;
    padding:0 20px;
    box-shadow:none !important;
}

.form-select.custom-input:focus{
    border:1px solid #b44ca5;
    background:#f6f7f8;
}

.case-study-details{
    padding:100px 0;
    background:#fff;
}

.case-study-banner{
    margin-bottom:50px;
}

.case-study-banner img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.case-study-content{
    max-width:1000px;
    margin:auto;
}

.case-study-content h2{
    font-size:42px;
    font-weight:500;
    margin-bottom:25px;
    color:#222;
    position:relative;
}

.case-study-content h2::after{
    content:'';
    width:80px;
    height:3px;
    background:linear-gradient(90deg,#b44ca5,#096b6a);
    display:block;
    margin-top:15px;
}

.case-study-content h3{
    font-size:30px;
    margin-top:40px;
    margin-bottom:20px;
    background: linear-gradient(90deg, #b44ca5, #096b6a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight:500;
}

.case-study-content p{
    font-size:18px;
    line-height:2;
    color:#000;
    margin-bottom:20px;
}

.case-study-content ul{
    padding-left:25px;
    margin-bottom:30px;
}

.case-study-content ul li{
    font-size:18px;
    color:#555;
    margin-bottom:12px;
    line-height:1.8;
}

@media(max-width:991px){

    .case-study-details{
        padding:70px 0;
    }

    .case-study-banner img{
        height:400px;
    }

    .case-study-content h2{
        font-size:34px;
    }

    .case-study-content h3{
        font-size:26px;
    }

    .case-study-content p,
    .case-study-content ul li{
        font-size:16px;
    }
}

@media(max-width:767px){

    .case-study-banner img{
        height:280px;
        border-radius:15px;
    }

    .case-study-content h2{
        font-size:28px;
    }

    .case-study-content h3{
        font-size:22px;
    }
}
.blog-highlight-case{
    margin-top:50px;
    padding:20px;
    background:linear-gradient(
        90deg,
        rgba(180,76,165,.08),
        rgba(9,107,106,.08)
    );

    border-left:4px solid #096b6a;
}

.case-study-inner-image {
    margin: 40px 0;
    text-align: center;
}

.case-study-inner-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    display: inline-block;
}
.contact-item a{
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover{
    color: #c59d5f;
}


/* ---------- BENEFITS INTRO ---------- */
.location-benefits-section {
  padding: 110px 0 0;
  background: #fff;
  overflow: hidden;
}

.location-benefits-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-benefits-heading {
  font-size: 50px;
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  margin-bottom: 28px;
}

.location-benefits-heading strong {
  font-weight: 600;
}

.location-benefits-body {
  font-size: 16px;
  line-height: 1.95;
  color: #444;
  margin-bottom: 18px;
  max-width: 580px;
}

.location-mosaic {
  position: relative;
  height: 580px;
}

.location-mosaic-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.location-mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.location-mosaic-main:hover img {
  transform: scale(1.05);
}

.location-mosaic-thumb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.location-mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.location-mosaic-thumb:hover img {
  transform: scale(1.05);
}

.location-mosaic-float {
  position: absolute;
  top: 30px;
  left: 0;
  background: linear-gradient(135deg, #096b6a, #b44ca5);
  border-radius: 18px;
  padding: 30px 28px;
  color: #fff;
  width: 155px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(9, 107, 106, .28);
  z-index: 3;
}

.location-mosaic-float h4 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1;
}

.location-mosaic-float p {
  font-size: 12px;
  margin: 0;
  opacity: .9;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .location-benefits-section { padding: 80px 0 0; }
  .location-benefits-heading { font-size: 38px; }
  .location-mosaic { height: 420px; }
  .location-mosaic-main { width: 80%; height: 300px; }
  .location-mosaic-thumb { height: 185px; width: 60%; }
}

@media (max-width: 767px) {
  .location-benefits-section { padding: 60px 0 0; }
  .location-benefits-heading { font-size: 32px; }
  .location-mosaic { height: 320px; margin-top: 30px; }
  .location-mosaic-float { width: 115px; padding: 20px 15px; }
  .location-mosaic-float h4 { font-size: 30px; }
}


/* ---------- STATS STRIP ---------- */
.location-stats-section {
  padding: 0 0 110px;
  background: #fff;
}

.location-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(9, 107, 106, .12);
}

.location-stat-box {
  background: linear-gradient(135deg, #096b6a, #b44ca5);
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.location-stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .2);
}

.location-stat-box h2 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.location-stat-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, .88);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 767px) {
  .location-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .location-stat-box h2 { font-size: 38px; }
  .location-stats-section { padding: 0 0 70px; }
  .location-stat-box:nth-child(2)::after { display: none; }
  .location-stat-box:nth-child(1),
  .location-stat-box:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
}


/* ---------- SERVICES GRID ---------- */
.location-services-section {
  padding: 110px 0;
  background: #fff;
}

.location-section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  position: relative;
  padding: 0 80px;
}

.location-section-label::before,
.location-section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #ccc;
}

.location-section-label::before { left: 0; }
.location-section-label::after  { right: 0; }

.location-section-heading {
  font-size: 56px;
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  margin: 0;
}

.location-section-heading span {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.location-service-card {
  border: 1px solid rgba(0, 0, 0, .07);
  overflow: hidden;
  transition: .4s;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.location-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(180, 76, 165, .13);
}

.location-service-card-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.location-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.location-service-card:hover .location-service-card-img img {
  transform: scale(1.08);
}

.location-service-card-body {
  padding: 26px 24px 28px;
  background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #b44ca5, #096b6a) 1;
  text-align: center;
}

.location-service-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 10px;
}

.location-service-card-body h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width .4s;
}

.location-service-card:hover .location-service-card-body h3::after {
  width: 70px;
}

.location-service-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.location-service-card-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-align: center;
  transition: .4s;
  text-transform: uppercase;
}

.location-service-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(180, 76, 165, .3);
  color: #fff;
}

@media (max-width: 991px) {
  .location-services-grid { grid-template-columns: repeat(2, 1fr); }
  .location-section-heading { font-size: 42px; }
  .location-services-section { padding: 80px 0; }
}

@media (max-width: 767px) {
  .location-services-grid { grid-template-columns: 1fr; gap: 18px; }
  .location-section-heading { font-size: 34px; }
  .location-services-section { padding: 60px 0; }
  .location-section-label { padding: 0 50px; }
  .location-section-label::before,
  .location-section-label::after { width: 35px; }
}


/* ---------- WHY CHOOSE US ---------- */
.location-why-section {
  padding: 100px 0;
  background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
  overflow: hidden;
}

.location-why-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  position: relative;
}

.location-why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.location-why-img-wrap:hover img {
  transform: scale(1.04);
}

.location-why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, .05));
}

.location-why-img-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #b44ca5, #096b6a);
  border-radius: 14px;
  padding: 18px 24px;
  color: #fff;
  z-index: 2;
}

.location-why-img-badge span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 6px;
}

.location-why-img-badge strong {
  font-size: 22px;
  font-weight: 600;
}

.location-why-content {
  padding: 30px 0 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.location-why-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 14px;
  transition: .4s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}

.location-why-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 28px rgba(180, 76, 165, .12);
}

.location-why-icon {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b44ca5, #096b6a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.location-why-item-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.location-why-item-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .location-why-content { padding: 40px 0 0; }
  .location-why-section { padding: 80px 0; }
  .location-why-img-wrap { min-height: 360px; }
}

@media (max-width: 767px) {
  .location-why-section { padding: 60px 0; }
  .location-why-content { padding: 30px 0 0; }
}


/* ---------- FAQ ---------- */
.location-faq-section {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.location-faq-left {
  position: sticky;
  top: 120px;
}

.location-faq-subtitle {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 70px;
  position: relative;
  margin-bottom: 20px;
}

.location-faq-subtitle::before,
.location-faq-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #ccc;
}

.location-faq-subtitle::before { left: 0; }
.location-faq-subtitle::after  { right: 0; }

.location-faq-heading {
  font-size: 56px;
  font-weight: 300;
  color: #111;
  line-height: 1.2;
  margin-bottom: 40px;
}

.location-faq-heading span {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-faq-contact-box {
  background: #f5f2eb;
  border-radius: 22px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.location-faq-contact-top {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  padding: 26px 32px;
  text-align: center;
}

.location-faq-contact-top h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.location-faq-contact-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.location-faq-contact-item {
  padding: 28px;
}

.location-faq-contact-item:first-child {
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.location-faq-contact-item h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
}

.location-faq-contact-item a {
  color: #096b6a;
  font-size: 15px;
  text-decoration: none;
  transition: .3s;
  word-break: break-word;
}

.location-faq-contact-item a:hover {
  color: #b44ca5;
}

.location-faq-wrapper {
  padding-left: 40px;
}

.location-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 28px 0;
  transition: .3s;
}

.location-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
}

.location-faq-question h3 {
  color: #222;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  transition: .3s;
}

.location-faq-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #096b6a;
  transition: .4s;
  flex-shrink: 0;
}

.location-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.location-faq-answer p {
  color: #444;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 18px;
  max-width: 90%;
}

.location-faq-item.active .location-faq-answer {
  max-height: 300px;
}

.location-faq-item.active .location-faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  color: #fff;
  border-color: transparent;
}

.location-faq-item.active .location-faq-question h3 {
  background: linear-gradient(90deg, #b44ca5, #096b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .location-faq-section { padding: 80px 0; }
  .location-faq-left { position: relative; top: 0; margin-bottom: 50px; }
  .location-faq-wrapper { padding-left: 0; }
  .location-faq-heading { font-size: 42px; }
}

@media (max-width: 767px) {
  .location-faq-section { padding: 60px 0; }
  .location-faq-heading { font-size: 34px; }
  .location-faq-subtitle { padding: 0 45px; }
  .location-faq-subtitle::before,
  .location-faq-subtitle::after { width: 28px; }
  .location-faq-contact-bottom { grid-template-columns: 1fr; }
  .location-faq-contact-item:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }
  .location-faq-contact-item { padding: 22px 20px; }
}.location-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-bullet-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #444;
    line-height: 1.75;
}

.location-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b44ca5, #096b6a);
    flex-shrink: 0;
}

/* ── Ideal For Section ── */
.location-ideal-section {
    padding: 100px 0;
    background: linear-gradient(90deg, rgb(247, 228, 243), rgb(227, 247, 245));
    overflow: hidden;
}

.location-ideal-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 520px;
}

.location-ideal-img-wrap > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.location-ideal-img-wrap:hover > img:first-child {
    transform: scale(1.04);
}

.location-ideal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05));
}

.location-ideal-img-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 160px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    z-index: 2;
}

.location-ideal-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .location-ideal-section { padding: 80px 0; }
    .location-ideal-img-wrap { height: 380px; }
}

@media (max-width: 767px) {
    .location-ideal-section { padding: 60px 0; }
    .location-ideal-img-wrap { height: 300px; margin-bottom: 10px; }
    .location-ideal-img-bottom { width: 120px; height: 90px; }
}
.footer-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 55px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
 
.footer-page-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: letter-spacing 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.footer-page-links a:hover {
    letter-spacing: 1.1px;
    opacity: 0.85;
}
 
/* Pipe separator between links */
.footer-page-links a:not(:last-child)::after {
    content: "|";
    display: inline-block;
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.30);
}
 
@media (max-width: 767px) {
    .footer-page-links {
        margin-top: 40px;
        padding-top: 22px;
    }
 
    .footer-page-links a {
        font-size: 12px;
    }
 
    .footer-page-links a:not(:last-child)::after {
        margin: 0 8px;
    }
}

.float-btn-wrap {
    position: fixed;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}
 
.float-btn-wrap.whatsapp-wrap { bottom: 28px; }
.float-btn-wrap.call-wrap     { bottom: 130px; }
 
/* ── MAIN CIRCLE ── */
.float-btn {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 3;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
 
.float-btn:hover { transform: scale(1.15) rotate(-8deg); }
 
/* WhatsApp gradient */
.float-btn.wa {
    background: conic-gradient(from 0deg, #25D366, #128C7E, #075E54, #25D366);
    box-shadow:
        0 0 0 0 rgba(37,211,102,0.7),
        0 8px 32px rgba(37,211,102,0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: waSpin 8s linear infinite, waPop 3s ease-in-out infinite;
}
 
/* Call gradient */
.float-btn.call {
    background: conic-gradient(from 0deg, #ff8c00, #ff4500, #ff6200, #ffb300, #ff8c00);
    box-shadow:
        0 0 0 0 rgba(255,140,0,0.7),
        0 8px 32px rgba(255,100,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: callSpin 6s linear infinite, callPop 2.5s ease-in-out infinite 0.4s;
}
 
@keyframes waSpin {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
@keyframes callSpin {
    0%   { filter: hue-rotate(0deg) brightness(1); }
    50%  { filter: hue-rotate(30deg) brightness(1.2); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}
@keyframes waPop {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7), 0 8px 32px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.3); }
    50%      { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 12px 40px rgba(37,211,102,0.6), inset 0 1px 0 rgba(255,255,255,0.3); }
}
@keyframes callPop {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,140,0,0.7), 0 8px 32px rgba(255,100,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3); }
    50%      { box-shadow: 0 0 0 14px rgba(255,140,0,0), 0 12px 40px rgba(255,100,0,0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
}
 
/* ── ICON ── */
.float-btn i {
    color: #fff;
    font-size: 26px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.float-btn.call:hover i { animation: ringShake 0.5s ease; }
.float-btn.wa:hover i   { animation: waBounce 0.5s ease; }
 
@keyframes ringShake {
    0%,100% { transform: rotate(0deg); }
    20%     { transform: rotate(-25deg); }
    40%     { transform: rotate(25deg); }
    60%     { transform: rotate(-15deg); }
    80%     { transform: rotate(15deg); }
}
@keyframes waBounce {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.3) rotate(10deg); }
}
 
/* ── ORBIT RINGS ── */
.float-btn::before,
.float-btn::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
 
/* outer slow ring */
.float-btn::before {
    width: 90px;
    height: 90px;
    border: 1.5px solid rgba(255,255,255,0.15);
    animation: orbitOuter 3s linear infinite;
}
 
/* inner fast ring */
.float-btn::after {
    width: 76px;
    height: 76px;
    border: 1px dashed rgba(255,255,255,0.25);
    animation: orbitInner 1.8s linear infinite reverse;
}
 
@keyframes orbitOuter {
    0%   { transform: rotate(0deg) scale(1);    opacity: 0.6; }
    50%  { transform: rotate(180deg) scale(1.06); opacity: 1; }
    100% { transform: rotate(360deg) scale(1);  opacity: 0.6; }
}
@keyframes orbitInner {
    0%   { transform: rotate(0deg);   opacity: 0.4; }
    100% { transform: rotate(360deg); opacity: 0.9; }
}
 
/* ── PARTICLE DOTS ── */
.float-btn-wrap .particles {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
 
.float-btn-wrap .particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    opacity: 0;
}
 
.wa-wrap .particles span { background: #25D366; }
.call-wrap .particles span { background: #ff8c00; }
 

.particles span:nth-child(1)  { top: -18px; left: 50%; transform: translateX(-50%); animation: particle 2.4s ease-in-out infinite 0s; }
.particles span:nth-child(2)  { top: 0;     right: -18px;                           animation: particle 2.4s ease-in-out infinite 0.4s; }
.particles span:nth-child(3)  { bottom: -18px; left: 50%; transform: translateX(-50%); animation: particle 2.4s ease-in-out infinite 0.8s; }
.particles span:nth-child(4)  { top: 0;     left: -18px;                            animation: particle 2.4s ease-in-out infinite 1.2s; }
.particles span:nth-child(5)  { top: -12px; right: -12px;                           animation: particle 2.4s ease-in-out infinite 1.6s; }
.particles span:nth-child(6)  { bottom: -12px; left: -12px;                         animation: particle 2.4s ease-in-out infinite 2.0s; }
 
@keyframes particle {
    0%   { opacity: 0; transform: scale(0.5); }
    40%  { opacity: 1; transform: scale(1.4); }
    100% { opacity: 0; transform: scale(0.2); }
}
 
/* ── TOOLTIP ── */
.float-tooltip {
    position: absolute;
    right: 78px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(15,15,25,0.92);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    letter-spacing: 0.8px;
    padding: 9px 16px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
 
.call-wrap .float-tooltip  { border-left: 3px solid #ff8c00; }
.whatsapp-wrap .float-tooltip { border-left: 3px solid #25D366; }
 
.float-tooltip::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right: none;
    border-left-color: rgba(15,15,25,0.92);
}
 
.float-btn-wrap:hover .float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
 
/* ── GLOW BLOB behind button ── */
.float-blob {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 3s ease-in-out infinite;
}
 
.wa-wrap   .float-blob { background: #25D366; }
.call-wrap .float-blob { background: #ff8c00; animation-delay: 0.8s; }
 
@keyframes blobPulse {
    0%,100% { transform: scale(0.9); opacity: 0.4; }
    50%     { transform: scale(1.2); opacity: 0.7; }
}
 
/* ── MOBILE ── */
@media (max-width: 768px) {
    .float-btn-wrap.whatsapp-wrap { bottom: 18px; right: 16px; }
    .float-btn-wrap.call-wrap     { bottom: 96px; right: 16px; }
    .float-btn { width: 56px; height: 56px; }
    .float-btn i { font-size: 22px; }
    .float-btn::before { width: 78px; height: 78px; }
    .float-btn::after  { width: 66px; height: 66px; }
    .float-tooltip     { display: none; }
    .float-blob        { width: 68px; height: 68px; }
}