/* ============================================
   SKUCCII SUPERCLINIQ - Exact Client Layout CSS
   ============================================ */
:root {
  --dark: #905da7;
  --darker: #2a1e3a;
  --purple: #905da7;
  --purple-deep: #905da7;
  --purple-light: #E9E1F0;
  --purple-bg: #F8F9FD;
  --purple-pale: #F8F9FD;
  --gold: #c9a96e;
  --white: #ffffff;
  --light: #F8F9FD;
  --text: #1F1F1F;
  --text-light: #A8B1CE;
  --text-muted: #1F1F1F;
  --font-heading: "Gotham", "Montserrat", serif;
  --font-body: "Gotham", "Montserrat", sans-serif;
  --font-nav: "Gotham", "Montserrat", sans-serif;
  --transition: all 0.4s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

p {
  font-size: calc(1rem + 2px);
  color: #1F1F1F;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-gif {
  max-width: 250px;
}

/* ========== NAVBAR ========== */
.navbar {
  padding: 10px 0;
  transition: var(--transition);
  background: var(--white);
  border-bottom: none;
  z-index: 1000;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px ;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  height: 70px;
  width: auto;
}

.navbar .navbar-brand {
  margin-right: 0;
  padding: 0;
}

.navbar .navbar-collapse {
  flex-grow: 1;
}

.navbar .nav-link {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 11px !important;
  white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: var(--purple) !important;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(61, 44, 82, 0.12);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 250px;
  background: #fff;
}

.navbar .dropdown-item {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 20px;
  transition: all 0.25s ease;
  color: #1F1F1F;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: #E9E1F0;
  color: #905da7;
}

/* Hide default Bootstrap caret only on sub-menu items (keep on TREATMENTS) */
.navbar .dropdown-menu .dropdown-toggle::after {
  display: none;
}

/* === Hover-open dropdown on desktop === */
@media (min-width: 992px) {

  /* Keep all nav items on a single row so A-LISTER / CONTACT US / BOOK NOW don't break */
  .navbar .navbar-nav {
    flex-wrap: nowrap;
  }

  .navbar .navbar-nav .nav-item {
    white-space: nowrap;
  }

  .navbar .nav-item.ms-lg-4 {
    margin-left: 0.9rem !important;
  }

  /* Make all dropdowns static-positioned relative to the navbar container on desktop */
  .navbar-nav .dropdown {
    position: static !important;
  }

  /* Show dropdown on hover with same transition as treatments */
  .navbar .dropdown:hover>.dropdown-menu:not(.mega-dropdown-menu) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu:not(.mega-dropdown-menu) {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 90%;
    left: auto !important;
    /* Keep horizontal alignment centered under parent link naturally */
    right: auto !important;
    margin-top: 0 !important;
    /* No hardcoded margin-top, aligned exactly same as treatments */
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(144, 93, 167, 0.08) !important;
    border-top: none !important;
    box-shadow: 0 30px 60px rgba(144, 93, 167, 0.12) !important;
    border-radius: 0 0 20px 20px !important;
    padding: 15px 0 !important;
    z-index: 1000;
  }

  /* Same Luxurious Top Gradient Border */
  .navbar .dropdown-menu:not(.mega-dropdown-menu)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #905da7, #b88fcc, #905da7);
  }

  .navbar .dropdown-submenu:hover>.sub-dropdown {
    display: block;
    animation: fadeDropdown 0.25s ease;
  }
}

@keyframes fadeDropdown {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Sub-dropdown (flyout) === */
.dropdown-submenu {
  position: relative;
}

.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  border: none;
  box-shadow: 0 8px 30px rgba(61, 44, 82, 0.12);
  border-radius: 10px;
  padding: 10px 0;
  background: #fff;
}

/* Slim scrollbar for sub-dropdown */
.sub-dropdown::-webkit-scrollbar {
  width: 4px;
}

.sub-dropdown::-webkit-scrollbar-track {
  background: #F8F9FD;
  border-radius: 10px;
}

.sub-dropdown::-webkit-scrollbar-thumb {
  background: #905da7;
  border-radius: 10px;
}

.sub-dropdown::-webkit-scrollbar-thumb:hover {
  background: #905da7;
}

.sub-dropdown {
  scrollbar-width: thin;
  scrollbar-color: #905da7 #F8F9FD;
}

/* Arrow icon inside parent items */
.submenu-arrow {
  font-size: 0.55rem;
  margin-left: 8px;
  opacity: 0.5;
  transition: all 0.25s ease;
}

.dropdown-submenu:hover>a .submenu-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Highlight parent item when submenu shows */
.dropdown-submenu:hover>.dropdown-item {
  background: #E9E1F0;
  color: #905da7;
}

.navbar-right-group {
  display: flex;
  align-items: center;
}

.nav-book-btn {
  background: #905da7;
  color: white;
  padding: 8px 25px;
  border-radius: 25px;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-book-btn:hover {
  background: #905da7;
  color: white;
}

/* Tighten nav spacing on medium laptops so all items fit on one line */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .navbar .container-fluid {
    padding: 0 30px !important;
  }

  .navbar .nav-link {
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    padding: 18px 8px !important;
  }

  .nav-book-btn {
    padding: 8px 18px;
    font-size: 0.7rem;
  }

  .nav-logo {
    height: 58px;
  }

  .navbar .nav-item.ms-lg-4 {
    margin-left: 0.5rem !important;
  }
}

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  width: 26px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  outline: none !important;
  box-shadow: none !important;
}

.toggler-icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--purple);
  transition: all 0.3s ease;
  transform-origin: left center;
}

/* Morphing animation to 'X' close icon when mobile menu opens */
.navbar-toggler:not(.collapsed) .top-bar {
  transform: translateY(8px) rotate(45deg);
  transform-origin: center;
  background-color: var(--purple);
}

.navbar-toggler:not(.collapsed) .middle-bar {
  width: 0%;
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
  transform: translateY(-8px) rotate(-45deg);
  transform-origin: center;
  background-color: var(--purple);
}

/* ========== SHARED BUTTONS ========== */
.btn-skuccii {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--text);
  border: 1.5px solid var(--text);
  padding: 12px 28px;
  text-transform: uppercase;
  background: transparent;
  display: inline-block;
  transition: var(--transition);
  font-weight: 500;
}

.btn-skuccii:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn-skuccii-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-skuccii-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-skuccii-text {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--purple);
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-skuccii-text:hover {
  color: var(--text);
}

/* ====================================================================
   HERO SECTION - Exact Replica
   ==================================================================== */
.hero-wrapper {
  padding: 90px 40px 40px;
  background: var(--white);
}

.hero-container {
  position: relative;
  width: 100%;
  /* max-width: 1400px; */
  /* Commented out to improve layout on big desktop screens */
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  height: 600px;
  background-image: url('../images/home-img/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide {
  display: flex;
  align-items: stretch;
  height: 100%;
  background: transparent;
}


.hero-bg-watermark {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  pointer-events: none;
  width: 800px;
}

.hero-bg-watermark img {
  width: 100%;
  height: auto;
}

.hero-content {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 60px 80px 100px 40px;
  text-align: right;
}

.hero-text-inner {
  text-align: right;
}

.hero-main-title {
  font-family: var(--font-nav);
  font-size: 3.0rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: 3px;
  max-width: 655px;
  margin-left: auto;
  text-transform: uppercase;
}

.hero-sub-text {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 1.5px;
  max-width: 550px;
  margin-left: auto;
}

/* Bottom Right Cutout */
/* Bottom Right Cutout - Commented out as requested */
/*
.hero-bottom-cutout {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--white);
  padding: 30px 40px 0px 40px;
  border-top-left-radius: 40px;
  z-index: 10;
}
*/

.hero-pagination {
  bottom: 30px !important;
  left: 40px !important;
  width: auto !important;
  text-align: left !important;
  z-index: 15;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--white) !important;
  opacity: 0.5;
  margin: 0 5px !important;
  transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background: var(--white) !important;
}

/*
.hero-bottom-cutout::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 20px 20px 0 20px var(--white);
}
*/

.hero-btn-wrap {
  margin-top: 25px;
}

.btn-hero-bottom {
  background: #905da7;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: var(--transition);
}

.btn-hero-bottom:hover {
  background: #905da7;
  color: white;
}

/* ====================================================================
   PERSONALISED CARE STRIP - 1 image left, text right
   ==================================================================== */
.care-strip-section {
  padding: 50px 0px;
  /* padding: 50px 40px 50px 40px; */
  background: var(--white);
}

.care-strip-grid {
  display: flex;
  align-items: stretch;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  background: #E9E1F0;
  border-radius: 30px;
  overflow: hidden;
  flex-wrap: wrap;
}

.care-strip-images {
  flex: 0 0 50%;
  max-width: 50%;
}

.care-img-row {
  display: flex;
  width: 100%;
  height: 100%;
}

.care-img-item {
  flex: 1;
  overflow: hidden;
}

.care-img-item img {
  width: 100%;
  height: 100%;
  /* min-height: 480px; */
  object-fit: cover;
  transition: var(--transition);
}

.care-img-item:hover img {
  transform: scale(1.03);
}

.care-strip-text {
  flex: 1;
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.care-title {
  /* font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  color: #905da7;
  letter-spacing: 6px;
  margin-bottom: 25px;
  text-transform: uppercase; */


  font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.care-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.8;
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}

.btn-skuccii-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: #905da7;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: var(--transition);
}

.btn-skuccii-text:hover {
  color: #905da7;
  text-decoration: underline;
}

/* ====================================================================
   SERVICE CARDS - Swiper Slider
   ==================================================================== */
.services-grid-section {
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(144, 93, 167, 0.08);
}

.services-grid-section .container {
  padding-left: 50px;
  padding-right: 50px;
}

.services-grid-section .swiper {
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.00rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-card-img {
  /* height: 310px; */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card-img img {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.03);
}

.service-card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-tagline {
  font-weight: 600;
}

.services-nav-prev,
.services-nav-next {
  color: #905da7 !important;
  top: 50% !important;
  transform: translateY(-50%);
  margin-top: 0 !important;
}

.services-nav-prev {
  left: 0 !important;
}

.services-nav-next {
  right: 0 !important;
}

.services-nav-prev:after,
.services-nav-next:after {
  font-size: 2.5rem !important;
  font-weight: bold;
}
/* ====================================================================
   HOME DOCTOR TEAM SECTION
   ==================================================================== */
.home-team-section {
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
}

.home-team-section .container {
  padding-left: 50px;
  padding-right: 50px;
}

.home-expert-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); */
  border: 1px solid rgba(144, 93, 167, 0.05);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-expert-card:hover {
  /* transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(144, 93, 167, 0.12); */
  border-color: rgba(144, 93, 167, 0.15);
}

