/* ==========================
   Root Variables (Original Colors & Fonts Preserved)
   ========================== */
:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens */
  --color-bg-1: rgba(59, 130, 246, 0.08);
  --color-bg-2: rgba(245, 158, 11, 0.08);
  --color-bg-3: rgba(34, 197, 94, 0.08);
  --color-bg-4: rgba(239, 68, 68, 0.08);
  --color-bg-5: rgba(147, 51, 234, 0.08);
  --color-bg-6: rgba(249, 115, 22, 0.08);
  --color-bg-7: rgba(236, 72, 153, 0.08);
  --color-bg-8: rgba(6, 182, 212, 0.08);

  /* Semantic Color Tokens (Light Mode Only) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography (Original Fonts) */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Custom Ayurvedic Theme Variables */
  --ayurveda-primary: #173503;
  --ayurveda-primary-light: #4a7c59;
  --ayurveda-primary-dark: #1a3009;
  --ayurveda-secondary: #8b4513;
  --ayurveda-accent: #daa520;
  --ayurveda-cream: #faf0e6;
  --ayurveda-beige: #f5f5dc;
  --ayurveda-gold: #baac41;

  /* Update primary colors to match Ayurvedic theme */
  --color-primary: var(--ayurveda-primary);
  --color-primary-hover: var(--ayurveda-primary-light);
  --color-primary-active: var(--ayurveda-primary-dark);

  /* Custom gradients */
  --gradient-primary: linear-gradient(135deg, var(--ayurveda-primary) 0%, var(--ayurveda-primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--ayurveda-cream) 0%, var(--ayurveda-beige) 100%);
}

/* Font Face Declaration */
@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2-cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2');
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Pacifico&display=swap');

/* ==========================
   Base Styles (Original Fonts)
   ========================== */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* Typography (Original Fonts) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code, pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* ==========================
   Preloader Styles
   ========================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--duration-normal) var(--ease-standard), visibility var(--duration-normal) var(--ease-standard);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: var(--color-btn-primary-text);
}

.logo-animation {
  animation: pulse 2s infinite;
  margin-bottom: var(--space-24);
}

.logo-animation i {
  font-size: var(--font-size-4xl);
  color: var(--ayurveda-gold);
  display: block;
  margin-bottom: var(--space-16);
}

.logo-animation h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  margin: 0;
  color: var(--color-btn-primary-text);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--ayurveda-gold);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* ==========================
   Top Contact Bar
   ========================== */
.top-contact-bar {
  background: var(--ayurveda-primary);
  color: var(--color-btn-primary-text);
  padding: var(--space-10) 0;
  font-size: var(--font-size-sm);
}

.contact-info span {
  margin-right: var(--space-24);
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.contact-info i {
  color: var(--ayurveda-gold);
}

.social-links {
  text-align: right;
}

.social-links a {
  color: var(--color-btn-primary-text);
  font-size: var(--font-size-lg);
  margin-left: var(--space-12);
  transition: color var(--duration-fast) var(--ease-standard);
}

.social-links a:hover {
  color: var(--ayurveda-gold);
}




/* ==========================
   Top Contact Bar - HIDDEN ON MOBILE
   ========================== */
.top-contact-bar {
  background: var(--ayurveda-primary);
  color: var(--color-btn-primary-text);
  padding: var(--space-10) 0;
  font-size: var(--font-size-sm);
}

/* Hide topbar on mobile */
@media (max-width: 991px) {
  .top-contact-bar {
    display: none; /* Hide completely on mobile */
  }
}

/* ==========================
   Header/Navbar - FIXED STICKY + MOBILE
   ========================== */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: var(--space-12) 0;
  box-shadow: var(--shadow-sm);
  position: sticky; /* Ensure sticky on all devices */
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  text-decoration: none;
  color: var(--color-text);
  flex: 1;
}

.navbar-brand img {
  height: 80px; /* Desktop size */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text .brand-name {
  font-family: 'Lora', serif;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--ayurveda-primary);
  line-height: var(--line-height-tight);
}

.brand-text .brand-tagline {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
}

/* Desktop Navigation */
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-4);
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  transition: all var(--duration-fast) var(--ease-standard);
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: var(--ayurveda-primary);
  background: var(--color-bg-3);
}

/* Hamburger Menu */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 1100;
  margin-left: auto;
}

