@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #39762C;
  --primary-dark: #164a3d;
  --primary-light: #2a7a66;
  --primary-pale: #e8f5f0;
  --gold: #c8a951;
  --gold-light: #d4bc72;
  --gold-dark: #b89a3f;
  --gold-pale: #fdf8eb;
  --white: #ffffff;
  --off-white: #f9fafb;
  --light-gray: #f3f4f6;
  --gray: #9ca3af;
  --dark-gray: #4b5563;
  --text: #1f2937;
  --text-light: #6b7280;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.3; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { color: var(--text-light); line-height: 1.8; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.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; }
.preloader-content { text-align: center; }
.preloader-logo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; animation: pulse-glow 1.5s ease-in-out infinite; }
.preloader-spinner { width: 50px; height: 50px; border: 3px solid var(--primary-pale); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 16px auto 0; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30,95,79,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(30,95,79,0.1); }
}

.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.top-bar-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.top-bar-track:hover { animation-play-state: paused; }
.top-bar-content {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
  white-space: nowrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.top-bar-item i { color: var(--gold); font-size: 14px; }
.top-bar-divider { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-pale); }
.nav-brand-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
.nav-brand-text span {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--primary); background: var(--primary-pale); }
.nav-links > li > a .arrow { font-size: 10px; transition: transform 0.3s ease; }
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  z-index: 1001;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--primary-pale); color: var(--primary); transform: translateX(4px); }
.dropdown a .drop-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dropdown a .drop-text strong { display: block; font-weight: 600; font-size: 0.85rem; }
.dropdown a .drop-text span { font-size: 0.75rem; color: var(--text-light); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1002;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(30,95,79,0.85) 0%, rgba(30,95,79,0.5) 40%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.slide-content {
  max-width: 650px;
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.slide-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.slide-content h1 span { color: var(--gold-light); }
.slide-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 500px;
}
.slider-controls {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 16px;
  z-index: 5;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); border-color: var(--gold); width: 36px; border-radius: 6px; }
.slider-arrows {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex; gap: 10px; z-index: 5;
}
.slider-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 18px;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30,95,79,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,95,79,0.4); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,169,81,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,169,81,0.4); }
.btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn i { font-size: 14px; }

.section { padding: 90px 0; }
.section-light { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-pale);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header h2 span { color: var(--primary); }
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-header p { max-width: 600px; margin: 0 auto; font-size: 0.95rem; }

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-image-badge .num { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; display: block; }
.about-image-badge .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { margin-bottom: 20px; }
.about-text > p { margin-bottom: 20px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 30px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.about-feature i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
}
.treatment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.treatment-card-img { height: 200px; overflow: hidden; position: relative; }
.treatment-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.treatment-card:hover .treatment-card-img img { transform: scale(1.08); }
.treatment-card-img .card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(30,95,79,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}
.treatment-card:hover .card-overlay { opacity: 1; }
.treatment-card-body { padding: 24px; }
.treatment-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.treatment-card-body p { font-size: 0.88rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--gold); }
.card-link i { font-size: 12px; transition: var(--transition); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-pale); }
.why-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-pale), var(--gold-pale));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: rotateY(180deg);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; }

.stats-bar { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { color: var(--white); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; opacity: 0.85; }

.testimonial-slider-wrap { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-slide { min-width: 100%; padding: 0 20px; }
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-info strong { display: block; font-size: 0.95rem; }
.testimonial-info span { font-size: 0.8rem; color: var(--text-light); }
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--gray); background: transparent;
  cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active { background: var(--primary); border-color: var(--primary); width: 30px; border-radius: 5px; }

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,81,0.15), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.footer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .nav-logo { width: 55px; height: 55px; margin-bottom: 14px; }
.footer-brand h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 4px; }
.footer-brand .tagline { color: var(--gold); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-pale); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 16px;
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text); 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(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--text-light);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.footer-contact-item i { color: var(--primary); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item p { font-size: 0.85rem; margin: 0; }
.footer-contact-item a { color: var(--text-light); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-light); }
.footer-bottom a { color: var(--primary); font-weight: 500; }

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,169,81,0.1), transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.85rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.mission-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-card .icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-pale), var(--gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.mission-card h3 { margin-bottom: 12px; }
.mission-card p { font-size: 0.88rem; }

.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
}
.timeline-item { margin-bottom: 36px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute; left: -33px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.timeline-item p { font-size: 0.88rem; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%; height: 380px; object-fit: cover;
}
.service-detail-content h2 { margin-bottom: 16px; font-size: 1.8rem; }
.service-detail-content > p { margin-bottom: 16px; font-size: 0.92rem; }
.service-list { margin: 20px 0 24px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 0.9rem; color: var(--text);
}
.service-list li i { color: var(--primary); font-size: 14px; margin-top: 4px; flex-shrink: 0; }

.gallery-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--primary-pale);
  background: var(--white); color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(30,95,79,0.8), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 0 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: var(--white); font-size: 32px;
  cursor: pointer; background: none; border: none;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 36px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.contact-info-card {
  padding: 24px; border-radius: var(--radius-lg);
  background: var(--primary-pale);
  text-align: center; transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-info-card i { font-size: 24px; color: var(--primary); margin-bottom: 10px; display: block; }
.contact-info-card h4 { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.82rem; margin: 0; }
.contact-info-card a { color: var(--text-light); }
.contact-info-card a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 280px; border: none; }
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 30px; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 6px; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; color: var(--text);
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,95,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success i { font-size: 48px; color: var(--primary); margin-bottom: 16px; display: block; }
.form-success h3 { color: var(--primary); margin-bottom: 8px; }