.home-expert-img-wrap {
  width: 100%;
  /* height: 320px; */
  overflow: hidden;
}

.home-expert-img-wrap img {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  transition: var(--transition);
}

.home-expert-card:hover .home-expert-img-wrap img {
  transform: scale(1.04);
}

.home-expert-info {
  padding: 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-expert-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.home-expert-title {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 2.8em;
}

.home-expert-exp {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 12px;
  margin-bottom: 0;
}

.home-team-nav-prev,
.home-team-nav-next {
  color: #905da7 !important;
  top: 50% !important;
  transform: translateY(-50%);
  margin-top: 0 !important;
}

.home-team-nav-prev {
  left: 0 !important;
}

.home-team-nav-next {
  right: 0 !important;
}

.home-team-nav-prev:after,
.home-team-nav-next:after {
  font-size: 2.5rem !important;
  font-weight: bold;
}

/* ====================================================================
   SKUCCII EDGE SECTION
   ==================================================================== */
.skuccii-edge-section {
  padding: 50px 0;
  background: var(--light);
}

.skuccii-edge-section .swiper {
  overflow: hidden;
  margin-top: 10px;
}

.skuccii-edge-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  /* border: 1px solid rgba(144, 93, 167, 0.05); */
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}


.skuccii-edge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(144, 93, 167, 0.12);
  /* border-color: rgba(144, 93, 167, 0.15); */
}

.skuccii-edge-img-wrap {
  width: 100%;
  /* height: 200px; */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f8f9fd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skuccii-edge-img-wrap img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.skuccii-edge-img-wrap img.img-cover {
  object-fit: cover;
}

.skuccii-edge-img-wrap img.img-contain {
  object-fit: contain;
  padding: 15px;
  background: #fff;
}

.skuccii-edge-card:hover .skuccii-edge-img-wrap img {
  transform: scale(1.04);
}


.skuccii-edge-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.skuccii-edge-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .home-team-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 575px) {
  .home-team-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ====================================================================
   DOCTOR SECTION - Full background image with overlaid text
   ==================================================================== */
.doctor-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 520px;
  background-color: var(--white);
}

.doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(186, 155, 201, 0.4) 0%,
      rgba(186, 155, 201, 0.2) 50%,
      rgba(186, 155, 201, 0) 100%);
  z-index: 1;
}

.doctor-section .container {
  position: relative;
  z-index: 2;
}

.doctor-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 520px;
}

.doctor-info {
  flex: 0 0 50%;
  padding: 60px 60px 60px 0;
}

.doctor-name {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: #905da7;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.doctor-bio {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  color: #905da7;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Doctor Bottom Cutout - Commented out as requested */
/*
.doctor-bottom-cutout {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
  padding: 30px 40px 0px 80px;
  border-top-right-radius: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
}

.doctor-bottom-cutout::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-bottom-left-radius: 40px;
  box-shadow: -20px 20px 0 20px var(--white);
}
*/

.doctor-btn-wrap {
  margin-top: 25px;
}

.btn-pill-purple {
  background: #905da7;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1.5px;
  /* text-transform: lowercase; */
  transition: var(--transition);
}

.btn-pill-purple:hover {
  background: #905da7;
  color: var(--white);
}

/* ====================================================================
   CELEBRITY HIGHLIGHTS - Circular photos carousel
   ==================================================================== */
/* ====================================================================
   WHY SKUCCII
   ==================================================================== */
.why-skuccii-section {
  padding: 50px 0;
  background: #F8F9FD;
}

.why-skuccii-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.why-skuccii-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: var(--transition);
  border-color: rgba(144, 93, 167, 0.12);
}

.why-skuccii-card:hover {
  transform: translateY(-6px);
  /* border-color: rgba(144, 93, 167, 0.12); */
       /* box-shadow: 0 15px 40px rgba(144, 93, 167, 0.08); */
}

.why-skuccii-icon {  
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #905da7, #b88fcc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
}

.why-skuccii-card:hover .why-skuccii-icon {
  transform: scale(1.1);
}

.why-skuccii-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.why-skuccii-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .why-skuccii-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .why-skuccii-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-skuccii-card {
    padding: 30px 20px;
  }
}

/* ====================================================================
   BRINGING THE WORLD'S BEST
   ==================================================================== */
.worlds-best-section {
  padding: 50px 0 50px 0;
  background: #F8F9FD;
}

.worlds-best-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.worlds-best-card {
  padding: 30px 40px;
  background: #F8F9FD;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: var(--transition);
    border-color: rgba(144, 93, 167, 0.1);
    box-shadow: 0 15px 40px rgba(144, 93, 167, 0.08);
}

/* .worlds-best-card:hover {
  border-color: rgba(144, 93, 167, 0.1);
  box-shadow: 0 15px 40px rgba(144, 93, 167, 0.08);
} */

.worlds-best-card h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--purple);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.worlds-best-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 767px) {
  .worlds-best-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .worlds-best-card {
    padding: 30px 25px;
  }
  .worlds-best-card h2 {
    font-size: 1.3rem;
  }
  .worlds-best-section {
    padding: 0 0 40px 0;
  }
}

.celeb-highlights-section {
  padding: 50px 0 0 0;
  background: var(--white);
  overflow: hidden;
}

.celeb-highlights-section .container {
  padding-left: 50px;
  padding-right: 50px;
}

.celeb-main-title {
  text-align: center;
  /* font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: #905da7;
  margin-bottom: 25px; */

    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.celeb-subtitle {
  text-align: center;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  color: #1F1F1F;
  line-height: 1.8;
}

.celeb-card {
  text-align: center;
  padding: 10px;
}

.celeb-card-img {
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto 25px;
}

.celeb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%); */
  transition: var(--transition);
}

.celeb-card:hover .celeb-card-img img {
  filter: grayscale(0%);
}

.celeb-card-name {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #1F1F1F;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.celeb-card-desc {
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.celeb-nav-prev,
.celeb-nav-next {
  color: #905da7 !important;
  top: 60% !important;
  transform: translateY(-50%);
}

.celeb-nav-prev {
  left: 0 !important;
}

.celeb-nav-next {
  right: 0 !important;
}

.celeb-nav-prev:after,
.celeb-nav-next:after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

.celeb-highlights-section .container {
  padding-left: 50px;
  padding-right: 50px;
}

/* ====================================================================
   TREATMENTS - Purple bg, card carousel
   ==================================================================== */
.treatments-section {
  padding: 50px 0;
  background: #F8F9FD;
  overflow: hidden;
}

.treatments-section .container {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}

.treatments-section .swiper {
  overflow: hidden;
}

.treatments-header {
  text-align: center;
  margin-bottom: 45px;
}

.treatments-title {
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: #905da7;
  margin-bottom: 15px;
}

.treatments-subtitle {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #1F1F1F;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.treatment-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.treatment-card-img {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.treatment-card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.treatment-card:hover .treatment-card-img img {
  transform: scale(1.05);
}

.treatment-img-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-nav);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.treatment-card-body {
  padding: 0;
  text-align: left;
}

.treatment-card-body p {
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.6;
  margin-bottom: 20px;
}

.treat-nav-prev,
.treat-nav-next {
  color: #905da7 !important;
  top: 55% !important;
  transform: translateY(-50%);
  margin-top: 0 !important;
}

.treat-nav-prev {
  left: 0 !important;
}

.treat-nav-next {
  right: 0 !important;
}

.treat-nav-prev:after,
.treat-nav-next:after {
  font-size: 2.5rem !important;
  font-weight: bold;
}

/* ====================================================================
   VIP ACCESS / A-LISTER
   ==================================================================== */
.vip-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.vip-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 30, 58, 0.45);
  z-index: 1;
}

.vip-section .container {
  position: relative;
  z-index: 2;
}

.vip-content {
  max-width: 500px;
  padding: 40px 0;
}

.vip-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.vip-desc {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 35px;
  text-transform: uppercase;
}

/* ====================================================================
   TECHNOLOGY
   ==================================================================== */
.tech-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 30, 58, 0.45);
  z-index: 1;
}

.tech-section .container {
  position: relative;
  z-index: 2;
}

.tech-content {
  max-width: 500px;
  /* margin-left: auto; */
  padding: 40px 0;
  text-align: left;
}

.tech-title {
  font-family: var(--font-nav);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 20px;
}

.tech-desc {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 35px;
}

.btn-pill-white {
  background: var(--white);
  color: #905da7;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-pill-white:hover {
  background: #f0f0f0;
  color: #905da7;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--white);
  color: #1F1F1F;
  padding: 25px 0 25px;
  border-top: 1px solid #f0f0f0;
}

.footer-social {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 25px;
}

.social-text {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #1F1F1F;
  margin-right: 20px;
  text-transform: uppercase;
}

.social-icons {
  display: inline-flex;
  gap: 15px;
  vertical-align: middle;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #905da7;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--purple);
}

.footer-logo-wrap {
  text-align: left;
  margin-bottom: 18px;
}

.footer-logo {
  height: 50px;
}

.footer-tagline,
.footer-sub-tagline {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-tagline {
  letter-spacing: 1px;
}

.footer-heading {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1F1F1F;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact li,
.footer-contact a {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  color: #1F1F1F;
  text-decoration: none;
  line-height: 1.6;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--purple);
}

.footer-bottom {
  text-align: left;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #1F1F1F;
  margin: 0;
}

.footer-bottom a {
  color: #1F1F1F;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--purple);
}

/* ====================================================================
   FLOATING / STICKY BUTTONS
   ==================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.contact-side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right bottom;
  z-index: 998;
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  font-family: var(--font-nav);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-side-tab:hover {
  /* background: var(--gold);
  color: var(--dark); */
}