.navbar-toggler-icon {
  width: 24px;
  height: 3px;
  background: var(--ayurveda-primary);
  border-radius: var(--radius-sm);
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background: var(--ayurveda-primary);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler.active .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation - FIXED STICKY + SIZES */
@media (max-width: 991px) {
  .navbar {
    position: sticky; /* Force sticky on mobile */
    top: 0; /* Stick to very top since topbar is hidden */
    padding: var(--space-10) 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar .container {
    padding: 0 15px;
  }

  .navbar-toggler {
    display: block;
    order: 3;
  }

  .navbar-brand {
    order: 1;
    flex: 1;
    max-width: calc(100% - 60px);
  }

  .navbar-brand img {
    height: 60px; /* Good mobile size */
  }

  .brand-text .brand-name {
    font-size: var(--font-size-lg);
  }

  .brand-text .brand-tagline {
    font-size: var(--font-size-xs);
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0; /* Start from very top since no topbar */
    right: 0;
    width: min(280px, calc(100vw - 30px));
    max-width: 80vw;
    height: 100vh;
    background: var(--color-surface);
    padding: 70px 20px 20px; /* Adjusted for mobile header height */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    padding: 15px 20px !important;
    margin-bottom: 5px;
    border-radius: 6px;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Medium mobile screens */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 55px;
  }

  .brand-text .brand-name {
    font-size: var(--font-size-base);
  }

  .brand-text .brand-tagline {
    font-size: 11px;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .navbar-brand img {
    height: 50px;
  }

  .brand-text .brand-name {
    font-size: var(--font-size-sm);
  }

  .brand-text .brand-tagline {
    font-size: 10px;
  }

  .navbar-collapse {
    width: calc(100vw - 20px);
    max-width: 85vw;
    right: 10px;
    padding: 60px 20px 20px; /* Less top padding for smaller screens */
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .navbar-brand img {
    height: 45px;
  }

  .brand-text .brand-name {
    font-size: 12px;
  }

  .brand-text .brand-tagline {
    font-size: 9px;
  }

  .navbar-collapse {
    width: calc(100vw - 15px);
    right: 7px;
  }
}



/* ==========================
   Hero Slider Section
   ========================== */
.hero-section {
  position: relative;
  overflow: visible;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  min-height: 100vh;
  position: relative;
}

.hero-slide.active {
  display: block;
}

.hero-slide img.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--color-btn-primary-text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-standard);
}

.hero-prev:hover, .hero-next:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
}

.hero-prev { left: var(--space-12); }
.hero-next { right: var(--space-12); }

@media (min-width: 768px) {
  .hero-prev, .hero-next {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-2xl);
  }
  
  .hero-prev { left: var(--space-20); }
  .hero-next { right: var(--space-20); }
}

.hero-dots {
  position: absolute;
  bottom: var(--space-24);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-8);
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
}

.hero-dots .dot.active,
.hero-dots .dot:hover {
  background: var(--color-btn-primary-text);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .hero-dots {
    bottom: var(--space-32);
    gap: var(--space-10);
  }
  
  .hero-dots .dot {
    width: 14px;
    height: 14px;
  }
}


/* ==========================
   About Ayurveda Section (Mobile Image Fix)
   ========================== */
.about-ayurveda-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('image/doct.png') no-repeat center center/cover;
  padding: 4rem 2rem;
  color: #d4d4d4;
  min-height: 450px;
  gap: 3rem;
  overflow: hidden;
}

.about-ayurveda-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 0, 0.8);
  z-index: 0;
}

.about-ayurveda-section .left-content,
.about-ayurveda-section .right-image {
  position: relative;
  z-index: 1;
}

.about-ayurveda-section .left-content {
  max-width: 600px;
  color: #d4d4d4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-ayurveda-section .main-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-ayurveda-section .tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #b0dbb0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-ayurveda-section p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  text-align: justify;
}

.key-principles {
  background: rgba(0, 70, 0, 0.5);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  color: #d4f1d4;
  box-shadow: 0 4px 10px rgba(0, 70, 0, 0.4);
}

.key-principles h3 {
  margin-bottom: 1rem;
  color: #e2f0e2;
  text-shadow: none;
}

.key-principles ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: none;
}

.about-ayurveda-section .right-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-ayurveda-section .right-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: block !important;
  visibility: visible !important;
}

