:root {
  --dark-green: #0d2818;
  --medium-green: #1a4d2e;
  --light-green: #2d6b4a;
  --gold: #d4af37;
  --cream: #fff7e6;
  --red: #c8102e;
  --yellow: #f6c519;
  --white: #ffffff;
  --dark: #1a1a1a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #f9f9f9;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-bottom: 1px solid #e5e5e5;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 8px 25px;
}

.nav img {
  height: 55px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 35px;
  flex: 1;
}

.nav a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--dark-green);
}

.nav-social {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 8px 0;
}

.nav-social a {
  color: white;
  font-size: 16px;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-green);
  border-radius: 50%;
  text-decoration: none;
}

.nav-social a:hover {
  background: var(--medium-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.75), rgba(13,40,24,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 40px;
  animation: fadeInUp 1s ease;
}

.lang-badge {
  font-family: 'Noto Sans Telugu', 'Noto Serif Devanagari', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 44px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  font-weight: 300;
  font-family: 'Helvetica Neue', 'Segoe UI', -apple-system, sans-serif;
  letter-spacing: 1.5px;
}

.decorative-lotus {
  font-size: 36px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.welcome-text {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: 2px;
  color: var(--gold);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #20c857);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.carousel-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  pointer-events: all;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  pointer-events: none;
}

.indicator {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  transition: all 0.3s;
  pointer-events: all;
  cursor: pointer;
}

.indicator.active {
  background: var(--gold);
  width: 50px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
  padding: 80px 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Treatments Section */
.treatments-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.treatments-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.section-title {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-green);
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: 'Helvetica Neue', 'Segoe UI', -apple-system, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title::before {
  content: '🌿';
  font-size: 32px;
  display: block;
  margin-bottom: 15px;
  opacity: 0.7;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.treatment-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s;
  border: 1px solid #eee;
}

.treatment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
}

.treatment-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.treatment-content {
  padding: 25px;
}

.treatment-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-green);
  font-weight: 400;
  font-family: 'Helvetica Neue', 'Segoe UI', -apple-system, sans-serif;
  letter-spacing: 1px;
}

.treatment-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  background: linear-gradient(135deg, var(--cream), #fff4e0);
  color: var(--dark-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #f0e6cc;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, white 0%, #f9f9f9 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.4s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream), #fffbf0);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  color: var(--dark-green);
  margin-bottom: 30px;
  font-weight: 300;
  font-family: 'Helvetica Neue', 'Segoe UI', -apple-system, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

.contact-info i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #20c857);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-green), #0a1f14);
  color: #ccc;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer strong {
  color: var(--gold);
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

.footer i {
  color: var(--gold);
  margin-right: 8px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .nav-links {
    display: none;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .stats-grid,
  .treatments-grid {
    grid-template-columns: 1fr;
  }
}