.call-now-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.call-now-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* FADE ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1199.98px) {
  .hero-main-title {
    font-size: 3rem;
  }

  .hero-content-wrap {
    padding: 0 25px;
  }



  .vip-text-side {
    padding: 50px 35px 50px 50px;
  }

  .vip-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 991.98px) {
  .nav-logo {
    height: 50px;
  }
 .navbar .container-fluid {
    padding: 0 30px !important;
  }
  .navbar .navbar-collapse {
    background: var(--white);
    padding: 20px;
    margin-top: 10px;
    border-top: 1px solid #eee;
  }

  .navbar-right-group {
    margin-left: auto;
  }

  .navbar-social {
    margin-top: 0;
  }

  /* Hero responsive */
  .hero-overlay {
    width: 100%;
    background: rgba(225, 215, 238, 0.8);
  }

  .hero-content-wrap {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 30px 20px 0;
  }

  .hero-text-side {
    padding-right: 0;
    margin-bottom: 25px;
    flex: 0 0 auto;
  }

  .hero-sub-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .btn-hero {
    align-self: center;
  }

  .hero-brand-label {
    display: none;
  }

  /* Care strip responsive */
  .care-strip-grid {
    flex-direction: column;
    gap: 10px;
  }

  .care-strip-images {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .care-strip-text {
    text-align: center;
    padding: 30px 20px;
  }

  /* Doctor responsive */
  .doctor-section {
    background-image: none !important;
    background-color: #F8F9FD !important;
    min-height: auto !important;
    padding: 0 !important;
  }

  .doctor-overlay {
    display: none !important;
  }

  .doctor-mobile-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .doctor-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
  }

  .doctor-layout {
    min-height: auto !important;
    display: block !important;
  }

  .doctor-info {
    flex: 0 0 100% !important;
    text-align: center !important;
    padding: 40px 20px !important;
  }

  .doctor-name {
    font-size: 1.6rem !important;
    color: #905da7 !important;
    margin-bottom: 15px !important;
  }

  .doctor-bio {
    color: #1F1F1F !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  .doctor-bio br {
    display: none !important;
  }

  .btn-skuccii-white {
    color: var(--text);
    border-color: var(--text);
  }

  .btn-skuccii-white:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
  }

  /* Footer Social Center alignment */
  .footer-social {
    text-align: center !important;
  }

  .social-text {
    display: block !important;
    margin-right: 0 !important;
    margin-bottom: 15px !important;
  }

  /* Other responsive */
  .tech-grid {
    flex-direction: column;
    gap: 30px;
  }

  .vip-layout {
    flex-direction: column;
  }

  .vip-text-side {
    flex: 0 0 auto;
    padding: 50px 30px;
    text-align: center;
    align-items: center;
  }

  .btn-vip {
    align-self: center;
  }

  .vip-images-side {
    height: 350px;
  }

  .vip-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {

  /* Hero section stacked mobile view */
  .hero-wrapper {
    padding: 90px 15px 15px !important;
  }

  .hero-container {
    height: 560px !important;
    background-color: #fbf5fd !important;
    background-image: none !important;
  }

  .hero-slide {
    background-image: none !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    height: 600px !important;
    min-height: 600px !important;
    border-radius: 20px;
    position: relative;
    padding-top: 0 !important;
  }

  .hero-bg-image {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    flex-shrink: 0;
    order: 1;
  }

  .hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
  }

  .hero-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-bg-watermark {
    position: absolute;
    top: 75% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 400px !important;
    opacity: 0.05 !important;
    z-index: 1;
  }


  .hero-content {
    position: static !important;
    padding: 25px 25px 25px !important;
    display: block !important;
    width: 100% !important;
    order: 2;
  }

  .hero-text-col {
    padding: 0 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .hero-text-inner {
    text-align: center !important;
  }

  .hero-main-title {
    font-size: 1.8rem !important;
    color: var(--purple) !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    letter-spacing: 1px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-sub-text {
    font-size: 0.9rem !important;
    color: var(--purple) !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-btn-wrap {
    text-align: center !important;
    margin-top: 15px !important;
  }

  .btn-hero-bottom {
    background: #905da7 !important;
    color: var(--white) !important;
    padding: 12px 35px !important;
    font-size: 0.9rem !important;
    border-radius: 50px !important;
    letter-spacing: 1.5px !important;
  }

  .btn-hero-bottom:hover {
    background: #905da7 !important;
    color: var(--white) !important;
  }

  .hero-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 20px !important;
    text-align: center !important;
  }

  .hero-pagination .swiper-pagination-bullet {
    background: var(--purple) !important;
  }

  .hero-pagination .swiper-pagination-bullet-active {
    background: var(--purple) !important;
  }



  /* .service-card-img {
    height: 140px;
  } */

  .care-img-item img {
    height: 250px;
  }

  .celeb-card-img {
    width: 100%;
    height: auto;
  }

  .treatment-card-img {
    height: 170px;
  }

  .vip-images-side {
    height: 280px;
  }

  .vip-title {
    font-size: 2rem;
  }

  .contact-side-tab {
    display: none;
  }

  .services-nav-prev:after,
  .services-nav-next:after {
    font-size: 1.5rem !important;
    font-weight: bold;
  }

  .celeb-nav-prev:after,
  .celeb-nav-next:after {
    font-size: 1.5rem !important;
    font-weight: bold;
  }

  .care-strip-section,
  .services-grid-section,
  .doctor-section,
  .celeb-highlights-section,
  .treatments-section,
  .vip-section,
  .tech-section,
  .featured-section,
  .featured-video-section,
  .testimonial-section {
    padding: 40px 0;
  }

  .care-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .nav-logo {
    height: 60px;
  }

  .navbar-social {
    display: none !important;
  }

  .hero-main-title {
    font-size: 1.4rem !important;
  }



  .care-img-row {
    flex-direction: column;
  }

  .care-img-item img {
    height: 220px;
  }

  .vip-images-side {
    flex-direction: column;
    height: auto;
  }

  .vip-img-card,
  .vip-img-model {
    height: 250px;
  }
}

/* FEATURED ON */
.featured-section {
  background: var(--white);
  padding: 50px 0;
}

.featured-title {
  /* text-align: center;
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: #905da7;
  margin-bottom: 40px;
  text-transform: uppercase; */

      text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-section .featuredSwiper {
  /* padding-bottom: 40px; */
}

.featured-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100px; */
}

.featured-section .swiper-slide img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: var(--transition);
}

.featured-section .swiper-slide img:hover {
  filter: grayscale(0%);
}

.featured-section .swiper-pagination {
  bottom: 0 !important;
}

.featured-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #b5b5b5 !important;
  opacity: 1;
  margin: 0 6px !important;
}

.featured-section .swiper-pagination-bullet-active {
  background: #333 !important;
}

/* AWARDS & CERTIFICATES */
.awards-section {
  background: #f8f6fb;
  padding: 60px 0;
}

.awards-section .awardsSwiper {
  padding-bottom: 10px;
}

.awards-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(144, 93, 167, 0.08);
  background: #fff;
  transition: var(--transition);
}

.award-card:hover {
  box-shadow: 0 12px 40px rgba(144, 93, 167, 0.15);
  transform: translateY(-4px);
}

.award-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.awards-section .swiper-button-prev,
.awards-section .swiper-button-next {
  color: var(--purple);
  width: 40px;
  height: 40px;
}

.awards-section .swiper-button-prev::after,
.awards-section .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

/* FEATURED VIDEO SECTION */
.featured-video-section {
  padding: 0 0 50px 0px;
  background: var(--white);
}

.video-wrap {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* TESTIMONIALS */
.testimonial-section {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid rgba(144, 93, 167, 0.08);
}

.section-title {
  text-align: center;
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: #905da7;
  margin-bottom: 45px;
  text-transform: uppercase;
}

.testimonial-card {
  background: #E9E1F0;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  text-align: left;
  max-width: 100%;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 25px;
  height: 120px;
  overflow-y: auto;
  padding-right: 8px;
}

.testimonial-card p::-webkit-scrollbar {
  width: 4px;
}

.testimonial-card p::-webkit-scrollbar-track {
  background: #E9E1F0;
  border-radius: 10px;
}

.testimonial-card p::-webkit-scrollbar-thumb {
  background: #905da7;
  border-radius: 10px;
}

.testimonial-card p::-webkit-scrollbar-thumb:hover {
  background: #905da7;
}

.testimonial-card p {
  scrollbar-width: thin;
  scrollbar-color: #905da7 #E9E1F0;
}

.testimonial-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  margin-right: 15px;
}

.testimonial-card h5 {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #905da7;
  margin: 0;
  font-weight: 600;
}

.testimonial-card .stars {
  color: #A8B1CE;
  font-size: 0.7rem;
  margin-bottom: 0;
}

.testimonial-section .container {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}

.testi-nav-prev,
.testi-nav-next {
  color: #905da7 !important;
  top: 70% !important;
  transform: translateY(-50%);
}

.testi-nav-prev {
  left: 0 !important;
}

.testi-nav-next {
  right: 0 !important;
}

.testi-nav-prev:after,
.testi-nav-next:after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

/* ====================================================================
   PODCASTS
   ==================================================================== */
.podcast-section {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid rgba(144, 93, 167, 0.08);
}

.podcast-card {
  background: #E9E1F0;
  border-radius: 12px;
  padding: 15px;
  position: relative;
  max-width: 100%;
}

.podcast-card .ratio {
  border-radius: 8px;
  overflow: hidden;
}

.podcast-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-swiper-outer-wrap {
  position: relative;
  padding: 0 50px;
}

.podcast-section .container {
  position: relative;
}

.podcast-nav-prev,
.podcast-nav-next {
  color: #905da7 !important;
  top: 60% !important; /* perfectly aligned vertically to center of the swiper */
  transform: translateY(-50%);
}

.podcast-nav-prev {
  left: 0 !important;
}

.podcast-nav-next {
  right: 0 !important;
}

.podcast-nav-prev:after,
.podcast-nav-next:after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

.podcast-btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.btn-podcast-all {
  display: inline-block;
  padding: 12px 35px;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--white);
  background: #905da7;
  border-radius: 30px;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}

.btn-podcast-all:hover {
  background: #7a4691;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(144, 93, 167, 0.2);
}

/* ====================================================================
   PAGE HERO BANNER (Shared: About & Contact)
   ==================================================================== */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(144, 93, 167, 0.40) 0%,
      rgba(42, 30, 58, 0.35) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.page-hero-subtitle {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2.5px;
  margin-bottom: 25px;
}