/* Mobile Ayurveda Section - Force Image Display */
@media (max-width: 768px) {
  .about-ayurveda-section {
    flex-direction: column;
    padding: 3rem 1rem;
    text-align: center;
    min-height: auto;
  }

  .about-ayurveda-section .left-content,
  .about-ayurveda-section .right-image {
    width: 100%;
    max-width: 100%;
  }

  .about-ayurveda-section .right-image {
    margin-top: 2rem;
    order: 2;
  }

  .about-ayurveda-section .right-image img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-ayurveda-section {
    padding: 2rem 0.5rem;
  }
  
  .about-ayurveda-section .right-image img {
    max-width: 95%;
  }
}

/* ==========================
   Patient Heading
   ========================== */
.patient-heading {
  font-size: clamp(var(--font-size-2xl), 5vw, 36px);
  color: #2d5016;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}

.patient-heading::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 200px;
  height: 40px;
  background-image: url('image/head-removebg-preview.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ==========================
   Team Hero Section
   ========================== */
.team-hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(26, 48, 9, 0.95) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeInSlide 1.2s ease-out;
}

.team-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* ==========================
   Sightseeing Spot Section
   ========================== */
.sightseeing-spot-section {
  position: relative;
  height: 450px;
  background: url('image/wayanad.png') no-repeat center center/cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 3rem;
  border-radius: 12px;
  box-shadow: inset 0 0 120px 50px rgba(0, 70, 0, 0.8);
  color: #e0f2e0;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.section-heading {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: normal;
  margin: 0;
  color: hsla(0, 0%, 97%, 0.867);
  text-shadow: 2px 2px 6px rgba(61, 61, 61, 0.85);
}



.heading-container {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}


.section-heading {
    font-family: 'Pacifico', cursive;
    font-size: 3.8rem;
    font-weight: normal;
    margin: 0;
    color: hsla(0, 0%, 97%, 0.867); /* slightly transparent white */
    text-shadow: 2px 2px 6px rgba(61, 61, 61, 0.85);
}


.section-tagline {
    font-size: 1.3rem;
    margin-top: 0.3rem;
    color: #045d04;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 55, 0, 0.8);
}


.bubbles-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 250px;
    z-index: 1;
}


.bubble {
    position: absolute;
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: rgba(14, 71, 14, 0.8);
    border: 2px solid #99cc99;
    border-radius: 30px;
    font-weight: 600;
    color: #f5f6f5;
    user-select: none;
    cursor: default;
    animation: floatBubble 10s ease-in-out infinite; /* faster speed */
    animation-delay: calc(var(--i) * 1s); /* staggered delay */
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}


.bubble:nth-child(1) { top: 8%; left: 5%; }
.bubble:nth-child(2) { top: 35%; left: 25%; }
.bubble:nth-child(3) { top: 60%; left: 12%; }
.bubble:nth-child(4) { top: 40%; left: 50%; }
.bubble:nth-child(5) { top: 20%; left: 70%; }
.bubble:nth-child(6) { top: 55%; left: 75%; }
.bubble:nth-child(7) { top: 75%; left: 30%; }
.bubble:nth-child(8) { top: 50%; left: 85%; }
.bubble:nth-child(9) { top: 80%; left: 65%; }


@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) translateX(20px) rotate(8deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

.explore-button {
    margin-top: 1.8rem;
    padding: 0.65rem 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    background: rgba(34, 102, 34, 0.85);
    border: 2px solid #b3d9b3;
    color: #d4f3d4;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 10px 2px rgba(56, 139, 56, 0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    user-select: none;
}
.explore-button:hover {
    background: #6baf6b;
    box-shadow: 0 0 18px 4px rgba(100, 200, 100, 0.9);
    color: white;
}








/* ==========================
   Section Styles
   ========================== */
.section-title {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  color: var(--ayurveda-primary);
  margin-bottom: var(--space-16);
  position: relative;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--ayurveda-gold);
  border-radius: var(--radius-sm);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-start .section-title::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-32);
  text-align: center;
}

/* About Section */
.about-section {
  background: var(--gradient-secondary);
}

.about-highlights {
  margin-top: var(--space-32);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}

.highlight-item i {
  font-size: var(--font-size-4xl);
  color: var(--ayurveda-primary);
  flex-shrink: 0;
}

.highlight-item h5 {
  margin-bottom: var(--space-8);
  color: var(--ayurveda-primary);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-24);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  font-size: var(--font-size-md);
}

.feature-list i {
  color: var(--ayurveda-primary);
  font-size: var(--font-size-lg);
}

