/* ============================================================
   Satyam Traditional Yoga Ashramam - Main Stylesheet
   Traditional Meets Modern | NGO | Nirmal, Telangana
   ============================================================ */

/* ---- Google Fonts ---- */
@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=Inter:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Core Colors - Traditional Meets Modern */
  --clr-forest: #1a4a2e;        /* Deep forest green */
  --clr-forest-mid: #2d6a4f;   /* Mid forest green */
  --clr-forest-light: #40916c;  /* Light forest green */
  --clr-sage: #74c69d;           /* Sage green */
  --clr-gold: #d4a017;           /* Sacred gold */
  --clr-gold-light: #f0c040;    /* Light gold */
  --clr-saffron: #e76f00;        /* Saffron orange */
  --clr-earth: #8b5e3c;          /* Earthy brown */
  --clr-cream: #fdf8f0;          /* Warm cream */
  --clr-ivory: #fefcf5;          /* Ivory white */
  --clr-text: #2c2c2c;           /* Dark text */
  --clr-text-mid: #555;           /* Mid text */
  --clr-text-light: #888;         /* Light text */
  --clr-border: #e8dfd0;          /* Warm border */

  /* Typography */
  --font-heading: 'Playfair Display', 'Noto Serif', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 100px);
  --container-max: 1280px;
  --container-px: clamp(16px, 4vw, 48px);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(212,160,23,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradient presets */
  --grad-forest: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-forest-mid) 100%);
  --grad-gold: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-saffron) 100%);
  --grad-hero: linear-gradient(160deg, rgba(26,74,46,0.88) 0%, rgba(45,106,79,0.72) 50%, rgba(64,145,108,0.55) 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-ivory);
  line-height: 1.7;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--clr-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-forest);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--clr-text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
  background: linear-gradient(135deg, var(--clr-saffron) 0%, var(--clr-gold) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-forest);
  border-color: var(--clr-forest);
}

.btn-secondary:hover {
  background: var(--clr-forest);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--clr-forest);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--clr-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 4px;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo-name { color: var(--clr-forest); }

.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo-tagline { color: var(--clr-text-mid); }

/* Let navbar expand wider than page content on massive monitors */
.navbar .container { max-width: 1500px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.navbar.scrolled .nav-link { color: var(--clr-text); }

.nav-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.navbar.scrolled .nav-link:hover {
  background: var(--clr-cream);
  color: var(--clr-forest);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  border: 1px solid var(--clr-border);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--clr-cream);
  color: var(--clr-forest);
  padding-left: 18px;
}

.dropdown-item span {
  font-size: 1.1rem;
}

.nav-cta { margin-left: 12px; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.navbar.scrolled .nav-toggle span { background: var(--clr-forest); }

/* Force white when menu is open */
.nav-toggle.active span { background: #fff !important; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay to darken background when sidebar is open */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.5);
  backdrop-filter: blur(10px);
  color: var(--clr-gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge span { font-size: 1rem; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,160,23,0.4);
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ============================================================
   MARQUEE / ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--grad-gold);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.marquee-item::after {
  content: '✦';
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
  padding: 32px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--clr-cream);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--clr-forest);
}

.feature-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-forest);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--clr-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.about-badge-cert {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--grad-forest);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-cert strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-gold-light);
}

.about-badge-cert span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.about-content {}

.about-text {
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
  transition: var(--transition);
}

.about-highlight:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.about-highlight-icon { font-size: 1.25rem; flex-shrink: 0; }

.about-highlight-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-forest);
  font-weight: 600;
  margin-bottom: 2px;
}

.about-highlight-text span {
  font-size: 0.82rem;
  color: var(--clr-text-mid);
}

.about-reg {
  margin-top: 24px;
  padding: 16px;
  background: var(--clr-forest);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-reg strong { color: var(--clr-gold-light); }

/* ============================================================
   THERAPIES / SERVICES SECTION
   ============================================================ */
.therapies { background: var(--clr-ivory); }

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

.therapy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--clr-border);
  position: relative;
}

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

.therapy-card-top {
  height: 6px;
  background: var(--grad-gold);
}

.therapy-card:nth-child(2n) .therapy-card-top {
  background: var(--grad-forest);
}

.therapy-card-body {
  padding: 28px;
}

.therapy-icon {
  width: 60px;
  height: 60px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.therapy-card:hover .therapy-icon {
  background: var(--clr-forest);
  transform: scale(1.05);
}

.therapy-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: 10px;
}

.therapy-desc {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.therapy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-gold);
  transition: var(--transition);
}

.therapy-link:hover { gap: 10px; color: var(--clr-saffron); }

.therapy-link svg { width: 16px; height: 16px; }

/* ============================================================
   BODY & TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   LOCATION / FOREST SECTION
   ============================================================ */