.page-hero-breadcrumb {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.page-hero-breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb-separator {
  margin: 0 10px;
  opacity: 0.5;
}

/* Shared section label */
.section-label {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
  position: relative;
  padding-left: 45px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1.5px;
  background: var(--purple);
  transform: translateY(-50%);
}

/* ====================================================================
   ABOUT PAGE - OUR STORY
   ==================================================================== */
.about-story-section {
  padding: 100px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.about-story-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.9;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.about-story-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(144, 93, 167, 0.15);
}

.about-story-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.about-story-img-wrap:hover img {
  transform: scale(1.03);
}

.about-story-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: var(--purple-light);
  z-index: -1;
}

.about-story-image {
  position: relative;
}

/* ====================================================================
   ABOUT PAGE - DOCTOR SECTION
   ==================================================================== */
.about-doctor-section {
  background: #F8F9FD;
  overflow: hidden;
}

.about-doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-doctor-img-col {
  overflow: hidden;
}

.about-doctor-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-doctor-img-col:hover img {
  transform: scale(1.02);
}

.about-doctor-text-col {
  display: flex;
  align-items: center;
  padding: 60px 80px;
}

.about-doctor-inner {
  max-width: 520px;
}

.about-doctor-name {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.about-doctor-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.85;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.about-doctor-credentials {
  display: flex;
  gap: 35px;
  margin: 35px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(144, 93, 167, 0.15);
  border-bottom: 1px solid rgba(144, 93, 167, 0.15);
}

.credential-item {
  text-align: center;
}

.credential-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.2;
}

.credential-text {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ====================================================================
   ABOUT PAGE - PHILOSOPHY / VALUES
   ==================================================================== */
.about-values-section {
  padding: 100px 0;
  background: var(--white);
}

.about-values-header {
  text-align: center;
  margin-bottom: 65px;
}

.about-values-title {
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--purple);
  margin-bottom: 18px;
}

.about-values-subtitle {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #1F1F1F;
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-value-card {
  text-align: center;
  padding: 45px 25px;
  border-radius: 20px;
  background: #F8F9FD;
  transition: var(--transition);
  border: 1px solid transparent;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144, 93, 167, 0.12);
  border-color: rgba(144, 93, 167, 0.1);
}

.value-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #905da7, #b88fcc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
}

.about-value-card:hover .value-icon-wrap {
  transform: scale(1.1);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.value-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ====================================================================
   ABOUT PAGE - AWARDS
   ==================================================================== */
.about-awards-section {
  padding: 80px 0;
  background: #F8F9FD;
}

.about-awards-header {
  text-align: center;
  margin-bottom: 55px;
}

.about-awards-title {
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--purple);
}

.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.award-card {
  text-align: center;
  /* padding: 40px 20px; */
  /* background: var(--white); */
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid rgba(144, 93, 167, 0.08);
}

.award-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 15px 40px rgba(144, 93, 167, 0.1); */
}

.award-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.award-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.award-detail {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.5px;
}

/* ====================================================================
   ABOUT PAGE - CTA BANNER (also used in Contact)
   ==================================================================== */
.about-cta-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.about-cta-content {
  max-width: 550px;
  padding: 40px 0;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-cta-desc {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

/* ====================================================================
   CONTACT PAGE - INFO CARDS
   ==================================================================== */
.contact-info-section {
  padding: 50px 0;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  text-align: center;
  padding: 50px 30px;
  background: #F8F9FD;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(144, 93, 167, 0.12);
  border-color: rgba(144, 93, 167, 0.1);
}

.contact-info-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #905da7, #b88fcc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #1F1F1F;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.contact-info-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1F1F1F;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-info-text a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-text a:hover {
  color: #1F1F1F;
}

.contact-info-subtext {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  color: #999;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ====================================================================
   CONTACT PAGE - FORM + MAP
   ==================================================================== */
.contact-form-section {
  padding: 50px 0 50px;
  background: #F8F9FD;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.contact-form-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Form Fields */
.skuccii-form .form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.skuccii-form .form-field {
  margin-bottom: 20px;
}

.skuccii-form .form-row-group .form-field {
  margin-bottom: 0;
}

.skuccii-form label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1F1F1F;
  margin-bottom: 8px;
}

.skuccii-form input,
.skuccii-form select,
.skuccii-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #1F1F1F;
  background: var(--white);
  border: 1.5px solid #e0d8e6;
  border-radius: 12px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.skuccii-form input:focus,
.skuccii-form select:focus,
.skuccii-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(144, 93, 167, 0.1);
}

.skuccii-form input::placeholder,
.skuccii-form textarea::placeholder {
  color: #b5b5b5;
}

.skuccii-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23905da7' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.skuccii-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 15px 45px;
  margin-top: 10px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(144, 93, 167, 0.3);
}

/* Map */
.contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.contact-map-wrap iframe {
  border-radius: 20px;
}

.contact-map-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 25px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(144, 93, 167, 0.08);
  transition: var(--transition);
}

.map-info-item:hover {
  box-shadow: 0 8px 25px rgba(144, 93, 167, 0.08);
}

.map-info-item i {
  font-size: 1.2rem;
  color: var(--purple);
  margin-top: 2px;
  flex-shrink: 0;
}

.map-info-item h4 {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1F1F1F;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.map-info-item p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ====================================================================
   ABOUT & CONTACT - RESPONSIVE
   ==================================================================== */
@media (max-width: 1199.98px) {
  .about-story-grid {
    gap: 50px;
  }

  .about-doctor-text-col {
    padding: 50px 50px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .page-hero {
    min-height: 90vh;
    margin-top: 80px;
  }

  .page-hero-title {
    font-size: 2.5rem;
    letter-spacing: 6px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-image {
    order: -1;
  }

  .about-story-img-wrap img {
    height: 350px;
  }

  .about-doctor-grid {
    grid-template-columns: 1fr;
  }

  .about-doctor-img-col {
    height: 400px;
  }

  .about-doctor-text-col {
    padding: 50px 40px;
  }

  .about-doctor-name {
    font-size: 2.5rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    min-height: 90vh;
    margin-top: 70px;
  }

  .page-hero-title {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .about-story-title {
    font-size: 2rem;
  }

  .about-story-section {
    padding: 60px 0;
  }

  .about-values-section {
    padding: 60px 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-awards-grid {
    grid-template-columns: 1fr;
  }

  .about-doctor-credentials {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-cta-title {
    font-size: 2.2rem;
  }

  .contact-form-title {
    font-size: 1.4rem !important;
    letter-spacing: 4px !important;
  }

  .skuccii-form .form-row-group {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .page-hero-title {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .about-story-img-wrap img {
    height: 260px;
  }

  .about-doctor-img-col {
    height: 300px;
  }

  .about-doctor-text-col {
    padding: 40px 20px;
  }

  .about-doctor-name {
    font-size: 2rem;
  }

  .about-cta-title {
    font-size: 1.8rem;
  }

  .credential-number {
    font-size: 1.6rem;
  }
}

/* ====================================================================
   PAGE HERO - Category label (for treatment pages)
   ==================================================================== */
.page-hero-category {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* ====================================================================
   TREATMENT PAGE - INTRO SECTION
   ==================================================================== */
.treat-intro-section {
  padding: 50px 0 20px 0;
  background: var(--white);
}

.treat-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.treat-intro-title {
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 6px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.treat-intro-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1F1F1F;
  line-height: 1.9;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.treat-intro-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.treat-intro-img-wrap img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.treat-intro-img-wrap:hover img {
  transform: scale(1.03);
}

/* ====================================================================
   TREATMENT PAGE - BENEFITS
   ==================================================================== */
.treat-benefits-section {
  padding: 25px 0;
  background: #F8F9FD;
}
@media (max-width: 767px) {
.treat-benefits-section   {
  padding: 30px 0;
}
}
.treat-benefits-header {
  text-align: center;
  margin-bottom: 10px;
}

.treat-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.treat-benefit-card {
  background: var(--white);
  padding: 30px 30px;
  border-radius: 20px;
  border: 1px solid rgba(144, 93, 167, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.treat-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), #b88fcc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.treat-benefit-card:hover::before {
  transform: scaleX(1);
}

.treat-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(144, 93, 167, 0.1);
}

.treat-benefit-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(144, 93, 167, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.treat-benefit-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.treat-benefit-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
}


/* ====================================================================
   TREATMENT PAGE - SCAR TYPES
   ==================================================================== */
.treat-types-section {
  padding: 50px 0;
 background: #F8F9FD;
}

.treat-types-header {
  text-align: center;
}

.treat-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.treat-type-card {
  text-align: center;
  padding: 25px 25px;
  border-radius: 20px;
  background: #F8F9FD;
  transition: var(--transition);
  border: 1px solid transparent;
}

.treat-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144, 93, 167, 0.12);
  border-color: rgba(144, 93, 167, 0.1);
}

.treat-type-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #905da7, #b88fcc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.treat-type-card:hover .treat-type-icon {
  transform: scale(1.1) rotate(5deg);
}

.treat-type-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.treat-type-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

/* ====================================================================
   TREATMENT PAGE - METHODS
   ==================================================================== */
.treat-methods-section {
  padding: 50px 0;
  background: #F8F9FD;
}

.treat-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.treat-methods-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(144, 93, 167, 0.12);
}

.treat-methods-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition);
}

.treat-methods-image:hover img {
  transform: scale(1.03);
}

.treat-method-list {
  margin-top: 30px;
}

.treat-method-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(144, 93, 167, 0.1);
  transition: var(--transition);
}

.treat-method-item:last-child {
  border-bottom: none;
}

.treat-method-item:hover {
  padding-left: 8px;
}

.method-marker {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 6px;
}

.treat-method-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.treat-method-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ====================================================================
   TREATMENT PAGE - CTA STRIP
   ==================================================================== */
/* ====================================================================
   TREATMENT PAGE - CTA STRIP (Redesigned Split Layout)
   ==================================================================== */
.treat-cta-strip {
  padding: 50px 0;
  background: #F8F9FD;
}

.treat-cta-grid {
  display: grid;
  /* grid-template-columns: 1.1fr 0.9fr; */
  gap: 50px;
  align-items: center;
}

.prime-areas-grid {
  grid-template-columns: 1.1fr 0.9fr;
}


.treat-cta-text h2 {

  text-transform: uppercase !important;
      text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.treat-cta-text p {
  font-family: var(--font-body);
  font-size: calc(1rem + 1px);
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.treat-cta-text p:last-child {
  margin-bottom: 0;
}

.treat-cta-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(144, 93, 167, 0.08);
}

.treat-cta-image img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  transition: var(--transition);
}

.treat-cta-image:hover img {
  transform: scale(1.03);
}

/* ====================================================================
   TREATMENT PAGE - GENERIC SECTION TITLE
   ==================================================================== */
.treat-section-title {
  text-align: center;
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 6px;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .treat-section-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 4px;
  }
}

/* ====================================================================
   TREATMENT PAGE - BEFORE & AFTER GALLERY
   ==================================================================== */
.treat-before-after-section {
  padding: 50px 0;
  background: var(--white);
}

.treat-before-after-header {
  text-align: center;
  margin-bottom: 40px;
}

.before-after-slider {
  position: relative;
  padding: 20px 0 50px 0;
}

.before-after-card {
  /* border-radius: 16px; */
  overflow: hidden;
  /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); */
  transition: var(--transition);
  background: var(--white);
  /* border: 1px solid rgba(144, 93, 167, 0.08); */
}

