/**
 * Table of Contents:
 * ------------------
 * 1.  Global Styles
 *     - Font Imports
 *     - Root Variables
 *     - Base & Typography
 * 2.  Utility Classes
 *     - Buttons
 *     - Page Header
 *     - Animations & Effects
 * 3.  Layout Components
 *     - Navbar
 *     - Footer
 *     - Sidebar
 * 4.  Page Sections & Components
 *     - Hero Section
 *     - Banner Section
 *     - Treatments Section
 *     - Inner Page Sections
 *     - Cards (Treatment Card)
 *     - Lists
 *     - Swiper Styles (General, Hero, Inner Page, Treatments)
 *     - FAQ Section
 *     - Image Row
 * 5.  Keyframe Animations
 */

/* 1. GLOBAL STYLES
-------------------------------------------------------------------------------- */
/* Font Imports */
@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Root Variables */
:root {
  --pink-color: #B02182;
  --pink-light-color: #FCE3EB;
  --off-blue: #EEF2F8;
  --purple-color: #724786;
  --white-color: #fafafa;
  --black-color: #1a1a1a;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.4s ease;
  --shadow-base: 0 5px 15px rgba(176, 33, 130, 0.3);
  --shadow-large: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Base & Typography */
*, 
*::before, 
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--off-blue);
}

section {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

/* 2. UTILITY CLASSES
-------------------------------------------------------------------------------- */
/* Buttons */
.nt-btn {
  display: inline-block;
  background: var(--pink-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  margin-block: 20px;
}

.nt-btn:hover {
  background: var(--pink-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}

/* Page Header */
.page-header {
  margin-bottom: 60px;
}

.page-header h2 {
  color: var(--pink-color);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-header p {
  color: var(--pink-color);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 991px) {
  .page-header {
    margin-bottom: 40px;
  }

  .page-header h2 {
    font-size: 36px;
  }

  .page-header p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-header h2 {
    font-size: 28px;
  }
}

/* Animations & Effects */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--off-blue),
    transparent
  );
  animation: shine 3.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.btn-shine > * {
  position: relative;
  z-index: 2;
}

/* 3. LAYOUT COMPONENTS
-------------------------------------------------------------------------------- */
/* Navbar */
.navbar-topbar {
  background-color: var(--pink-color);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;

  & a {
    color: white;
    text-decoration: none;
  }
}

.topbar-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: var(--transition-base);
}

.social-icon:hover {
  opacity: 0.8;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 80px;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--black-color);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: var(--pink-color);
}

.dropdown-arrow-icon {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: var(--transition-base);
}

.nav-dropdown:hover .dropdown-arrow-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  pointer-events: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-link {
  display: block;
  padding: 12px 25px;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-base);
  border-left: 3px solid transparent;
}

.nav-dropdown-link:hover {
  color: var(--pink-color);
  background-color: var(--pink-light-color);
  border-left-color: var(--pink-color);
}

.nav-dropdown-item {
  position: relative;
}

.nav-sub-dropdown .nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-dropdown-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid currentColor;
  transition: var(--transition-base);
}

.nav-sub-dropdown:hover .sub-dropdown-arrow {
  transform: rotate(90deg);
}

.nav-sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  margin: 0;
  pointer-events: none;
}

.nav-sub-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: transparent;
}

.nav-sub-dropdown:hover .nav-sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.nav-sub-dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: var(--transition-base);
  border-left: 3px solid transparent;
}

.nav-sub-dropdown-link:hover {
  color: var(--pink-color);
  background-color: var(--pink-light-color);
  border-left-color: var(--pink-color);
}

.navbar-language {
  display: flex;
  align-items: center;
}

.language-selector {
  position: relative;
}

.language-selector .nav-dropdown-menu {
  right: 0;
  left: auto;
  min-width: 150px;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition-base);
}

.language-toggle:hover {
  background-color: var(--pink-light-color);
  color: var(--pink-color);
}

.flag-icon {
  width: 20px;
  height: 15px;
}

.navbar-mobile-toggle {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--black-color);
  margin: 5px 0;
  transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-nav-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-logo img {
  height: 40px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.mobile-nav-close span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: var(--transition-base);
}

.mobile-nav-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  padding: 18px 25px;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition-base);
}

.mobile-nav-link:hover {
  background-color: var(--pink-light-color);
  color: var(--pink-color);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: var(--transition-base);
}

.mobile-dropdown-arrow.active {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--pink-light-color);
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-dropdown-menu.active {
  max-height: 300px;
}

.mobile-dropdown-menu .mobile-nav-link {
  padding-left: 40px;
  border-bottom: none;
}

.mobile-nav-bottom {
  background-color: var(--pink-light-color);
  padding: 30px 25px;
  margin-top: auto;
}