.location-section {
  background: var(--grad-forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><path d="M0,400 Q250,200 500,350 Q750,500 1000,250 L1000,600 L0,600 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.location-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.location-feature {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.location-feature:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.location-feature-icon { font-size: 2rem; margin-bottom: 10px; }

.location-feature-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--clr-gold-light);
}

.location-feature-text {
  font-size: 0.82rem;
  opacity: 0.8;
  line-height: 1.5;
}

.location-image-stack {
  position: relative;
  height: 560px;
}

.loc-img-1, .loc-img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.loc-img-1 {
  width: 75%;
  height: 70%;
  top: 0;
  left: 0;
}

.loc-img-2 {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 4px solid rgba(255,255,255,0.3);
}

/* ============================================================
   ORGANIC FOOD SECTION
   ============================================================ */
.organic-section { background: var(--clr-cream); }

.organic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.organic-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.organic-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

.organic-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold);
}

.organic-item-icon { font-size: 2rem; margin-bottom: 8px; }

.organic-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-forest);
}

/* ============================================================
   DISEASES TREATED
   ============================================================ */
.diseases-section { background: var(--clr-ivory); }

.diseases-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.disease-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--clr-border);
  background: #fff;
  color: var(--clr-text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.disease-tab.active,
.disease-tab:hover {
  border-color: var(--clr-forest);
  background: var(--clr-forest);
  color: #fff;
}

.diseases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.disease-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.disease-card:hover {
  border-color: var(--clr-sage);
  background: var(--clr-cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.disease-icon { font-size: 2rem; }

.disease-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-forest);
}

.disease-note {
  font-size: 0.75rem;
  color: var(--clr-text-light);
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: var(--clr-forest);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  display: none;
}

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities { background: var(--clr-cream); }

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

.facility-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.facility-card:hover::before { transform: scaleX(1); }

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

.facility-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.facility-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: 10px;
}

.facility-desc {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ============================================================
   SOCIAL WORK / NGO
   ============================================================ */
.social-section {
  background: linear-gradient(135deg, #f5f0e8 0%, #fdf8f0 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.social-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.social-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.social-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.social-item-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-item-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: 4px;
}

.social-item-content p {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.6;
}

.donate-cta {
  background: var(--grad-forest);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #fff;
  text-align: center;
}

.donate-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--clr-gold-light);
}

.donate-cta p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.donate-amount-btn {
  padding: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.donate-amount-btn:hover,
.donate-amount-btn.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--clr-ivory); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--clr-text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold-light);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--clr-forest);
  font-size: 0.9rem;
}

.testimonial-place {
  font-size: 0.78rem;
  color: var(--clr-text-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--clr-forest);
  width: 30px;
  border-radius: 5px;
}

/* ============================================================
   BLOGS SECTION
   ============================================================ */
.blogs { background: var(--clr-cream); }

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

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

.blog-body {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-cream);
  color: var(--clr-forest);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-forest);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-card:hover .blog-title { color: var(--clr-gold); }

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--clr-text-light);
}

.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   APPOINTMENT / CONTACT CTA
   ============================================================ */
.appointment-section {
  background: var(--grad-forest);
  position: relative;
  overflow: hidden;
}

.appointment-section::after {
  content: '🪷';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  right: -40px;
  top: -60px;
  pointer-events: none;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.appointment-info { color: #fff; }

.appointment-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-gold-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.appointment-info p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-text span { font-size: 0.95rem; font-weight: 500; }

/* Appointment Form */
.appointment-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-forest);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-ivory);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,74,46,0.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f2d1c;
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--clr-gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--clr-gold-light);
  padding-left: 6px;
}