.before-after-card:hover {
  /* transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(144, 93, 167, 0.12); */
}

.before-after-card img {
  width: 100%;
  height: auto;
  display: block;
  /* filter: grayscale(100%); */
  transition: filter 0.5s ease, transform 0.4s ease;
}

/* .before-after-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
} */

/* Swiper navigation & pagination customizations */
.before-after-slider .swiper-pagination-bullet {
  background: var(--purple-light);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: var(--transition);
}

.before-after-slider .swiper-pagination-bullet-active {
  background: var(--purple);
  width: 25px;
  border-radius: 5px;
}

.ba-nav-prev,
.ba-nav-next {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(144, 93, 167, 0.15);
  color: var(--purple);
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ba-nav-prev {
  left: 0px;
}

.ba-nav-next {
  right: 0px;
}

.ba-nav-prev:hover,
.ba-nav-next:hover {
  background: var(--purple);
  color: var(--white);
}

.ba-nav-prev:after,
.ba-nav-next:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.1rem;
}

.ba-nav-prev:after {
  content: "\f053";
}

.ba-nav-next:after {
  content: "\f054";
}

@media (max-width: 1200px) {
  .ba-nav-prev {
    left: 0px;
  }

  .ba-nav-next {
    right: 0px;
  }
}

/* ====================================================================
   TREATMENT PAGE - FAQ
   ==================================================================== */
.treat-faq-section {
  padding: 50px 0;
  background: var(--white);
}

.treat-faq-header {
  text-align: center;
}

.treat-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.treat-faq-item {
  border-bottom: 1px solid rgba(144, 93, 167, 0.12);
}

.treat-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: #1F1F1F;
  text-align: left;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.treat-faq-question:hover {
  color: var(--purple);
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--purple);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 20px;
}

.treat-faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.treat-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}

.treat-faq-item.active .treat-faq-answer {
  max-height: 600px;
  padding: 0 0 25px 0;
}

.treat-faq-answer p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.treat-faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.treat-faq-answer ul li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  padding: 6px 0 6px 20px;
  position: relative;
}

.treat-faq-answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

/* ====================================================================
   BENEFITS + VIDEO (video shown to the right of a benefits section)
   ==================================================================== */
.benefits-video-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-video-row .bv-benefits {
  flex: 1 1 30%;
  min-width: 300px;
}

.benefits-video-row .bv-video {
  flex: 1 1 0;
  min-width: 280px;
  position: sticky;
  top: 120px;
}

.benefits-video-row .bv-video video {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits-video-row .bv-video .bv-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits-video-row .bv-video .bv-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Let benefit lists fill the benefits column when shown beside a video */
.benefits-video-row .bv-benefits .emsculpt-benefit-item,
.benefits-video-row .bv-benefits .emerald-why-list {
  max-width: none;
  margin: 0;
}

.benefits-video-row .bv-video .emsculpt-video-wrap {
  max-width: none;
  margin: 0;
}

.emsculpt-video-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  cursor: pointer;
}

.emsella-images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.emsella-product-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emsella-product-img,
.emsella-treatment-img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.emsella-tagline {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 12px;
}

@media (max-width: 767.98px) {
  .emsella-product-img,
  .emsella-treatment-img {
    max-width: 100%;
  }
}

.emsella-video-wrap {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.emsella-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.emsella-video-wrap iframe {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.emsculpt-video-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.emsculpt-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.emsculpt-video-wrap:hover .emsculpt-video-play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.emsculpt-video-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #7b5ea7;
  margin-left: 4px;
}

.emsculpt-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991.98px) {

  .benefits-video-row .bv-benefits,
  .benefits-video-row .bv-video {
    flex-basis: 100%;
    position: static;
  }
}

/* ====================================================================
   HYDRAFACIAL SYNDEO PAGE
   ==================================================================== */
.hydrafacial-intro .container {
  max-width: 980px;
}

.hydrafacial-intro .treat-section-title,
.hydrafacial-why .treat-section-title,
.hydrafacial-best .treat-section-title,
.hydrafacial-whyskuccii .treat-section-title,
.hydrafacial-machine .treat-section-title {
  text-align: left;
  margin-bottom: 20px;
}

.hydrafacial-why {
  background: #fcf8ff;
}

.hydrafacial-why .treat-cta-image img,
.hydrafacial-machine .treat-cta-image img,
.hydrafacial-whyskuccii .treat-cta-image img,
.hydrafacial-single .treat-cta-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .hydrafacial-whyskuccii .treat-cta-grid {
    grid-template-columns: 30% 1fr;
  }

  .hydrafacial-single .treat-cta-grid {
    grid-template-columns: 40% 1fr;
  }
}

.hydrafacial-best {
  background: #fcf8ff;
}

.hydrafacial-best .container {
  max-width: 980px;
}

.hydrafacial-best ul {
  list-style: disc;
  padding-left: 25px;
  margin-top: 15px;
}

.hydrafacial-best ul li {
  margin-bottom: 12px;
}

.hydrafacial-single .treat-cta-text {
  text-align: center;
}

.hydrafacial-single .award-badge {
  max-width: 200px;
  margin: 25px auto 0;
  display: block;
}

.hydrafacial-single .award-label {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #905da7;
  font-weight: 600;
  letter-spacing: 1px;
}

.bv-video img {
  width: 100%;
  border-radius: 12px;
}

.facials-beginning-section {
  background: #fcf8ff;
}

/* ====================================================================
   HYDRAFACIAL - FACIALS ARE JUST THE BEGINNING
   ==================================================================== */
.facials-beginning-header {
  text-align: center;
}

.facials-beginning-header p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.facials-beginning-img {
  width: 100%;
  margin-bottom: 30px;
}

.facials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.facial-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.facial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facial-card-label {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .facials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .facials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ====================================================================
   TREATMENT PAGE - RESPONSIVE
   ==================================================================== */
@media (max-width: 1199.98px) {
  .treat-intro-grid {
    gap: 50px;
  }

  .treat-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treat-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .treat-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treat-intro-image {
    order: -1;
  }

  .treat-intro-img-wrap img {
    height: 350px;
  }

  .treat-methods-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treat-methods-image img {
    height: 380px;
  }

  .treat-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .treat-cta-image img {
    height: 350px;
  }

  .mobile-image-first .treat-cta-image {
    order: -1;
  }

  .prime-areas-grid {
    grid-template-columns: 1fr;
  }



  .treat-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .treat-intro-section {
    padding: 30px 0;
  }

  .treat-benefits-section {
    padding: 30px 0;
  }

  .treat-types-section {
    padding: 30px 0;
  }

  .treat-methods-section {
    padding: 30px 0;
  }

  .treat-faq-section {
    padding: 30px 0;
  }

  .scar-booking-section {
    padding: 40px 0;
  }

  .treat-intro-title {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }

  .treat-types-grid {
    grid-template-columns: 1fr;
  }

  .treat-intro-img-wrap img {
    height: 280px;
  }

  .treat-methods-image img {
    height: 300px;
  }

  .treat-cta-text h2 {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }

  .treat-cta-image img {
    height: 280px;
  }
}

/* ====================================================================
   TREATMENT PAGES - BOOKING SECTION & FORM LAYOUT
   ==================================================================== */
.scar-booking-section {
  padding: 50px 0;
  background: #F8F9FD;
  border-top: 1px solid rgba(144, 93, 167, 0.08);
}

.scar-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.scar-booking-info h2 {
  /* font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 6px;
  margin-bottom: 25px;
  text-transform: uppercase; */

    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scar-booking-info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

.booking-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.booking-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.booking-detail-item i {
  color: var(--purple);
  font-size: 1.15rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.booking-detail-item h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.booking-detail-item p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.scar-booking-form-col {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(144, 93, 167, 0.06);
  border: 1px solid rgba(144, 93, 167, 0.05);
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  color: #1F1F1F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-status-msg {
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  padding: 12px 18px;
  border-radius: 12px;
}

.form-status-msg.success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

@media (max-width: 991px) {
  .scar-booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .scar-booking-form-col {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .form-row-group {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .scar-booking-info h2 {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }
}

/* ====================================================================
   TREATMENT PAGE - MEGA DROP-DOWN NAVIGATION
   ==================================================================== */
@media (min-width: 992px) {

  /* Prevent submenu items from having absolute layout issues */
  .navbar-nav {
    position: static !important;
  }

  .treatments-mega {
    position: static !important;
  }

  /* Show mega dropdown on hover */
  .treatments-mega:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-dropdown-menu {
    display: block !important;
    /* Force block structure for opacity transitions */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 90%;
    left: 40px !important;
    right: 40px !important;
    width: calc(100% - 80px) !important;
    min-width: auto !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(144, 93, 167, 0.08) !important;
    border-top: none !important;
    box-shadow: 0 30px 60px rgba(144, 93, 167, 0.12) !important;
    border-radius: 0 0 20px 20px !important;
    padding: 25px 25px 25px 25px !important;
    margin-top: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    overflow: visible;
  }

  /* Slim scrollbar for mega dropdown */
  .mega-dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .mega-dropdown-menu::-webkit-scrollbar-track {
    background: #F8F9FD;
    border-radius: 10px;
  }

  .mega-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
  }

  .mega-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
  }

  .mega-dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: var(--purple) #F8F9FD;
  }

  /* Luxurious Top Gradient Border */
  .mega-dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #905da7, #b88fcc, #905da7);
  }

  /* Vertical dividers between main columns */
  .mega-menu-col {
    padding: 0 25px;
  }

  .mega-menu-col:not(:last-child) {
    border-right: 1px solid rgba(144, 93, 167, 0.06);
  }

  /* Elegant Underlined Headings with Hover Expansion */
  .mega-menu-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    /* display: inline-block; */
    padding-bottom: 8px;
    width: 100%;
  }

  .mega-menu-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .mega-menu-title:hover::after {
    width: 100%;
  }

  .mega-menu-title a {
    color: var(--purple);
    transition: var(--transition);
  }

  .mega-menu-title a:hover {
    color: var(--gold);
  }

  /* Face/Skin inner sub-column layouts */
  .mega-menu-list-wrapper {
    display: flex;
    gap: 30px;
  }

  .mega-menu-list-wrapper .mega-menu-list {
    flex: 1;
  }

  .mega-menu-list-wrapper .mega-menu-list:first-child {
    border-right: 1px dashed rgba(144, 93, 167, 0.05);
    padding-right: 25px;
  }

  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-menu-list li {
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .mega-menu-list li a {
    font-family: var(--font-nav);
    font-size: 0.72rem;
    font-weight: 500;
    color: #1f1f1f !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: block;
    position: relative;
    padding: 6px 16px;
  }

  .mega-menu-list li a:hover,
  .mega-menu-list li a:focus {
    background: #E9E1F0;
    color: #905da7 !important;
  }
}

/* Medium Laptop Screen Optimization */
@media (min-width: 992px) and (max-width: 1199px) {
  .mega-dropdown-menu {
    padding: 35px 25px !important;
    left: 30px !important;
    right: 30px !important;
    width: calc(100% - 60px) !important;
  }

  .mega-menu-col {
    padding: 0 15px;
  }

  .mega-menu-list-wrapper {
    gap: 15px;
  }

  .mega-menu-list-wrapper .mega-menu-list:first-child {
    padding-right: 15px;
  }

  .mega-menu-list li a {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
  }

  .mega-menu-title {
    font-size: 0.78rem;
    margin-bottom: 15px;
  }

}

/* Mobile & Tablet Mega Menu Styles */
@media (max-width: 991.98px) {
  .mega-dropdown-menu {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 15px 15px !important;
    width: 100% !important;
    max-height: 380px;
    overflow-y: auto;
  }

  .mega-menu-list-wrapper {
    display: block;
    /* Stack Face/Skin columns on mobile */
  }

  .mega-menu-col {
    margin-bottom: 25px;
    padding: 0;
  }

  .mega-menu-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(144, 93, 167, 0.08);
  }

  .mega-menu-title a {
    color: var(--purple);
  }

  .mega-menu-list {
    margin-bottom: 10px;
  }

  .mega-menu-list li {
    margin-bottom: 8px;
  }

  .mega-menu-list li a {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 500;
    color: #444 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    padding: 4px 0;
  }

  .mega-menu-list li a:hover {
    color: var(--purple) !important;
  }
}