.vision-box {
  background: var(--color-bg-3);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--ayurveda-primary);
  margin-top: var(--space-24);
}

.vision-box h5 {
  color: var(--ayurveda-primary);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

/* ==========================
   Services Section
   ========================== */
.services-section {
  background-image: url('image/bgg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 50px rgba(211, 16, 16, 0.3);
}

.service-card {
  background: var(--color-surface);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid var(--color-card-border);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-16);
  color: var(--color-btn-primary-text);
  font-size: var(--font-size-2xl);
}

.service-card h4 {
  color: var(--ayurveda-primary);
  margin-bottom: var(--space-16);
  font-size: var(--font-size-lg);
}

.service-card p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  font-size: var(--font-size-sm);
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-32);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-20);
  }
  
  .service-card h4 {
    font-size: var(--font-size-xl);
  }
  
  .service-card p {
    font-size: var(--font-size-base);
  }
}

/* ==========================
   Team Section
   ========================== */
.team-section {
  background: var(--gradient-secondary);
}

/* ==========================
   Packages Section
   ========================== */
.packages-section {
  background: var(--color-background);
}

.package-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid var(--color-card-border);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.package-image img {
  transition: transform var(--duration-normal) var(--ease-standard);
}

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

.package-header {
  background: rgba(21, 57, 17);
  color: var(--color-btn-primary-text);
  padding: var(--space-16);
  text-align: center;
  position: relative;
}

.package-header h4 {
  color: var(--color-btn-primary-text);
  margin-bottom: var(--space-12);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-tight);
}

.package-duration {
  background: var(--ayurveda-gold);
  color: var(--ayurveda-primary);
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-xs);
  display: inline-block;
}

.package-content {
  padding: var(--space-16);
}

.package-content p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  font-size: var(--font-size-sm);
}

@media (min-width: 768px) {
  .package-header {
    padding: var(--space-20);
  }
  
  .package-header h4 {
    font-size: var(--font-size-xl);
  }
  
  .package-content {
    padding: var(--space-20);
  }
  
  .package-content p {
    font-size: var(--font-size-base);
  }
}

/* ==========================
   Facilities Section
   ========================== */
.facilities-section {
  background-image: url('image/bg33.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.facility-card {
  background: var(--color-surface);
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid var(--color-card-border);
}

.facility-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.facility-icon {
  width: 50px;
  height: 50px;
  background: var(--color-bg-3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-12);
  color: var(--ayurveda-primary);
  font-size: var(--font-size-lg);
}

.facility-card h5 {
  color: var(--ayurveda-primary);
  margin-bottom: var(--space-8);
  font-size: var(--font-size-sm);
}

.facility-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .facility-card {
    padding: var(--space-24);
  }
  
  .facility-icon {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-16);
  }
  
  .facility-card h5 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-12);
  }
  
  .facility-card p {
    font-size: var(--font-size-sm);
  }
}

/* ==========================
   Testimonials Section
   ========================== */
.testimonials-section {
  background: var(--gradient-secondary);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-standard);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-content {
  background: var(--color-surface);
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial-photo {
  margin-bottom: var(--space-16);
}

.placeholder-avatar {
  width: 60px;
  height: 60px;
  background: var(--ayurveda-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--color-btn-primary-text);
  font-size: var(--font-size-2xl);
}

.testimonial-text {
  font-size: var(--font-size-base);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-16);
  line-height: var(--line-height-normal);
}

.testimonial-author h6 {
  color: var(--ayurveda-primary);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}

.testimonial-author span {
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
}

.testimonial-rating {
  margin-top: var(--space-12);
}

.testimonial-rating i {
  color: var(--ayurveda-gold);
  font-size: var(--font-size-base);
  margin: 0 var(--space-2);
}

@media (min-width: 768px) {
  .testimonial-content {
    padding: var(--space-32);
  }
  
  .placeholder-avatar {
    width: 80px;
    height: 80px;
    font-size: var(--font-size-4xl);
  }
  
  .testimonial-photo {
    margin-bottom: var(--space-20);
  }
  
  .testimonial-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-20);
  }
  
  .testimonial-author h6 {
    font-size: var(--font-size-md);
  }
  
  .testimonial-author span {
    font-size: var(--font-size-sm);
  }
  
  .testimonial-rating {
    margin-top: var(--space-16);
  }
  
  .testimonial-rating i {
    font-size: var(--font-size-lg);
  }
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.testimonial-prev,
.testimonial-next {
  background: var(--ayurveda-primary);
  border: none;
  color: var(--color-btn-primary-text);
  width: 35px;
  height: 35px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--ayurveda-primary-light);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-6);
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
  background: var(--ayurveda-primary);
}