.footer-newsletter {}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-input:focus {
  border-color: var(--clr-gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-btn {
  padding: 10px 16px;
  background: var(--clr-gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-btn:hover { background: var(--clr-saffron); }

.footer-cert {
  margin-top: 20px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.footer-cert strong { color: var(--clr-gold-light); display: block; margin-bottom: 4px; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-copyright a { color: var(--clr-gold-light); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--clr-gold-light); }

/* ============================================================
   FLOATING WHATSAPP & BACK TO TOP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: clamp(84px, 10vw, 104px);
  right: clamp(16px, 4vw, 32px);
  z-index: 999;
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg { width: 50%; height: 50%; fill: #fff; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

.back-to-top {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  right: clamp(16px, 4vw, 32px);
  z-index: 998;
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  background: var(--clr-forest);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--clr-gold); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--grad-forest);
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  opacity: 0.7;
}

.breadcrumb a:hover { opacity: 1; color: var(--clr-gold-light); }

/* ============================================================
   MODAL STYLES
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--clr-cream);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.modal-close:hover { background: var(--clr-border); }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--clr-forest);
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show { transform: translateX(0); }
.toast.success { border-color: var(--clr-sage); }
.toast.error { border-color: #e74c3c; }

/* ============================================================
   ANIMATIONS / DECORATIVE
   ============================================================ */
.mandala-bg {
  position: absolute;
  opacity: 0.03;
  pointer-events: none;
}

.divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-wave svg { display: block; width: 100%; }

/* Om symbol decorative */
.om-decor {
  font-size: 1.5rem;
  opacity: 0.3;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1450px) {
  /* Compress the massive 8-link navbar on 13"/14" laptops to prevent overflowing */
  .nav-link { padding: 6px 8px; font-size: 0.85rem; }
  .nav-menu { gap: 2px; }
  .nav-cta { padding: 10px 16px !important; font-size: 0.85rem !important; flex-shrink: 0 !important; white-space: nowrap !important; }
  .navbar-inner { gap: 12px; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-tagline { font-size: 0.65rem; }
  .nav-logo img { width: 44px; height: 44px; }
}

@media (max-width: 1250px) {
  /* Tablets, Small Laptops: Convert to Sidebar Menu */
  .nav-cta { display: none; } /* Handled by JS moving it into menu */
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 100vw;
    height: 100vh;
    background: var(--clr-forest);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 40px;
    gap: 15px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-toggle { display: flex; }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
  }

  .nav-link:hover, .navbar.scrolled .nav-link:hover {
    background: transparent;
    color: var(--clr-gold-light);
  }

  .dropdown-menu,
  .nav-item:hover .dropdown-menu,
  .nav-item.dropdown-open .dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
    margin-top: 5px;
    width: 100%;
    display: none;
    border: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-item { width: 100%; }
  .nav-item.dropdown-open .dropdown-menu { display: block !important; }
  .dropdown-item { color: rgba(255,255,255,0.85); font-size: 1rem; padding: 10px 15px; text-align: left; }
  .dropdown-item:hover { background: rgba(255,255,255,0.1); color: #fff; }

  /* Mobile CTA styling inside sidebar */
  .nav-menu .nav-cta {
    display: flex;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    justify-content: center;
  }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  
  .about-grid, .organic-grid, .location-grid, .social-grid, .appointment-grid {
    grid-template-columns: 1fr;
  }

  .about-image-accent { display: none; }
  .about-badge-cert { left: 0; }
  .location-image-stack { height: 300px; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  /* Mobile specifically */
  :root { --section-py: clamp(48px, 6vw, 72px); }
  .navbar-inner { height: 70px; }
  .nav-logo img { width: 42px; height: 42px; }
  .nav-link { font-size: 1.25rem; padding: 12px 20px; }

  .hero-content { padding: 100px 0 60px; }

  .testimonial-card { flex: 0 0 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .form-row { grid-template-columns: 1fr; }

  .appointment-form { padding: 28px; }

  .location-image-stack { height: 250px; }
  .loc-img-1 { width: 80%; }
  .loc-img-2 { width: 55%; }

  .diseases-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  
  .donate-amount-grid { grid-template-columns: repeat(2, 1fr); }

  .location-features { grid-template-columns: 1fr; }

  .nav-menu { padding: 80px 20px 20px; }

  .modal { padding: 28px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-bg { background-attachment: scroll; }
}

/* ===================== SVG ICON STYLING (LUCIDE & ICONIFY) ===================== */
.lucide, .iconify {
  stroke-width: 1.5;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.feature-icon .lucide, .feature-icon .iconify { color: var(--clr-gold); width: 24px; height: 24px; }
.feature-item:hover .lucide, .feature-item:hover .iconify { color: var(--clr-cream); }

.dropdown-item .lucide, .dropdown-item .iconify { width: 18px; height: 18px; margin-right: 8px; color: var(--clr-gold); }

.about-highlight-icon .lucide, .about-highlight-icon .iconify { width: 28px; height: 28px; color: var(--clr-gold); }

.therapy-icon .lucide, .therapy-icon .iconify { width: 40px; height: 40px; color: var(--clr-gold); }

.location-feature-icon .lucide, .location-feature-icon .iconify { width: 36px; height: 36px; color: var(--clr-cream); opacity: 0.9; }

.disease-icon .lucide, .disease-icon .iconify { width: 32px; height: 32px; color: var(--clr-gold); }

.organic-item-icon .lucide, .organic-item-icon .iconify { width: 32px; height: 32px; color: var(--clr-gold); }
.facility-icon .lucide, .facility-icon .iconify { width: 36px; height: 36px; color: var(--clr-gold); }

.social-item-icon .lucide, .social-item-icon .iconify { width: 32px; height: 32px; color: var(--clr-gold-light); }

.contact-icon .lucide, .contact-icon .iconify { width: 24px; height: 24px; color: var(--clr-gold); }