/* ====================================================================
   EXION PAGE - CARD GRID (4-column product cards)
   ==================================================================== */
.exion-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.exion-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.exion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(144, 93, 167, 0.1);
}

.exion-card-title-img {
  margin-bottom: 20px;
}

.exion-card-title-img img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.exion-card-device-img {
  margin-bottom: 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exion-card-device-img img {
  max-width: 220px;
  max-height: 200px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.exion-card:hover .exion-card-device-img img {
  transform: scale(1.05);
}

.exion-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 80px;
}

.exion-card-btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1.5px solid #905da7;
  border-radius: 30px;
  color: #905da7;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
}

.exion-card-btn:hover {
  background: #905da7;
  color: #fff;
}

/* ====================================================================
   EXION PAGE - BOOK APPOINTMENT BANNER
   ==================================================================== */
.exion-book-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #f3eaf8 0%, #e8d8f0 50%, #dbc8e8 100%);
}

.exion-book-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.exion-book-banner-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1F1F1F;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.exion-book-banner-inner p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.exion-book-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #905da7;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  white-space: nowrap;
  transition: var(--transition);
}

.exion-book-btn:hover {
  background: #7a4d90;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(144, 93, 167, 0.3);
}

/* ====================================================================
   EXION PAGE - INDIVIDUAL TREATMENT SECTIONS
   ==================================================================== */
.exion-treatment-section {
  padding: 60px 0;
}

.exion-treat-header {
  text-align: center;
  margin-bottom: 40px;
}

.exion-treat-title-img {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.exion-treat-title-img img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.exion-treat-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F1F1F;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin: 0 auto;
}

.exion-treat-flanked {
  display: flex;
  align-items: center;
  gap: 30px;
}

.exion-treat-header-inline {
  margin-bottom: 0;
  flex: 1;
}

.exion-treat-flank-img {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exion-treat-flank-img img {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.exion-treat-content {
  flex: 1;
}

.exion-treat-highlight {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #1F1F1F;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 0 20px;
}

.exion-treat-features {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.exion-treat-feature {
  flex: 1;
  text-align: center;
  padding: 20px 15px;
  background: #f9f5fc;
  border-radius: 12px;
}

.exion-treat-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #905da7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.exion-treat-feature p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.exion-treat-footer-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: #1F1F1F;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.7;
  padding: 15px 20px;
  background: #f9f5fc;
  border-radius: 10px;
}

/* ====================================================================
   EXION PAGE - EMFEMME STATS GRID
   ==================================================================== */
.exion-stats-grid {
  display: flex;
  gap: 25px;
}

.exion-stat-card {
  flex: 1;
  text-align: center;
  padding: 25px 15px;
  background: #f9f5fc;
  border-radius: 12px;
}

.exion-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #905da7;
  line-height: 1;
  margin-bottom: 12px;
}

.exion-stat-number span {
  font-size: 1.5rem;
}

.exion-stat-card h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #1F1F1F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.exion-stat-card p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ====================================================================
   EXION PAGE - RESPONSIVE
   ==================================================================== */
@media (max-width: 991px) {
  .exion-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .exion-treat-flanked {
    flex-direction: column;
    align-items: center;
  }

  .exion-treat-flank-img:last-child {
    display: none;
  }

  .exion-treat-flank-img {
    flex: 0 0 auto;
  }

  .exion-treat-features {
    flex-direction: column;
  }

  .exion-stats-grid {
    flex-direction: column;
  }

  .exion-book-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .exion-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exion-card-device-img {
    min-height: 140px;
  }

  .exion-stat-number {
    font-size: 2.5rem;
  }

  .exion-treat-highlight {
    font-size: 0.85rem;
  }

  .exion-treat-flank-img {
    flex: 0 0 150px;
  }

  .exion-treat-flank-img img {
    max-width: 150px;
  }
}

/* ====================================================================
   SEEING IS BELIEVING - TABBED SLIDER (REUSED FROM EMSCULPT)
   ==================================================================== */
.emsculpt-seeing-section {
  padding: 70px 0;
  background: #fff;
}

.emsculpt-seeing-section .section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: #905da7;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.emsculpt-seeing-section .section-subtitle {
  text-align: center;
  color: #1F1F1F;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.emsculpt-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.emsculpt-tab-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ddd;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: #fff;
  outline: none;
}

.emsculpt-tab-btn.active {
  border-color: #905da7;
  box-shadow: 0 0 0 3px rgba(144, 93, 167, 0.3);
}

.emsculpt-tab-btn img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.emsculpt-tab-content {
  display: none;
}

.emsculpt-tab-content.active {
  display: block;
}

.emsculpt-tab-content .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ====================================================================
   EMERALD LASER PAGE CUSTOM STYLES
   ==================================================================== */

/* Intro Section Badge */
.treat-intro-img-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.treat-intro-img-container img {
  width: 100%;
  height: auto;
}

.cold-laser-badge {
  background-color: #BA9BC9;
  color: #fff;
  text-align: center;
  padding: 18px 15px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.cold-laser-badge h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: 1.5px;
  color: #fff !important;
}

.cold-laser-badge p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Why Choose Section (Light Theme) */
.emerald-why-choose-section {
  background: var(--white);
  color: var(--text);
  padding: 50px 0;
}
@media (max-width: 767px) {
.emerald-why-choose-section   {
  padding: 30px 0;
}
}
.emerald-why-choose-section .treat-section-title {
  color: var(--purple) !important;
  text-align: center;
  margin-bottom: 20px;
}

.emerald-why-choose-section p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.emerald-why-choose-content>p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.emerald-why-list {
  max-width: 800px;
  margin: 0 auto;
}

.emerald-why-item {
  border-bottom: 1px solid rgba(144, 93, 167, 0.15);
  padding: 25px 0;
  text-align: center;
}

.emerald-why-item:last-child {
  border-bottom: none;
}

.emerald-neon-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 3px;
  color: var(--purple) !important;
  margin-bottom: 12px;
}

.emerald-why-item p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

/* CTA Section Banner */
.emerald-cta-section {
  background-color: #BA9BC9;
  padding: 35px 0;
  color: #fff;
}

.emerald-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.emerald-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0;
  color: #fff !important;
}

.btn-cta-emerald {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-emerald:hover {
  background-color: #fff;
  color: #BA9BC9;
}

/* Video Section styling */
.emerald-video-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000 url('../images/body/emerald-laser/erchonia-emerald-laser.png') no-repeat center center;
  background-size: cover;
}

.emerald-video-section .video-background-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.emerald-video-section .video-iframe {
  width: 100vw;
  height: 56.25vw;
  /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.emerald-video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* Erchonia Gold Standard Section */
.emerald-gold-section {
  padding: 70px 0;
  background: #fff;
}

.emerald-gold-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.emerald-gold-left {
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
}

.gold-seal-img {
  width: 100%;
  max-width: 153px;
  height: auto;
}

.emerald-gold-right {
  flex: 1;
  background-color: #BA9BC9;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(186, 155, 201, 0.15);
}

.emerald-gold-right p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* What to Expect Section (Light Theme) */
.emerald-expect-section {
  background: var(--purple-pale);
  color: var(--text);
  padding: 100px 0;
  text-align: center;
}

.emerald-expect-section .treat-section-title {
  color: var(--purple) !important;
  margin-bottom: 25px;
}

.emerald-expect-section p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.emerald-expect-section p:last-child {
  margin-bottom: 0;
}

/* Responsiveness for new sections */
@media (max-width: 991px) {
  .emerald-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .emerald-cta-inner h2 {
    font-size: 1.8rem;
  }

  .emerald-gold-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .emerald-gold-left {
    flex: 0 0 auto;
  }
}

@media (max-width: 575px) {
  .emerald-video-section {
    height: 300px;
  }

  .emerald-gold-right {
    padding: 20px;
  }

  .cold-laser-badge h3 {
    font-size: 1.05rem;
  }

  .cold-laser-badge p {
    font-size: 0.75rem;
  }
}

/* Cold laser technology section background */
.treat-text-section {
  padding: 50px 0;
  background: var(--white);
}
@media (max-width: 767px) {
.treat-text-section   {
  padding: 30px 0;
}
}

.emerald-cold-laser-bg {
  background: #fcf8ff;
}

/* Intro section title alignment for emerald laser */
.treat-intro-text .treat-section-title {
  text-align: left;
  margin-bottom: 20px;
}

/* Text sections heading alignment */
.treat-text-content .treat-section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* Cold laser badge font alignment */
.cold-laser-badge {
  font-family: var(--font-heading);
}

/* ==========================================================================
   ABOUT PAGE CUSTOM STYLES (MATCHING LIVE SITE)
   ========================================================================== */

/* Hide modal content by default */
.mfp-hide {
  display: none !important;
}

/* Philosophy Section Styles */
.Philosophy-page-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80vh;
}