@media (min-width: 768px) {
  .testimonial-controls {
    gap: var(--space-20);
    margin-top: var(--space-32);
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 45px;
    height: 45px;
  }
  
  .testimonial-dots {
    gap: var(--space-8);
  }
  
  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
  }
}

/* ==========================
   Contact Section
   ========================== */
.contact-section {
  background: var(--color-background);
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: var(--color-surface);
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  margin-bottom: var(--space-20);
}

.contact-form-wrapper h4,
.contact-info-wrapper h4 {
  color: var(--ayurveda-primary);
  margin-bottom: var(--space-16);
  font-size: var(--font-size-lg);
}

.contact-form .form-group {
  margin-bottom: var(--space-16);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ayurveda-primary);
  font-size: var(--font-size-base);
  flex-shrink: 0;
}

.contact-details h6 {
  color: var(--ayurveda-primary);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}

.contact-details p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  font-size: var(--font-size-xs);
}

.map-container {
  margin-top: var(--space-16);
}

.map-placeholder {
  height: 150px;
  background: var(--color-bg-1);
  border-radius: var(--radius-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ayurveda-primary);
  text-align: center;
}

.map-placeholder i {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: var(--space-32);
    margin-bottom: 0;
  }
  
  .contact-form-wrapper h4,
  .contact-info-wrapper h4 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-24);
  }
  
  .contact-form .form-group {
    margin-bottom: var(--space-20);
  }
  
  .contact-info-item {
    gap: var(--space-16);
    margin-bottom: var(--space-24);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  .contact-details h6 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-8);
  }
  
  .contact-details p {
    font-size: var(--font-size-sm);
  }
  
  .map-container {
    margin-top: var(--space-24);
  }
  
  .map-placeholder {
    height: 200px;
  }
  
  .map-placeholder i {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-12);
  }
}

/* ==========================
   Footer
   ========================== */
.footer {
  background: url("image/footbg.png") no-repeat center center / cover;
  color: var(--color-btn-primary-text);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 48, 9, 1);
  z-index: 0;
}

.footer-content {
  padding: var(--space-24) 0;
  position: relative;
  z-index: 1;
}

.footer-section h5 {
  color: var(--ayurveda-gold);
  margin-bottom: var(--space-16);
  font-size: var(--font-size-base);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 1;
}

.footer-logo .footer-img {
  max-width: 60px;
  height: auto;
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-logo h4 {
  color: var(--color-btn-primary-text);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-base);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-xs);
  margin: 0;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-16);
  font-size: var(--font-size-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-8);
  position: relative;
  z-index: 1;
  justify-content: center;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-btn-primary-text);
  font-size: var(--font-size-base);
  transition: all var(--duration-fast) var(--ease-standard);
}

.footer-social a:hover {
  background: var(--ayurveda-gold);
  color: var(--ayurveda-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.footer-links li {
  margin-bottom: var(--space-6);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
  font-size: var(--font-size-xs);
}

.footer-links a:hover {
  color: var(--ayurveda-gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-xs);
  position: relative;
  z-index: 1;
}

.footer-contact-item i {
  color: var(--ayurveda-gold);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.copyright,
.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: var(--font-size-xs);
}

.footer-tagline {
  text-align: center;
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .footer-content {
    padding: var(--space-32) 0;
  }
  
  .footer-section h5 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-20);
  }
  
  .footer-logo {
    gap: var(--space-12);
    margin-bottom: var(--space-20);
  }
  
  .footer-logo .footer-img {
    max-width: 80px;
    padding: 10px;
  }
  
  .footer-logo h4 {
    font-size: var(--font-size-xl);
  }
  
  .footer-logo p {
    font-size: var(--font-size-sm);
  }
  
  .footer-section p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-20);
  }
  
  .footer-social {
    gap: var(--space-12);
    justify-content: flex-start;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-lg);
  }
  
  .footer-links li {
    margin-bottom: var(--space-8);
  }
  
  .footer-links a {
    font-size: var(--font-size-sm);
  }
  
  .footer-contact-item {
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    font-size: var(--font-size-sm);
  }
  
  .footer-contact-item i {
    width: 20px;
  }
  
  .footer-bottom {
    padding: var(--space-20) 0;
  }
  
  .copyright,
  .footer-tagline {
    font-size: var(--font-size-sm);
  }
  
  .footer-tagline {
    text-align: right;
    margin-top: 0;
  }
}