.mobile-contact-items {
  margin-bottom: 30px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.mobile-contact-item:last-child {
  margin-bottom: 0;
}

.mobile-contact-icon {
  width: 18px;
  height: 18px;
  filter: none;
  opacity: 0.7;
}

.mobile-contact-item span {
  color: var(--black-color);
  font-weight: 500;
  font-size: 14px;
}

.mobile-contact-item a {
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-base);
}

.mobile-contact-item a:hover {
  color: var(--pink-color);
}

.mobile-social-section {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(176, 33, 130, 0.2);
}

.mobile-social-section h4 {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.mobile-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-social-icon img {
  width: 22px;
  height: 22px;
}

@media (max-width: 1199px) {
  .nav-menu {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    display: none;
  }
  
  .navbar-language {
    display: none;
  }
  
  .navbar-mobile-toggle {
    display: block;
  }
  
  .topbar-content {
    flex-direction: row;
    gap: 15px;
  }
  
  .topbar-left,
  .topbar-right {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar-topbar {
    padding: 8px 0;
  }
  
  .topbar-content {
    gap: 10px;
  }
  
  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .topbar-item {
    font-size: 12px;
  }
  
  .navbar-content {
    height: 70px;
  }
  
  .navbar-logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .topbar-left,
  .topbar-right {
    flex-direction: column;
    gap: 8px;
  }
  
  .topbar-social {
    gap: 8px;
  }
  
  .navbar-content {
    padding: 0 10px;
  }
  
  .mobile-nav-bottom {
    padding: 25px 20px;
  }
  
  .mobile-contact-item {
    font-size: 13px;
  }
  
  .mobile-social-icons {
    gap: 12px;
  }
  
  .mobile-social-icon {
    width: 35px;
    height: 35px;
  }
  
  .mobile-social-icon img {
    width: 20px;
    height: 20px;
  }
}

/* Hero */
.hero-img img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

/* About Us */


/* Footer */
.footer-section {
  background-color: var(--pink-light-color);
  padding: 80px 0 40px;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
  color: var(--pink-color);
}

.social-link:hover {
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h3 {
  color: var(--pink-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-column h3:not(:first-child) {
  margin-top: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--pink-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
}

.footer-column a::before {
  content: '»';
  color: var(--purple-color);
  margin-right: 8px;
  font-size: 20px;
}

.footer-column a:hover {
  color: var(--purple-color);
}

.footer-column .sub-item,
.footer-column .contact-item {
  color: var(--pink-color);
  font-size: 14px;
  font-weight: 400;
}

.footer-column .sub-item {
  padding-left: 20px;
  position: relative;
}

.footer-column .contact-item {
  display: flex;
  align-items: center;
}

.footer-column .contact-item::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23F51730" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  flex-shrink: 0;
}

.no-arrow::before {
  content: none !important;
}

.directions-btn {
  background: var(--pink-light-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.directions-btn::before {
  content: '' !important;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
}

.directions-btn:hover {
  background: var(--pink-color);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid #B0218259;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-years {
  display: flex;
  justify-content: flex-end;
}

.footer-years-logo {
  height: 36px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-bottom p {
  color: var(--pink-color);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom a {
  color: var(--pink-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--purple-color);
}

/* Footer: Responsive */
@media (max-width: 1200px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 180px 1fr;
    gap: 60px;
  }
}

@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 30px;
    margin-top: 80px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 40px;
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .footer-column .sub-item {
    text-align: left;
  }
  
  .footer-logo-section {
    display: none;
  }

  .footer-column h3 {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  
  .footer-bottom-right {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .footer-years-logo {
    height: 28px;
  }
  
  .social-link img {
    width: 28px;
    height: 28px;
  }
}

/* Sidebar */
.inner-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  margin-bottom: 48px;
  z-index: 10;
}

.sidebar-nav {
  margin-bottom: 2rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin-bottom: 8px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: all 0.3s ease;
  color: var(--pink-color);
  background: #E8EDF4;
  border: 2px solid transparent;
}

.sidebar-nav-item.active {
  background: var(--pink-color);
  color: white;
}

.sidebar-nav-item:hover {
  background: var(--pink-color);
  color: white;
  transform: translateX(5px);
}

.sidebar-nav-item.active:hover {
  background: var(--pink-color);
}

.sidebar-icon {
  margin-right: 15px;
  font-size: 18px;
  font-weight: bold;
}

.sidebar-consultation {
  background: linear-gradient(135deg, var(--purple-color) 0%, var(--pink-color) 100%);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;

  & iframe {
    border-radius: 12px;
  }
}

.consultation-content {
  position: relative;
  z-index: 2;
}

.consultation-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.consultation-btn {
  background: var(--pink-light-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.consultation-btn:hover {
  background: white;
  color: var(--pink-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar: Responsive */
@media (max-width: 1199px) {
  .sidebar-sticky {
    top: 100px;
  }
  
  .sidebar-nav-item {
    padding: 16px 20px;
    font-size: 13px;
  }
  
  .sidebar-consultation {
    padding: 25px;
  }
  
  .consultation-content h3 {
    font-size: 18px;
  }
}

/* 4. PAGE SECTIONS & COMPONENTS
-------------------------------------------------------------------------------- */
/* Banner Section */
.banner-section {
  background: var(--pink-light-color);
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}

.banner-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pink-color);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

.banner-back-btn path {
  fill: var(--pink-color);
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 400px;
}

.banner-left {
  max-width: 600px;
  padding-top: 40px;
  height: 100%;
  z-index: 2;
  position: relative;
}

.banner-left h1 {
  font-size: 3rem;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.2;
  margin-bottom: 24px;
}

.banner-left p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black-color);
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.8;
}

.banner-btn {
  background: var(--pink-color);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  display: inline-block;
}

.banner-btn:hover {
  background: var(--purple-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 23, 48, 0.3);
}

.banner-right {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.banner-image-wrapper {
  height: 100%;
  position: relative;
  max-width: 100%;
}

.banner-image {
  position: relative;
  max-width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  animation: slideInFromRight 1s ease-out;
  transition: var(--transition-base);
  z-index: 2;
}

.banner-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--pink-light-color) 0%, var(--pink-light-color) 15%, transparent 75%);
  z-index: 3;
  pointer-events: none;
}

/* Banner Section: Responsive */
@media (max-width: 991px) {
  .banner-section {
    padding: 100px 0 0 0;
    margin-top: 80px;
  }

  .banner-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .banner-left {
    max-width: 100%;
    order: 1;
  }

  .banner-right {
    order: 2;
    justify-content: center;
  }

  .banner-left h1 {
    font-size: 2.8rem;
  }

  .banner-left p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .banner-plus-drawings {
    width: 300px;
    top: 10%;
    right: -10%;
  }
  
  .banner-image {
    bottom: 0;
    max-height: 340px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: 80px 0 0 0;
    margin-top: 60px;
  }

  .banner-content {
    gap: 40px;
  }

  .banner-left h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .banner-left p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .banner-btn {
    padding: 14px 28px;
    font-size: 13px;
  }

  .banner-plus-drawings {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    padding: 60px 0 0 0;
    margin-top: 0px;
  }

  .banner-content {
    gap: 30px;
  }

  .banner-left h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .banner-left p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .banner-btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .banner-plus-drawings {
    width: 200px;
    opacity: 0.05;
  }
}

/* Treatments Section */
.treatments-section {
  background-color: var(--pink-light-color);
  position: relative;
  padding: 80px 0;
}

.treatment-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 420px;
  display: flex;
  flex-direction: row;
  padding: 40px 48px;
}

.treatment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}

.treatment-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.treatment-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.4s ease;
  background-color: var(--off-blue);
}

.treatment-card:hover .treatment-image img {
  transform: scale(1.05);
}

.treatment-content h1 {
  color: var(--black-color);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.treatment-content p {
  max-width: 720px;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.treatment-btn {
  background: var(--pink-color);
  color: var(--white-color);
  border: 2px solid var(--pink-color);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  text-align: center;
  align-self: flex-start;
}

.treatment-btn:hover {
  background: transparent;
  color: var(--pink-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}

/* Treatments Section: Responsive */
@media (max-width: 991px) {
  .treatments-section {
    padding: 60px 0;
    margin-top: 40px;
  }

  .globe-1,
  .blue-plus-1,
  .blue-plus-2 {
    display: none;
  }

  .treatment-card {
    flex-direction: column;
    height: auto;
    padding: 16px;
  }

  .treatment-content {
    order: 2;
    padding: 40px 30px;
  }

  .treatment-icon-wrapper {
    display: none;
  }

  .treatment-content h3 {
    font-size: 24px;
  }

  .treatment-image {
    order: 1;
    border-radius: 16px;
    min-height: 250px;
  }

  .treatment-image img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .treatments-section {
    padding: 40px 0;
  }

  .treatment-content {
    padding: 30px 20px;
  }

  .treatment-icon-wrapper {
    margin-bottom: 20px;
  }

  .treatment-icon {
    width: 48px;
    height: 48px;
  }

  .treatment-content h3 {
    font-size: 20px;
  }

  .treatment-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .treatment-btn {
    font-size: 12px;
    padding: 10px 20px;
  }

  .treatment-image {
    min-height: 200px;
  }
}

/* Inner Page Sections */
.u-banner {
  position: relative;
  z-index: 3;
  background-color: var(--off-blue);
  overflow: visible;
}

.u-banner .container {
  background-color: var(--white-color);
  border-radius: 16px;
  margin-top: -20px;
  overflow: hidden;
}

.u-banner .page-header h2 {
  font-size: 28px;
}

.inner-page-section-1 {
  background-color: var(--white-color);
}

.inner-page-section-1 .page-header {
  text-align: left;
}

.inner-page-section-2 {
  position: relative;
  top: -12px;
  overflow: visible;
  z-index: 4;
}

.inner-page-section-2 .container {
  background-color: var(--white-color);
  border-radius: 4px;
}

.inner-page-section-2 .page-title {
  font-size: 32px;
  font-weight: 600;
}

.inner-content-holder {
  color: var(--black-color);
}

.inner-content-holder .inner-content {
  margin-bottom: 48px;
}

.inner-content-holder h1,
.inner-content-holder h2,
.inner-content-holder h3 {
  font-weight: 600;
  color: var(--pink-color);
  margin-bottom: 16px;
}

.inner-content-holder h1 {
  font-size: 32px;
}

.inner-content-holder h2 {
  font-size: 24px;
}

.inner-content-holder h3 {
  font-size: 20px;
}

.inner-content-holder p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 16px;
}

.inner-content-holder img {
  border-radius: 16px;
  margin-top: 16px;
  margin-bottom: 32px;
}

.inner-content-holder .small-text {
  font-size: 12px;
  font-weight: 300;
}

.inner-treatment-content h2,
.inner-treatment-content h3 {
  font-weight: 600;
  color: var(--pink-color);
  margin-block: 16px;
}

.inner-treatment-content h2 {
  font-size: 16px;
  text-transform: uppercase;
}

.inner-treatment-content h3 {
  font-size: 18px;
}

#physicians {
  overflow: hidden;
}

@media (max-width: 991px) {
  .inner-page-section-2 .container {
    padding-inline: 16px !important;
  }
}

/* Cards */
.nt-card, .inner-treatment-content .ql-code-block {
  background: linear-gradient(0deg, rgba(238, 242, 248, 0.5) 0%, rgba(238, 242, 248, 0.5) 100%), rgb(255, 255, 255);
  border: 1px solid rgba(9, 36, 124, 0.2);
  border-radius: 0.25rem;
  padding: 16px;
  margin-bottom: 24px;
}

.nt-card.with-img {
  padding: 0;
}

.nt-card.with-img .nt-card-content {
  padding: 36px;
}

.nt-card.with-img .nt-card-img img {
  width: 100%;
  margin: 0;
  border-radius: 0;
}

.inner-treatment-card img {
  height: 540px;
}

.nt-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.nt-card table th,
.nt-card table td {
  padding: 16px 0px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.nt-card table th {
  display: none;
}

.nt-card table td {
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
}

.nt-card table td:first-child {
  color: var(--pink-color);
  font-weight: 500;
}

.nt-card table td:last-child {
  min-width: 40%;
  color: var(--pink-color);
  font-weight: 400;
  text-align: right;
}

.nt-card table tbody tr:hover {
  background-color: #f9fafb;
}

.nt-card table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nt-card table th,
  .nt-card table td {
    padding: 12px 0px;
    font-size: 14px;
  }
  
  .nt-card table td:first-child {
    padding-right: 16px;
    font-size: 14px;
  }
  
  .nt-card table td:last-child {
    font-size: 14px;
  }
}

/* Lists */
.dc-list ol,
.inner-treatment-content ol {
  list-style: none;
  counter-reset: item;
}

.dc-list ol li:before,
.inner-treatment-content ol li[data-list="bullet"]:before {
  content: '»';
  color: var(--purple-color);
  margin-right: 8px;
  font-size: 20px;
  position: absolute;
  left: 18px;
  line-height: 22px;
}

.inner-treatment-content li[data-list="ordered"] {
  list-style: square;
}

.inner-treatment-content ol li {
  margin-bottom: 16px;
  font-weight: 300;

  & strong {
    font-weight: 600;
  }
}

.inner-treatment-content ol li[data-list="bullet"]:before {
  left: 10px;
  line-height: 20px;
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list li {
  color: var(--pink-color);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 24px;
}

.amenity-list li::before {
  content: '»';
  color: var(--purple-color);
  margin-right: 8px;
  font-size: 20px;
  position: absolute;
  left: 0;
}

/* Swiper Styles */
.inner-page-swiper {
  overflow: visible;
  padding: 40px 0;
  perspective: 1200px;
}

.inner-page-swiper.swiper-carousel {
  overflow: visible;
}

.inner-page-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transform-style: preserve-3d;
}

.inner-page-swiper .swiper-slide {
  width: 520px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.inner-page-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backface-visibility: hidden;
  will-change: transform;
}

.inner-page-swiper .swiper-slide:hover img {
  transform: scale(1.03);
}

.inner-page-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.inner-page-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(35, 55, 141, 0.3);
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.inner-page-pagination .swiper-pagination-bullet-active {
  background: var(--pink-color);
  transform: scale(1.2);
}

.swiper-slide.pj-slide {
  height: 380px;
  background-color: var(--off-blue);
  border-radius: 6px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 20px;
}

.swiper-slide.pj-slide .pj-wrapper {
  width: 100%;
  height: 100%;
  padding: 16px;
}

.swiper-slide.pj-slide .pj-counter {
  width: 40px;
  height: 40px;
  background-color: #D5DCE8;
  color: var(--pink-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide.pj-slide .pj-counter p {
  font-size: 12px;
  font-weight: 350;
}

.swiper-slide.pj-slide .pj-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 16px;
  gap: 36px;
}

.swiper-slide.pj-slide .pj-content img {
  max-width: 140px;
  max-height: 150px;
  object-fit: contain;
}

.swiper-slide.pj-slide .pj-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--pink-color);
  padding-inline: 24px;
  line-height: 1.4;
}

.swiper-slide-active .pj-wrapper {
  background-color: #fafafa;
}

.swiper-button-disabled {
  display: none !important;
}

.treatments-swiper {
  position: relative;
  overflow: visible;
}

.treatments-swiper {
  padding-bottom: 60px;
}

.treatments-next,
.treatments-prev,
.mainpage-gallery-next,
.mainpage-gallery-prev {
  width: 50px !important;
  height: 50px !important;
  background: var(--pink-color) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 20px !important;
  transition: var(--transition-base) !important;
}

.treatments-next:hover,
.treatments-prev:hover,
.mainpage-gallery-next:hover,
.mainpage-gallery-prev:hover {
  background: var(--pink-color) !important;
  transform: scale(1.1) !important;
}

.treatments-next::after,
.treatments-prev::after,
.doctors-next::after,
.mainpage-gallery-next::after,
.mainpage-gallery-prev::after {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.treatments-next {
  right: -20px !important;
}

.treatments-prev {
  left: -20px !important;
}

.treatments-pagination {
  bottom: 20px !important;
}

.treatments-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #ddd !important;
  opacity: 1 !important;
  transition: var(--transition-base) !important;
}

.treatments-pagination .swiper-pagination-bullet-active {
  background: var(--pink-color) !important;
  transform: scale(1.2) !important;
}

/* Swiper: Responsive */
@media (max-width: 991px) {
  .treatments-next,
  .treatments-prev {
    display: none;
  }
}

@media (max-width: 768px) {
  .inner-page-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .inner-page-swiper .swiper-slide {
    width: 320px;
    height: 225px;
  }
  
  .inner-page-swiper {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .inner-page-swiper .swiper-slide {
    width: 280px;
    height: 188px;
  }

  .inner-page-swiper .swiper-slide.pj-slide {
    width: 320px;
    height: 380px;
  }
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--pink-light-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  border-color: var(--pink-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(176, 33, 130, 0.15);
}

.faq-item.active {
  border-color: var(--pink-color);
  box-shadow: 0 8px 25px rgba(176, 33, 130, 0.15);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(176, 33, 130, 0.05);
}

.faq-item.active .faq-question {
  background: rgba(176, 33, 130, 0.05);
  border-bottom: 1px solid rgba(176, 33, 130, 0.1);
}

.faq-question h3 {
  color: var(--pink-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  color: white;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--purple-color);
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 28px;
  margin: 0;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.inner-page-section-2.about-us-page ol {
  list-style: disc;
  padding-left: 0px;
}

/* FAQ Section: Responsive */
@media (max-width: 991px) {
  .faq-section {
    max-width: 100%;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
  
  .faq-header h2 {
    font-size: 36px;
  }
  
  .faq-header p {
    font-size: 16px;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .faq-question h3 {
    font-size: 16px;
    padding-right: 16px;
  }
  
  .faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-header {
    margin-bottom: 32px;
  }
  
  .faq-header h2 {
    font-size: 28px;
  }
  
  .faq-header p {
    font-size: 15px;
  }
  
  .faq-container {
    gap: 12px;
  }
  
  .faq-item {
    border-radius: 12px;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question h3 {
    font-size: 15px;
    padding-right: 12px;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  
  .faq-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq-header {
    margin-bottom: 28px;
  }
  
  .faq-header h2 {
    font-size: 24px;
  }
  
  .faq-header p {
    font-size: 14px;
  }
  
  .faq-question {
    padding: 16px 18px;
  }
  
  .faq-question h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .faq-answer p {
    padding: 0 18px 18px 18px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Gallery Section Styles */
.gallery-filters {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-filters .filter-btn {
  margin: 0 8px 8px 0;
  background: transparent;
  color: var(--pink-color);
  border: 2px solid var(--pink-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-base);
  cursor: pointer;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background: var(--pink-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
}

.gallery-item {
  transition: all 0.3s ease;
  opacity: 1;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  flex-shrink: 0;
}

.gallery-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-overlay:hover {
  opacity: 1;
}

.gallery-overlay svg {
  width: 60px;
  height: 60px;
  color: white;
  background: var(--pink-color);
  border-radius: 50%;
  padding: 15px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.gallery-overlay:hover svg {
  transform: scale(1.1);
  background: var(--purple-color);
}

.gallery-image .video-overlay {
  background: transparent !important;
}

.gallery-overlay.video-overlay svg {
  background: rgba(176, 33, 130, 0.9);
  backdrop-filter: blur(10px);
}

.gallery-overlay.video-overlay:hover svg {
  background: rgba(114, 71, 134, 0.95);
}

/* Gallery: Responsive */
@media (max-width: 991px) {
  .gallery-filters {
    margin-bottom: 40px;
  }

  .gallery-filters .filter-btn {
    margin: 0 4px 8px 0;
    padding: 10px 20px;
    font-size: 13px;
  }

  .gallery-image {
    height: 240px;
  }

  .gallery-overlay svg {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .gallery-filters {
    margin-bottom: 30px;
  }

  .gallery-filters .filter-btn {
    display: block;
    width: 100%;
    margin: 0 0 12px 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-image {
    height: 220px;
  }

  .gallery-overlay svg {
    width: 45px;
    height: 45px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-filters {
    margin-bottom: 25px;
  }

  .gallery-image {
    height: 200px;
  }

  .gallery-overlay svg {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}

/* 5. KEYFRAME ANIMATIONS
-------------------------------------------------------------------------------- */
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.contact-left {
  max-width: 600px;
  display: flex;
  align-items: center;
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-header h2 {
  color: var(--pink-color);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-header p {
  color: var(--pink-color);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.8;
}



.contact-left {
  position: relative;
  height: 600px;
}

.contact-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.contact-image-wrapper:hover img {
  transform: scale(1.05);
}

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px;
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-details h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.contact-details a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-circle-1,
.bg-circle-2 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(176, 33, 130, 0.1) 0%, rgba(114, 71, 134, 0.1) 100%);
  animation: floatBackground 8s ease-in-out infinite;
}

.bg-circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -150px;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -100px;
  animation-delay: 2s;
}

.bg-plus-1,
.bg-plus-2 {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.bg-plus-1::before,
.bg-plus-1::after,
.bg-plus-2::before,
.bg-plus-2::after {
  content: '';
  position: absolute;
  background: var(--pink-color);
}

.bg-plus-1::before,
.bg-plus-2::before {
  width: 40px;
  height: 4px;
  top: 18px;
  left: 0;
}

.bg-plus-1::after,
.bg-plus-2::after {
  width: 4px;
  height: 40px;
  top: 0;
  left: 18px;
}

.bg-plus-1 {
  top: 20%;
  left: 10%;
  animation: rotate 20s linear infinite;
}

.bg-plus-2 {
  bottom: 30%;
  right: 20%;
  animation: rotate 15s linear infinite reverse;
}

/* Contact Section: Responsive */
@media (max-width: 1199px) {
  .contact-content {
    gap: 60px;
  }
  
  .contact-header h2 {
    font-size: 36px;
  }
  
  .contact-left {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-left {
    display: none;
  }
  
  .contact-right {
    align-items: center;
  }
  
  .contact-header {
    text-align: center;
  }
  
  .contact-header h2 {
    font-size: 32px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-image-overlay {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-content {
    gap: 40px;
  }
  
  .contact-header h2 {
    font-size: 28px;
  }
  
  .contact-header p {
    font-size: 16px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .contact-submit-btn {
    padding: 16px 28px;
    font-size: 15px;
  }
  
  .contact-info {
    gap: 16px;
  }
  
  .contact-info-item {
    padding: 12px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon img {
    width: 20px;
    height: 20px;
  }
  
  .contact-details h4 {
    font-size: 14px;
  }
  
  .contact-details p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .contact-content {
    gap: 30px;
  }
  
  .contact-header h2 {
    font-size: 24px;
  }
  
  .contact-header p {
    font-size: 15px;
  }
  
  .contact-form {
    padding: 20px;
    border-radius: 16px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .phone-group .iti {
    width: 100%;
  }
  
  .contact-submit-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .contact-image-overlay {
    padding: 20px;
  }
  
  .contact-info {
    gap: 12px;
  }
  
  .contact-info-item {
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
  }
  
  .contact-icon img {
    width: 18px;
    height: 18px;
  }
}

@keyframes floatBackground {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Image row for treatment content */
.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.image-row p {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.image-row p img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .image-row {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .image-row p {
        flex: 1 1 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
    }
    
    .image-row p:nth-child(3) {
        flex: 1 1 100%;
        min-width: 100%;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .image-row {
        gap: 10px;
    }
    
    .image-row p {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }
    
    .image-row p:nth-child(3) {
        flex: 1 1 100%;
        min-width: 100%;
        margin-top: 5px;
    }
}

/* Process Flow Layout */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
    padding: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-color);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step .step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(176, 33, 130, 0.3);
}

.process-step .step-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
}

.process-step .step-text {
    color: var(--pink-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.process-step .step-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--pink-color);
}

/* Process flow responsive */
@media (max-width: 991px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .process-step .step-icon {
        width: 100px;
        height: 100px;
    }
    
    .process-step .step-icon img {
        width: 50px;
        height: 50px;
    }
    
    .process-step .step-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .process-flow {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 25px 0;
        padding: 25px 0;
    }
    
    .process-step .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    
    .process-step .step-icon img {
        width: 40px;
        height: 40px;
    }
    
    .process-step .step-text {
        font-size: 14px;
    }
}

.floating-socials {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.social-wrapper {
  gap: 8px;
}

/* Main Page Gallery */
.mainpage-gallery {
  background-color: var(--pink-light-color);

  & img {
    border-radius: 16px;
  }
}

.mainpage-gallery-swiper {
  padding-bottom: 40px;
}

/* Blog Section */
.blog-section {
  background-color: var(--off-blue);
  padding: 60px 0;
}

.card {
  background: var(--pink-light-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 540px;
  display: flex;
  flex-direction: column;
}

.sidebar-sticky .card {
  background-color: transparent;
  border: 1px solid var(--pink-color);
}

.card:hover {
  transform: translateY(-8px);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  margin-top: 0px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}

.card-content p {
  color: var(--black-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-content .nt-btn {
  align-self: flex-start;
  font-size: 12px;
  padding: 10px 20px;
  margin-top: auto;
  margin-bottom: 0;
}

/* Card Component: Responsive */
@media (max-width: 991px) {
  .blog-section {
    padding: 50px 0;
  }

  .card {
    height: 520px;
  }

  .card-content {
    padding: 25px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    min-height: 65px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 40px 0;
  }

  .card {
    height: 440px;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .card-content p {
    font-size: 14px;
    margin-bottom: 16px;
    min-height: 63px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 30px 0;
  }

  .card {
    height: 420px;
  }

  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 18px;
  }

  .card-content h3 {
    font-size: 15px;
  }

  .card-content p {
    font-size: 13px;
  }

  .card-content .nt-btn {
    font-size: 11px;
    padding: 8px 16px;
  }
}

/* Video overlay styling */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-overlay:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

.video-overlay svg {
  width: 80px;
  height: 80px;
  color: white;
  background: var(--pink-color);
  border-radius: 50%;
  padding: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-overlay:hover svg {
  transform: scale(1.1);
  background: var(--purple-color);
}

/* Always show play button with subtle overlay */
.mainpage-videos .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.mainpage-videos .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  z-index: 1;
  transition: all 0.3s ease;
}

.mainpage-videos .swiper-slide:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.mainpage-videos .video-overlay {
  opacity: 1;
  background: transparent;
  z-index: 2;
}

.mainpage-videos .video-overlay svg {
  width: 70px;
  height: 70px;
  padding: 18px;
  background: rgba(176, 33, 130, 0.9);
  backdrop-filter: blur(10px);
}

.mainpage-videos .video-overlay:hover svg {
  background: rgba(114, 71, 134, 0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-overlay svg {
    width: 60px;
    height: 60px;
    padding: 15px;
  }
  
  .mainpage-videos .video-overlay svg {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .video-overlay svg {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  
  .mainpage-videos .video-overlay svg {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}

/* Patient Journey Section */
.patient-journey-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.patient-journey-content {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(90deg, var(--white-color) 0%, var(--white-color) 45%, transparent 75%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.patient-journey-left {
  flex: 1;
  max-width: 60%;
  padding: 36px 80px;
  z-index: 2;
  position: relative;
}

.patient-journey-left h3 {
  color: var(--vatan-blue);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
}

.patient-journey-left p {
  color: var(--vatan-blue);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.patient-journey-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}

.patient-journey-image {
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  position: relative;
  overflow: hidden;
}

.patient-journey-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--vatan-off-blue) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.patient-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.patient-journey-image:hover img {
  transform: scale(1.05);
}

/* Patient Journey Section: Responsive */
@media (max-width: 991px) {
  .patient-journey-section {
    padding: 40px 0;
  }

  .patient-journey-content {
    flex-direction: column;
    background: var(--white-color);
    min-height: auto;
  }

  .patient-journey-left {
    max-width: 100%;
    padding: 40px;
    text-align: center;
  }

  .patient-journey-left h2 {
    font-size: 36px;
  }

  .patient-journey-left p {
    font-size: 16px;
    max-width: 100%;
  }

  .patient-journey-right {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }

  .patient-journey-image {
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .patient-journey-section {
    padding: 30px 0;
  }

  .patient-journey-left {
    padding: 30px 20px;
  }

  .patient-journey-left h2 {
    font-size: 28px;
  }

  .patient-journey-left p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .patient-journey-right {
    height: 250px;
  }
}

/* 5. KEYFRAME ANIMATIONS
-------------------------------------------------------------------------------- */

/* SITE-WIDE FORM STYLING
-------------------------------------------------------------------------------- */
/* Form Containers */
.nhform-section {
  position: relative;
  overflow: hidden;
}

.nhform-section .container {
  padding: 0;
}

.nhform-wrapper {
  margin: 0 auto;
  background: var(--white-color);
  border-radius: 8px;
  padding: 60px 50px;
}

.nhform-content .nhform-title {
  color: var(--pink-color);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.nhform-content .nhform-description {
  color: var(--black-color);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0.8;
}

/* Form Base Styling */
.nhform {
  max-width: 100%;
}

.nhform .form-group {
  position: relative;
  margin-bottom: 24px;
}

.nhform .form-control,
.nhform input,
.nhform select,
.nhform textarea {
  width: 100%;
  height: 56px;
  padding: 16px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: none;
}

.nhform .form-control:focus,
.nhform input:focus,
.nhform select:focus,
.nhform textarea:focus {
  outline: none;
  border-color: var(--pink-color);
  box-shadow: 0 0 0 3px rgba(176, 33, 130, 0.1);
}

.nhform input::placeholder,
.nhform textarea::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

.nhform textarea {
  resize: vertical;
  min-height: 120px;
  height: auto;
}

/* International Telephone Input Styling */
.nhform .iti {
  width: 100%;
  display: block;
}

.nhform .iti__country-list {
  z-index: 9999;
  border-radius: 8px;
  border: 2px solid #e1e5e9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nhform .iti__flag-box {
  border-radius: 6px 0 0 6px;
}

.nhform .iti__selected-flag {
  border-radius: 6px 0 0 6px;
  border: 2px solid #e1e5e9;
  border-right: none;
  background: #f8f9fa;
  padding: 0 12px;
  height: 56px;
  display: flex;
  align-items: center;
}

.nhform .iti__selected-flag:hover,
.nhform .iti__selected-flag:focus {
  background: #f0f1f2;
}

.nhform .iti input {
  border-radius: 6px;
  padding-left: 68px !important;
}

.iti__search-input {
  display: none !important;
}

.nhform .iti__flag-container {
  top: -1px;
  left: -1px !important;
}

.nhform .iti input:focus {
  border-color: var(--pink-color);
  border-left: none;
}

.nhform .iti.iti--allow-dropdown input {
  padding-left: 52px;
}

/* Form Submit Button */
.nhform-submit {
  background: linear-gradient(135deg, var(--pink-color) 0%, var(--purple-color) 100%);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
}

.nhform-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(176, 33, 130, 0.3);
}

.nhform-submit:active {
  transform: translateY(0);
}

.nhform-submit .btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Form Actions */
.nhform-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Form Validation States */
.nhform .form-control.is-invalid,
.nhform input.is-invalid,
.nhform select.is-invalid,
.nhform textarea.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.nhform .form-control.is-valid,
.nhform input.is-valid,
.nhform select.is-valid,
.nhform textarea.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.nhform .invalid-feedback {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.nhform .valid-feedback {
  color: #28a745;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* Form Row Spacing */
.nhform .row {
  margin-bottom: 0;
}

.nhform .row .col,
.nhform .row [class*="col-"] {
  padding-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nhform-wrapper {
    margin: 0 20px;
    padding: 40px 30px;
  }
  
  .nhform-content .nhform-title {
    font-size: 2rem;
  }
  
  .nhform-submit {
    padding: 16px 40px;
    font-size: 14px;
    min-width: 180px;
  }
  
  .nhform .form-control,
  .nhform input,
  .nhform select,
  .nhform textarea {
    height: 52px;
    padding: 14px 18px;
    font-size: 13px;
  }
  
  .nhform .iti__selected-flag {
    height: 52px;
  }
}

@media (max-width: 480px) {
  .nhform-wrapper {
    margin: 0 15px;
    padding: 30px 20px;
  }
  
  .nhform-content .nhform-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .nhform-content .nhform-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .nhform .form-control,
  .nhform input,
  .nhform select,
  .nhform textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .nhform-submit {
    padding: 14px 32px;
    font-size: 13px;
    min-width: 160px;
  }
}



/* 5. KEYFRAME ANIMATIONS
-------------------------------------------------------------------------------- */