.Philosophy-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.Philosophy-page-hero .container {
  position: relative;
  z-index: 1;
}



.Philosophy-page-hero .primary-heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300 !important;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #ffffff;
  text-transform: uppercase;
}

.Philosophy-page-hero img {
  margin-bottom: 40px;
  max-width: 250px;
  height: auto;
}

.Philosophy-page-hero .signature-heading {
  margin-bottom: 30px;
}

.Philosophy-page-hero .signature-heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: #BA9BC9;
  font-weight: 400 !important;
  text-transform: none !important;
}

.Philosophy-page-hero .bottom-title p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto;
}

.Philosophy-page-hero .bottom-title span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #BA9BC9;
  letter-spacing: 1px;
}

/* Founding Team Styles */
.experts-section {
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
}

.experts-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.experts-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-block {
  position: relative;
  overflow: hidden;
  background: #fcfcfc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  width: calc(33.333% - 20px);
  min-width: 280px;
}

.team-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-block:hover img {
  transform: scale(1.03);
}

.team-block .member-info {
  padding: 20px 15px 0 15px;
}

.team-block .member-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.team-block .member-position {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-block .know-more-btn {
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translate(-50%, -50%);
  background: #BA9BC9;
  color: #ffffff;
  padding: 10px 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.team-block:hover .know-more-btn {
  opacity: 1;
}

/* Hover title overlay for team blocks */
.team-block .hover-title {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block .hover-title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / .2);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.team-block:hover .hover-title:after {
  opacity: 1;
}

/* Experience Section Styles */
.experience-section-wrapper {
  padding: 50px 0;
  background-color: #fcfcfc;
}

.experience-section-wrapper h3 {
     text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.experience .indexagal {
  display: flex;
  flex-wrap: wrap;
  padding: 0 6px;
}

.experience .indexagal .mediabx {
  position: relative;
  height: 550px;
  width: calc(25% - 12px);
  margin: 6px;
  border: 6px solid #FFF;
  transition: 0.4s ease-in;
  overflow: hidden;
  cursor: pointer !important;
}

.experience .indexagal .mediabx::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff0 50%, rgb(0 0 0 / .7));
  transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
  left: 0;
  bottom: 0;
  z-index: 1;
}

.experience .indexagal .mediabx .newnum {
  color: #fff;
  font-weight: 400;
  margin-bottom: 30%;
  font-size: 50px;
  transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
  font-family: "Gotham-Book", sans-serif;
}

.experience .indexagal .mediabx .text-box {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  padding: 0 15px;
  z-index: 2;
  transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
}

.experience .indexagal .mediabx h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.experience .indexagal .mediabx .ovelayone {
  position: absolute;
  visibility: hidden;
  padding: 30px 20px;
  height: 100%;
  width: 85%;
  background-color: #fff;
  top: 0;
  right: -100%;
  transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
  z-index: 3;
}

.experience .indexagal .mediabx .ovelayone h4 {
  margin-bottom: 1.5rem;
  font-size: 18px;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.experience .indexagal .mediabx .ovelayone p {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #555555;
}

.experience .indexagal .mediabx .plus {
  position: absolute;
  bottom: 14px;
  padding-left: 15px;
  z-index: 4;
  color: #fff;
  background-color: transparent;
  border: none;
  font-size: 50px;
  line-height: 1;
  left: 0;
  transform: translateY(70px);
  transition: 0.3s;
}

.experience .indexagal .mediabx img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
  z-index: 0;
}

.experience .indexagal .mediabx:hover .newnum {
  margin-bottom: 40%;
}

.experience .indexagal .mediabx:hover .text-box {
  bottom: 15%;
}

.experience .indexagal .mediabx:hover .plus {
  transform: translateY(0);
  opacity: 1;
}

.experience .indexagal .mediabx.expanded .ovelayone {
  right: 0%;
  visibility: visible;
}

.experience .indexagal .mediabx.expanded img {
  left: -85%;
}

.experience .indexagal .mediabx.expanded .text-box {
  left: -85%;
}

/* Gallery Section Styles */
.gallery-section-wrapper {
  padding: 50px 0;
  background-color: #ffffff;
}

.gallery-section-wrapper h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.about-gallery-section {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about-gallery-section .swiper-slide-inner img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.about-gallery-section .elementor-swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.about-gallery-section .elementor-swiper-button-prev {
  left: 26px !important;
}

.about-gallery-section .elementor-swiper-button-next {
  right: 26px !important;
}

.about-gallery-section .elementor-swiper-button svg {
  width: 60px !important;
  height: 60px !important;
}

/* Popup Modals */
.white-popup-block {
  background: #FFF;
  padding: 40px;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  border-radius: 8px;
}

.team-popup-content .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.team-popup-content .col-md-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.team-popup-content .col-md-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.team-popup-content .col-md-5 img {
  width: 100%;
  height: auto;
  max-height: 464px;
  object-fit: cover;
  border-radius: 4px;
}

.team-popup-content .text-box h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #905da7;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-popup-content .text-box h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #BA9BC9;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.team-popup-content .para {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.team-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.team-popup-overlay.active {
  display: flex;
}

.team-popup-content .close-button {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
}

.team-popup-content .close-button a {
  text-decoration: none;
  font-size: 24px;
  color: #888;
  transition: color 0.3s;
}

.team-popup-content .close-button a:hover {
  color: #BA9BC9;
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .team-block {
    width: calc(50% - 15px);
  }

  .experience .indexagal .mediabx {
    width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {

  .team-popup-content .col-md-5,
  .team-popup-content .col-md-7 {
    width: 100%;
    padding-top: 20px;
  }

  .white-popup-block {
    padding: 25px 20px !important;
    margin: 20px auto !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    width: 90% !important;
  }

  .team-popup-content .close-button {
    position: fixed !important;
    right: 15px !important;
    top: 15px !important;
    z-index: 99999 !important;
  }

  .team-popup-content .close-button a {
    font-size: 28px !important;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }

  .team-block img {
    height: 380px;
  }

  .team-block .know-more-btn {
    top: 190px;
  }
}

@media (max-width: 575px) {
  .team-block {
    width: 100%;
  }

  .experience .indexagal .mediabx {
    width: 100%;
    margin: 6px 0;
  }

  .about-gallery-section .swiper-slide-inner img {
    height: 350px;
  }

  .Philosophy-page-hero {
    padding: 120px 20px 40px 20px;
  }

  .Philosophy-page-hero .primary-heading h3 {
    font-size: 1.5rem;
  }

  .Philosophy-page-hero .signature-heading h3 {
    font-size: 1.4rem;
  }

  .experts-section h2,
  .experience-section-wrapper h3,
  .gallery-section-wrapper h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .experts-section,
  .experience-section-wrapper,
  .gallery-section-wrapper {
    padding: 30px 0;
  }
}

/* ====================================================================
   EMFACE PAGE
   ==================================================================== */
.emface-gradient-banner {
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
  background: #F8F9FD;
    border-top: 1px solid rgba(144, 93, 167, 0.08);
}
.emface-purple-section{
      border-top: 1px solid rgba(144, 93, 167, 0.08);
}
.emface-banner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.emface-logo-wrap {
  text-align: left;
}

.emface-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.emface-logo-em {
  color: #0b2a4a;
}

.emface-logo-face {
  color: #4a9fd8;
}

.emface-logo-subtitle {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.emface-banner-image {
  /* position: absolute; */
  top: 0;
  right: 0;
  bottom: 0;
}

.emface-banner-image img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}

.emface-callouts-section {
  padding: 40px 50px;
}

.emface-callouts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.emface-callout-card {
  position: relative;
  display: block;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
}

.emface-callout-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%);
}

.emface-callout-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 50px;
  max-width: 420px;
}

.emface-callout-card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.emface-callout-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.emface-read-more {
  display: inline-block;
  align-self: flex-start;
  background: #fff;
  color: #1a1a1a;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.emface-callout-card:hover .emface-read-more {
  background: #905da7;
  color: #fff;
}