.chatbot-toggle {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(30,95,79,0.4);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: var(--transition);
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(30,95,79,0.5); }
.chatbot-toggle .badge-dot {
  position: absolute; top: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-glow 2s infinite;
}
.chatbot-window {
  position: fixed; bottom: 96px; right: 24px;
  width: 380px; max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 9998;
  display: none; flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chatbot-window.open { display: flex; transform: translateY(0) scale(1); opacity: 1; }
.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-header-info .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.chatbot-header-info .info h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600;
}
.chatbot-header-info .info span {
  font-size: 0.72rem; opacity: 0.8;
  display: flex; align-items: center; gap: 4px;
}
.chatbot-header-info .info span::before {
  content: ''; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%;
}
.chatbot-close {
  background: none; border: none;
  color: var(--white); cursor: pointer;
  font-size: 18px; opacity: 0.8;
  transition: var(--transition);
}
.chatbot-close:hover { opacity: 1; }
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  max-height: 340px; scroll-behavior: smooth;
}
.chat-msg {
  max-width: 85%; padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem; line-height: 1.6;
  animation: msgFadeIn 0.3s ease;
}
@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--primary-pale);
  color: var(--text); align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chat-suggestion {
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid var(--primary);
  background: var(--white); color: var(--primary);
  font-size: 0.75rem; font-family: 'Poppins', sans-serif;
  cursor: pointer; transition: var(--transition);
}
.chat-suggestion:hover { background: var(--primary); color: var(--white); }
.typing-indicator {
  display: flex; gap: 4px; padding: 12px 16px;
  background: var(--primary-pale);
  border-radius: var(--radius-lg); border-bottom-left-radius: 4px;
  align-self: flex-start; max-width: 60px;
}
.typing-indicator span {
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite; opacity: 0.4;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.chatbot-input {
  padding: 14px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 10px; align-items: center;
}
.chatbot-input input {
  flex: 1; padding: 10px 14px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; color: var(--text);
  transition: var(--transition);
}
.chatbot-input input:focus { outline: none; border-color: var(--primary); }
.chatbot-input button {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.chatbot-input button:hover { background: var(--primary-dark); }

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .about-preview, .service-detail, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--white); flex-direction: column;
    align-items: stretch; padding: 80px 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0; overflow-y: auto; z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links > li > a { padding: 14px 16px; font-size: 0.95rem; }
  .menu-toggle { display: flex; }
  .mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1000;
    display: none; opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-overlay.show { display: block; opacity: 1; }
  .dropdown {
    position: static; transform: none;
    box-shadow: none; border: none;
    padding: 0 0 0 16px;
    display: none; opacity: 1; visibility: visible;
    background: var(--off-white);
    border-radius: var(--radius); margin-top: 4px;
  }
  .dropdown.mobile-open { display: block; }
  .dropdown::before { display: none; }
  .hero-slider { height: 60vh; min-height: 400px; }
  .slide-overlay { padding: 0 24px; }
  .slide-content h1 { font-size: 1.8rem; }
  .slider-controls { left: 24px; bottom: 24px; }
  .slider-arrows { right: 24px; bottom: 24px; }
  .slider-arrow { width: 40px; height: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .about-image-badge { position: static; margin-top: 16px; display: inline-block; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .chatbot-window { right: 12px; left: 12px; width: auto; bottom: 90px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-slider { height: 55vh; min-height: 350px; }
  .slide-content h1 { font-size: 1.5rem; }
  .slide-content p { font-size: 0.9rem; }
  .treatments-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
}
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.bg-primary-pale { background: var(--primary-pale); }
