:root {
  --primary: #b8860b;
  --primary-light: #d4a843;
  --primary-dark: #8b6914;
  --accent: #2c6e49;
  --accent-light: #4c956c;
  --bg-cream: #faf8f4;
  --bg-light: #f0ebe3;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5a;
  --text-light: #7a7a8a;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* 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.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader {
  width: 60px; height: 60px;
  border: 4px solid var(--bg-light);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 45px; height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,134,11,0.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}
.hamburger span {
  width: 28px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--white);
  padding: 100px 40px 40px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--bg-light);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--primary); padding-left: 10px; }
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, #e8e0d4 100%);
}
.hero-bg-shapes {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  overflow: hidden;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -100px;
  animation: float 20s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -150px; left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--primary-light);
  top: 40%; left: 30%;
  animation: float 12s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 15px) scale(1.02); }
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { animation: slideInLeft 1s ease 0.5s both; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.8s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge i { font-size: 14px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.hero h1 .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0;
  width: 100%; height: 8px;
  background: rgba(184,134,11,0.2);
  z-index: -1;
}
.hero p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(184,134,11,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}
.btn-secondary:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 1s ease 1.2s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}
.hero-stat .label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.hero-image {
  position: relative;
  animation: slideInRight 1s ease 0.7s both;
  display: flex;
  justify-content: center;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-image-wrapper {
  position: relative;
  width: 420px; height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent-light), var(--primary-light));
  border-radius: 32px;
  z-index: -1;
  animation: borderRotate 6s linear infinite;
}
@keyframes borderRotate {
  0% { background: linear-gradient(0deg, var(--primary), var(--accent-light)); }
  50% { background: linear-gradient(180deg, var(--accent-light), var(--primary-light)); }
  100% { background: linear-gradient(360deg, var(--primary), var(--accent-light)); }
}
.hero-img-placeholder, .about-img-placeholder, .treatment-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8ddd0 0%, #d5c8b8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
}
.hero-img-placeholder i, .about-img-placeholder i, .treatment-img-placeholder i {
  font-size: 80px;
  color: var(--primary-light);
  margin-bottom: 15px;
  opacity: 0.6;
}
.hero-img-placeholder span, .about-img-placeholder span, .treatment-img-placeholder span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-card-1 {
  top: 40px; left: -40px;
  display: flex; align-items: center; gap: 10px;
  animation-delay: 0s;
}
.floating-card-1 .fc-icon {
  width: 40px; height: 40px;
  background: rgba(184,134,11,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.floating-card-1 .fc-text strong {
  display: block;
  font-size: 14px;
}
.floating-card-1 .fc-text small {
  color: var(--text-light);
  font-size: 11px;
}
.floating-card-2 {
  bottom: 80px; right: -30px;
  animation-delay: 1s;
  text-align: center;
}
.floating-card-2 .stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 4px;
}
.floating-card-2 strong {
  font-size: 18px;
  color: var(--text-dark);
}
.floating-card-2 small {
  display: block;
  color: var(--text-light);
  font-size: 11px;
}

/* Section Styles */
section { padding: 100px 0; }
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .overline {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* About Section */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-experience-badge .big-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-experience-badge span {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}
.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.about-feature i {
  color: var(--accent);
  font-size: 16px;
}

/* Services Section */
.services { background: var(--bg-cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card-image-box {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.service-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-card-image-box img {
  transform: scale(1.05);
}
.service-card-floating-icon {
  position: absolute;
  top: 178px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary); /* Golden badge icon */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.35);
  z-index: 2;
}
.service-card-body {
  padding: 35px 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.service-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 48px;
  opacity: 0.8;
}
.service-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0b2265; /* Navy Blue title */
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.service-card-tag {
  font-size: 10px;
  font-weight: 500;
  color: #6c757d;
  background-color: #f1f3f5;
  padding: 4px 10px;
  border-radius: 50px;
}
.service-card-footer {
  padding: 16px 24px;
  border-top: 1px solid #f1f3f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card-link {
  color: #e65f2b; /* orange */
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card-link:hover {
  gap: 10px;
}
.service-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6c757d;
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Treatments Accordion */
.treatments { background: var(--white); }
.treatments-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.treatments-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 16px;
}
.treatments-info > p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 30px;
}
.treatment-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  background: var(--bg-cream);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.active {
  box-shadow: var(--shadow);
  background: var(--white);
}
.accordion-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}
.accordion-header:hover { color: var(--primary); }
.accordion-header i {
  transition: var(--transition);
  font-size: 14px;
  color: var(--primary);
}
.accordion-item.active .accordion-header i.fa-chevron-down {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}
.treatments-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
}

/* Testimonials */
.testimonials { background: var(--bg-cream); }
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 100%;
  padding: 20px;
}
.testimonial-card-inner {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.testimonial-card-inner .stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 20px;
}
.testimonial-card-inner blockquote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 25px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-author-info strong {
  display: block;
  font-size: 15px;
}
.testimonial-author-info small {
  color: var(--text-light);
  font-size: 12px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.slider-btn {
  width: 45px; height: 45px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-size: 16px;
}
.slider-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  color: white;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 14px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* Contact Section */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-detail {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-detail .cd-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: rgba(184,134,11,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}
.contact-detail strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-detail span, .contact-detail a {
  font-size: 14px;
  color: var(--text-medium);
  text-decoration: none;
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--primary); }
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
}
.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.contact-form-wrapper {
  background: var(--bg-cream);
  border-radius: 24px;
  padding: 40px;
}
.contact-form-wrapper h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(184,134,11,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-error {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
}
.form-group.error .form-error { display: block; }
.form-success {
  display: none;
  background: rgba(44,110,73,0.1);
  color: var(--accent);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}
.form-success.show { display: block; }

/* Map Section */
.map-section {
  background: var(--bg-cream);
  padding: 0;
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
}
.map-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder .map-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.map-placeholder:hover .map-overlay {
  opacity: 1;
  pointer-events: all;
}
.map-overlay a {
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.map-overlay a:hover { transform: scale(1.05); }

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo-icon {
  margin-bottom: 15px;
}
.footer-brand .logo-text {
  color: white;
  font-size: 20px;
}
.footer-brand .logo-text span {
  color: rgba(255,255,255,0.5);
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours .hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-hours .hour-row span:last-child {
  color: rgba(255,255,255,0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary-light); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(184,134,11,0.35);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 5px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 5px 35px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Videos Section */
.videos-section {
  background: var(--bg-cream);
  padding: 80px 0;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}
.video-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition);
}
.video-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.05);
  opacity: 0.7;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px; /* Align play triangle */
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
  transition: var(--transition);
  z-index: 2;
  pointer-events: none; /* Let clicks pass through to wrapper */
}
.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}
.video-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.video-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.video-card-body p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Lightbox Modal */
.video-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.video-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-lightbox-modal.active .lightbox-content {
  transform: scale(1);
}
.lightbox-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--primary-light);
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 35px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image-wrapper { width: 320px; height: 380px; }
  .floating-card-1 { left: 0; }
  .floating-card-2 { right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-experience-badge { right: 20px; }
  .services-grid, .videos-grid { grid-template-columns: 1fr 1fr; }
  .treatments-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .services-grid, .videos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-image-wrapper { width: 280px; height: 340px; }
  .hero-stats { gap: 25px; }
  .floating-card { display: none; }
  .contact-form-wrapper { padding: 25px; }
}

/* Particle effects */
.particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