@media (max-width: 767.98px) {
  .emface-callouts-section {
    padding: 25px 20px;
  }

  .emface-callouts-grid {
    grid-template-columns: 1fr;
  }

  .emface-callout-card {
    min-height: 320px;
  }

  .emface-callout-card-content {
    padding: 30px;
  }

  .emface-banner-grid {
    justify-content: center;
    text-align: center;
  }

  .emface-logo-wrap {
    text-align: center;
  }

  .emface-banner-image {
    position: static;
    margin: 20px auto 0;
  }

  .emface-banner-image img {
    height: auto;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* Purple gradient sections (What is Emface / Submentum) */

/* Key Benefits Icons */
.emface-benefits-grid .treat-benefit-card {
  background: transparent;
  border: none;
  text-align: center;
}

.emface-benefit-icon {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.emface-benefit-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.emface-clinical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.emface-clinical-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.emface-clinical-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.emface-clinical-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.emface-clinical-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1F1F1F;
  line-height: 1.4;
  margin-bottom: 10px;
}

.emface-clinical-authors {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
  flex: 1;
}

.emface-clinical-link {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 20px;
  border: 1px solid #905da7;
  border-radius: 30px;
  color: #905da7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emface-clinical-link:hover {
  background: #905da7;
  color: #fff;
}

@media (max-width: 991.98px) {
  .emface-clinical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .emface-clinical-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================================
   FOTONA LASER PAGE - KEY TREATMENTS GRID
   ==================================================================== */
.fotona-treat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fotona-treat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.fotona-treat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fotona-treat-card:hover img {
  transform: scale(1.08);
}

.fotona-treat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
  .fotona-treat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Fotona helper classes (replaces inline styles) */
.treat-disc-list {
  list-style: disc;
  padding-left: 25px;
}

.treat-disc-list li {
  margin-bottom: 12px;
}

.treat-disc-list--mt {
  margin-top: 10px;
}

.treat-maqx-highlight {
  margin-top: 20px;
}

.treat-text-content--center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Fotona product image — smaller on desktop */
#treatIntro .treat-intro-img-wrap {
  max-width: 500px;
  justify-self: center;
}
.flex-center{
   display: flex!important;
   justify-content: center!important;
}

.exosomes-subhead {
  font-weight: 500;
}

.fue-subheading {
  text-align: left;
  font-size: 1.4rem;
}

/* ====================================================================
   PRINT / PDF EXPORT — reveal scroll-animated content, hide floating UI
   ==================================================================== */
@media print {
  .fade-up,
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .preloader {
    display: none !important;
  }

  .whatsapp-float,
  .call-now-btn,
  .contact-side-tab {
    display: none !important;
  }

  #mainNavbar {
    position: static !important;
  }
}

/* ====================================================================
   SKUCCII GLOBAL DESIGN SYSTEM CORRECTIONS
   Applied site-wide for visual consistency
   ==================================================================== */

/* ------------------------------------------------------------------
   1. TYPOGRAPHY — Standardized across all pages
   ------------------------------------------------------------------ */

/* Standardized section-level H2 headings (used in treatment pages) */
.treat-section-title,
.treat-intro-title {
      text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Body paragraph standardization */
.treat-intro-desc,
.treat-type-desc,
.treat-cta-text p {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.85;
  color: #1F1F1F;
  letter-spacing: 0.2px;
}

/* Treat-types grid layout for scar/treatment type cards */
.treat-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .treat-types-grid {
    grid-template-columns: 1fr;
  }
}

/* Standardize section sub-title text (light weight, spaced) */
.celeb-subtitle,
.page-hero-subtitle {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  line-height: 1.85;
}

/* Main section heading title — matches home page celeb-main-title style */
.section-title {
  /* font-family: var(--font-nav) !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 6px !important;
  color: var(--purple);
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase !important; */

      text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Standardize team-title (experts page) to match home heading style */
.experts-page .team-title {
  font-family: var(--font-nav) !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 6px !important;
  color: var(--purple) !important;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.experts-page .team-subtitle {
  font-family: var(--font-nav) !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  letter-spacing: 1.5px !important;
  color: #1F1F1F !important;
  line-height: 1.8 !important;
}

/* ------------------------------------------------------------------
   2. SPACING — Consistent section padding site-wide
   ------------------------------------------------------------------ */

/* Spacer between A-Lister (vip-section) and Experts (tech-section) */
.alister-experts-spacer {
  height: 80px;
  background: var(--white);
  background: linear-gradient(
    to bottom,
    rgba(248, 249, 253, 0.9) 0%,
    rgba(233, 225, 240, 0.4) 50%,
    rgba(248, 249, 253, 0.9) 100%
  );
}

/* Ensure vip-section and tech-section both have extra internal padding */
.vip-section {
  padding: 80px 0 !important;
}

.tech-section {
  padding: 80px 0 !important;
}

/* Standardize treatment page section padding */
.treat-intro-section,
.treat-faq-section,
.treat-types-section,
.treat-cta-strip {
  padding: 50px 0;
}

.treat-before-after-section {
  padding: 50px 0;
}
@media (max-width: 767px) {
.treat-before-after-section  {
  padding: 30px 0;
}
}
/* ------------------------------------------------------------------
   3. FEATURED VIDEO SECTION — Premium styling
   ------------------------------------------------------------------ */

.featured-video-section {
  padding: 40px 0 60px;
  background: var(--white);
}

.video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(144, 93, 167, 0.15);
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

/* ------------------------------------------------------------------
   4. PAGE HERO — Standardized overlay across all pages
   ------------------------------------------------------------------ */

.page-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(42, 30, 58, 0.50) 0%,
    rgba(144, 93, 167, 0.30) 100%
  ) !important;
}

/* ------------------------------------------------------------------
   5. ICON CONSISTENCY — Gradient circle containers for feature icons
   ------------------------------------------------------------------ */

/* Ensure all benefit/feature icon sections match home page style */
.treat-type-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid rgba(144, 93, 167, 0.10);
  box-shadow: 0 8px 25px rgba(144, 93, 167, 0.06);
  transition: var(--transition);
}

.treat-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(144, 93, 167, 0.12);
  border-color: rgba(144, 93, 167, 0.20);
}

.treat-type-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* FAQ icon standardization */
.faq-icon {
  color: var(--purple);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.treat-faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ------------------------------------------------------------------
   6. IMAGE TONE — Consistent premium visual quality
   ------------------------------------------------------------------ */

/* Subtle premium tone on clinic and treatment section images */
.care-img-item img,
.doctor-mobile-img img,
.celeb-card-img img,
.expert-img-wrap img {
  filter: brightness(0.97) contrast(1.02) saturate(1.02);
}

/* Expert/founder images keep consistent tone */
.experts-page .founder-img-wrap img,
.experts-page .expert-img-wrap img {
  filter: brightness(0.97) contrast(1.02) saturate(1.02);
}

/* Service card images consistent premium tone */
.service-card-img img {
  filter: brightness(0.97) contrast(1.02);
}

/* ------------------------------------------------------------------
   7. BEFORE & AFTER — B&W default, color on hover (reinforced)
   ------------------------------------------------------------------ */

.before-after-card {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

/* .before-after-card::after {
  content: 'Hover to reveal colour';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(42, 30, 58, 0.70);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-nav);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
} */

.before-after-card:hover::after {
  opacity: 0;
}

/* ------------------------------------------------------------------
   8. RESPONSIVE ADJUSTMENTS
   ------------------------------------------------------------------ */

@media (max-width: 767px) {
  .alister-experts-spacer {
    height: 40px;
  }

  .treat-section-title,
  .treat-intro-title {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }

  .vip-section,
  .tech-section {
    padding: 60px 0 !important;
  }

  .treat-intro-section,
  .treat-faq-section,
  .treat-types-section,
  .treat-cta-strip,
  .treat-before-after-section {
    padding: 30px 0;
  }

  .video-wrap {
    border-radius: 16px;
  }

  .before-after-card::after {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }

}

/* ==================== CONTACT & BOOKING FORM STYLES ==================== */
.single-input-area {
  position: relative;
  margin-bottom: 10px;
}

.single-input-area input,
.single-input-area textarea {
  width: 100%;
  padding: 14px 45px 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #1F1F1F;
  background: var(--white, #ffffff);
  border: 1.5px solid #e0d8e6;
  border-radius: 12px;
  outline: none;
  transition: var(--transition, all 0.3s ease);
}

.single-input-area input:focus,
.single-input-area textarea:focus {
  border-color: var(--purple, #905da7);
  box-shadow: 0 0 0 3px rgba(144, 93, 167, 0.1);
}

.single-input-area i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #905da7;
  font-size: 0.95rem;
  pointer-events: none;
}

.single-input-area.text-area i {
  top: 20px;
  transform: none;
}

.single-input-area textarea {
  resize: vertical;
  min-height: 110px;
}

.error_field {
  color: #dc3545;
  font-size: 0.82rem;
  margin-top: 2px;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}

.rts-btn.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #905da7 0%, #6e3a85 100%);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.rts-btn.btn-primary:hover {
  background: linear-gradient(135deg, #7c4c93 0%, #592c6d 100%);
  box-shadow: 0 6px 20px rgba(144, 93, 167, 0.35);
  transform: translateY(-1px);
}

.rts-btn.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ==================== THANK YOU PAGE STYLES ==================== */
#thankYouHero {
  background-image: url('../images/contact_header.webp');
}

.thank-you-container {
  max-width: 650px;
}

.thank-you-icon {
  font-size: 3.5rem;
  color: var(--purple, #905da7);
  margin-bottom: 20px;
}

.thank-you-title {
  font-family: var(--font-heading);
}

.thank-you-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.thank-you-link {
  color: var(--purple, #905da7);
  font-weight: 600;
}


/* ===== Treatment Page — Gradient Hero (Plasma Pen Style) ===== */
.plasma-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #BA9BC9 0%, #ab89bf 100%);
}

.plasma-hero .page-hero-content {
  padding: 30px 20px;
  text-align: center;
}

.plasma-hero .page-hero-category {
  color: rgba(255, 255, 255, 0.75);
}

.plasma-hero .page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.plasma-hero .page-hero-breadcrumb {
  color: rgba(255, 255, 255, 0.5);
}

.plasma-hero .page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.plasma-hero .page-hero-breadcrumb a:hover {
  color: #fff;
}

@media (max-width: 575.98px) {
  .plasma-hero {
    padding: 40px 20px;
  }

  .plasma-hero .page-hero-title {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }
}



.treat-sub-section-title{
  font-family: var(--font-nav) !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  color: var(--purple);
  letter-spacing: 6px !important;
  text-transform: uppercase !important;
  margin-bottom: 25px;
      text-align: left;
}


@media (max-width: 767px) {
 .treat-sub-section-title {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }
}

.section-pd{
  padding: 50px 0 10px 0;
}
@media (max-width: 767px) {
.section-pd{
  padding: 30px 0 10px 0;
}
}

/* Container and Slide Position */
.hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 500px; /* Adjust height according to your design */
}

/* Background Image Layer per Slide */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Watermark Layer */
.hero-bg-watermark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* Text & Content Layer above images */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.skuccii-edge-section .container {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}
.skuccii-edge-nav-prev {
    left: 0 !important;
}
.skuccii-edge-nav-next {
    right: 0 !important;
}
.skuccii-edge-nav-prev, .skuccii-edge-nav-next {
    color: #905da7 !important;
    top: 50% !important;
    transform: translateY(-50%);
    margin-top: 0 !important;
}
.skuccii-edge-nav-prev:after, .skuccii-edge-nav-next:after {
    font-size: 2.5rem !important;
    font-weight: bold;
}