/* ==========================
   Buttons
   ========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================
   Form Elements
   ========================== */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* ==========================
   Card Component
   ========================== */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* ==========================
   Status Indicators
   ========================== */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(var(--color-success-rgb), var(--status-bg-opacity));
  color: var(--color-success);
  border: 1px solid rgba(var(--color-success-rgb), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(var(--color-error-rgb), var(--status-bg-opacity));
  color: var(--color-error);
  border: 1px solid rgba(var(--color-error-rgb), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(var(--color-warning-rgb), var(--status-bg-opacity));
  color: var(--color-warning);
  border: 1px solid rgba(var(--color-warning-rgb), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(var(--color-info-rgb), var(--status-bg-opacity));
  color: var(--color-info);
  border: 1px solid rgba(var(--color-info-rgb), var(--status-border-opacity));
}

/* ==========================
   Container Layout
   ========================== */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-12);
  padding-left: var(--space-12);
}

@media (min-width: 576px) {
  .container {
    padding-right: var(--space-16);
    padding-left: var(--space-16);
  }
}

@media (min-width: 640px) {
  .container { max-width: var(--container-sm); }
}

@media (min-width: 768px) {
  .container { max-width: var(--container-md); }
}

@media (min-width: 1024px) {
  .container { max-width: var(--container-lg); }
}

@media (min-width: 1280px) {
  .container { max-width: var(--container-xl); }
}

/* ==========================
   Animation Classes
   ========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--duration-normal) var(--ease-standard);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInSlide {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

/* ==========================
   Loading States
   ========================== */
.btn.loading {
  position: relative;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}

/* ==========================
   Form Validation
   ========================== */
.form-control.is-valid {
  border-color: var(--color-success);
}

.form-control.is-invalid {
  border-color: var(--color-error);
}

.invalid-feedback {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
}

.valid-feedback {
  color: var(--color-success);
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
}

/* ==========================
   Custom Scrollbar
   ========================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-background);
}

::-webkit-scrollbar-thumb {
  background: var(--ayurveda-primary);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ayurveda-primary-light);
}

/* ==========================
   Utility Classes
   ========================== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }
.gap-16 { gap: var(--space-16); }

.m-0 { margin: 0; }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }
.mx-8 { margin-left: var(--space-8); margin-right: var(--space-8); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }

.p-0 { padding: 0; }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.px-16 { padding-left: var(--space-16); padding-right: var(--space-16); }

.block { display: block; }
.hidden { display: none; }
.text-center { text-align: center; }
.text-start { text-align: left; }

/* ==========================
   Accessibility
   ========================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* ==========================
   Responsive Design
   ========================== */
@media (max-width: 991.98px) {
  .contact-info span {
    display: block;
    margin-bottom: var(--space-8);
    margin-right: 0;
  }
  
  .social-links {
    text-align: left;
    margin-top: var(--space-12);
  }
}

@media (max-width: 767.98px) {
  .top-contact-bar {
    text-align: center;
  }
  
  .hero-slide {
    text-align: center;
    padding: 100px 0 60px;
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .service-card {
    margin-bottom: var(--space-24);
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: var(--space-12);
    padding-right: var(--space-12);
  }
  
  .service-card {
    padding: var(--space-20);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .hero-prev, .hero-next {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-lg);
  }
  
  .hero-prev { left: var(--space-12); }
  .hero-next { right: var(--space-12); }
  
  .navbar-brand .brand-text .brand-name {
    font-size: var(--font-size-lg);
  }
  
  .service-card {
    padding: var(--space-16);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-3xl);
  }
  
  .footer-content {
    padding: var(--space-24) 0;
  }
}
.glassy-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 1.4rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #ccffcc;
    border: 1.5px solid #ccffcc;
    border-radius: 25px;
    background: rgba(255 255 255 / 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.2;
    letter-spacing: 0.06em;
    box-shadow: 0 0 8px 1px #03460366;
    width: fit-content;
    white-space: nowrap;
}
.glassy-button:hover {
    color: #e6ffe6;
    border-color: #e6ffe6;
    box-shadow: 0 0 14px 3px #c3f0c3cc;
}