/* ═══════════════════════════════════════════════
   YOG VARANASI — Stylesheet
   Aesthetic: Ancient Indian Spirituality × Organic
   ═══════════════════════════════════════════════ */

/* ── Google Fonts Import ──────────────────────── */
@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=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ────────────────────────────── */
:root {
  --saffron: #E8651A;
  --saffron-light: #f0894e;
  --saffron-dark: #c4520f;
  --cream: #FDF6EC;
  --cream-dark: #f5e6cf;
  --brown: #5C3A1E;
  --brown-light: #7a5636;
  --sage: #8FAF7E;
  --sage-light: #a8c49a;
  --sage-dark: #6e8d5e;
  --text-dark: #2c1810;
  --text-body: #4a3728;
  --text-light: #7a6555;
  --white: #ffffff;
  --overlay-dark: rgba(44, 24, 16, 0.65);
  --overlay-light: rgba(253, 246, 236, 0.92);
  --shadow-sm: 0 2px 8px rgba(92, 58, 30, 0.08);
  --shadow-md: 0 4px 20px rgba(92, 58, 30, 0.12);
  --shadow-lg: 0 8px 40px rgba(92, 58, 30, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--saffron);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--saffron-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

/* ── Utility Classes ──────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--sage));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-heading p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 101, 26, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 101, 26, 0.45);
  color: var(--white);
}

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

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  color: var(--white);
}

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

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 58, 30, 0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo svg {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--saffron);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.5rem 1rem;
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--saffron);
  border-radius: 1px;
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}

.main-nav a.active {
  color: var(--saffron);
}

.nav-cta {
  margin-left: 0.75rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

  .main-nav a {
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-overlay.show {
    display: block;
  }
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.55) 0%,
    rgba(44, 24, 16, 0.40) 50%,
    rgba(44, 24, 16, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sanskrit {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sage-light);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  font-weight: 700;
}

.hero h1 em {
  color: var(--saffron-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  opacity: 0.6;
}

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

/* ── Page Hero (inner pages) ──────────────────── */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.6) 0%,
    rgba(44, 24, 16, 0.75) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1s ease forwards;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════
   FEATURES / SERVICES CARDS
   ═══════════════════════════════════════════════ */
.features-section {
  background: var(--cream);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.1), rgba(143, 175, 126, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--saffron);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232, 101, 26, 0.08);
}

.testimonials-section .section-heading h2 {
  color: var(--cream);
}

.testimonials-section .section-heading h2::after {
  background: linear-gradient(90deg, var(--saffron), var(--sage-light));
}

.testimonials-section .section-heading p {
  color: rgba(253, 246, 236, 0.6);
}

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

.testimonial-card {
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(253, 246, 236, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(253, 246, 236, 0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--saffron);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-location {
  color: rgba(253, 246, 236, 0.5);
  font-size: 0.8rem;
}

/* ── Testimonial Auto-Scroll Carousel ──── */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  padding: 0 0 2rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  animation: testimonialScroll 45s linear infinite;
  width: max-content;
}

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

.testimonial-carousel .testimonial-card {
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(253, 246, 236, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s ease;
}

.testimonial-carousel .testimonial-card:hover {
  background: rgba(253, 246, 236, 0.1);
  transform: translateY(-4px);
}

.testimonial-carousel .testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-carousel .testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--saffron);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-carousel .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-carousel .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-carousel .testimonial-name {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-carousel .testimonial-location {
  color: rgba(253, 246, 236, 0.5);
  font-size: 0.8rem;
}

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

@media (max-width: 768px) {
  .testimonial-carousel .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), transparent);
  opacity: 0.3;
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.about-text .lead {
  font-size: 1.1rem;
  color: var(--saffron-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.certifications {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.certifications h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--saffron);
}

.cert-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.cert-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--sage);
  flex-shrink: 0;
}

.philosophy-section {
  background: var(--white);
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.philosophy-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-photo {
    display: flex;
    justify-content: center;
  }

  .about-photo-frame {
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════════════
   CLASSES PAGE
   ═══════════════════════════════════════════════ */
.class-type-section {
  background: var(--white);
}

.class-type-section:nth-child(even) {
  background: var(--cream);
}

.class-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.class-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.class-header-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.class-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.class-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.class-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.class-info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.class-type-section:nth-child(even) .class-info-card {
  background: var(--white);
}

.class-info-card h4 {
  font-size: 1rem;
  color: var(--saffron);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.class-info-card ul {
  list-style: none;
  font-size: 0.95rem;
}

.class-info-card ul li {
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.class-info-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
}

@media (max-width: 768px) {
  .class-details {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing Cards ────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.class-type-section:nth-child(even) .pricing-card {
  background: var(--cream);
}

.pricing-card.popular {
  border-color: var(--saffron);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--saffron);
  color: var(--white);
  padding: 0.3rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
}

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

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(3n+1) {
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.8));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 101, 26, 0.12);
}

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

.form-group .error-msg {
  color: #d44;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #d44;
}

.form-group.error .error-msg {
  display: block;
}

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

.contact-sidebar h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.contact-info-list li svg {
  width: 22px;
  height: 22px;
  stroke: var(--saffron);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-list li strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  background: var(--brown);
  color: rgba(253, 246, 236, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand .logo-text span {
  color: var(--saffron);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul a {
  color: rgba(253, 246, 236, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links ul a:hover {
  color: var(--saffron);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--saffron);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 246, 236, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--saffron);
}

.cta-banner .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════ */
.om-watermark {
  position: absolute;
  font-size: 15rem;
  color: rgba(232, 101, 26, 0.03);
  font-family: serif;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 64px;
  height: 64px;
  stroke: var(--sage);
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════
   NEW ADDITIONS — CAROUSEL, POSES, FOUNDER, MOBILE
   ═══════════════════════════════════════════════ */

/* ── Screen reader only (for accessibility) ──── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Section eyebrow (small uppercase label) ─── */
.section-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════
   HERO CAROUSEL (5 cover photos)
   ═══════════════════════════════════════════════ */
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.4) 0%, rgba(44, 24, 16, 0.7) 100%);
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 8s ease-in-out;
}

@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

/* Carousel indicator dots */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--saffron);
  width: 32px;
  border-radius: 5px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active:hover {
  background: var(--saffron-light);
}

/* ═══════════════════════════════════════════════
   YOGA POSES SECTION (6 poses)
   ═══════════════════════════════════════════════ */
.poses-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.poses-section::before {
  content: 'ॐ';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 16rem;
  color: var(--saffron);
  opacity: 0.04;
  font-family: serif;
  pointer-events: none;
  z-index: 0;
}

.poses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.pose-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.pose-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
  pointer-events: none;
  z-index: 2;
}

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

.pose-card:hover::before {
  border-color: var(--saffron);
}

.pose-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.pose-card:hover .pose-image {
  transform: scale(1.08);
}

.pose-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.75) 100%);
}

.pose-info {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  background: var(--white);
}

.pose-info h3 {
  font-size: 1.5rem;
  color: var(--saffron);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.pose-english {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pose-benefit {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
}

/* ═══════════════════════════════════════════════
   FOUNDER SHOWCASE (Unique Design)
   ═══════════════════════════════════════════════ */
.founder-showcase {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #2c1810 0%, #3d2415 50%, #4a2c1a 100%);
  color: var(--cream);
  overflow: hidden;
}

/* Decorative background */
.founder-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mandala-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.15) 0%, transparent 70%);
  animation: mandalaRotate 60s linear infinite;
}

@keyframes mandalaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.om-symbol {
  position: absolute;
  bottom: -80px;
  left: -50px;
  font-size: 28rem;
  color: var(--saffron);
  opacity: 0.06;
  font-family: serif;
  line-height: 1;
}

/* Main container */
.founder-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

/* Photo wrapper with ornate frame */
.founder-photo-wrapper {
  position: relative;
  padding: 2rem;
}

.founder-photo-decoration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lotus-ring {
  width: 110%;
  height: 110%;
  animation: lotusRotate 40s linear infinite;
}

@keyframes lotusRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.founder-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: visible;
  background: linear-gradient(135deg, var(--saffron), var(--sage));
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Floating badge */
.founder-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--saffron);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 10px 30px rgba(232, 101, 26, 0.5);
  border: 3px solid var(--cream);
  transform: rotate(-5deg);
  transition: transform var(--transition);
}

.founder-badge:hover {
  transform: rotate(0deg) scale(1.05);
}

.founder-badge svg {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

/* Corner decorations */
.founder-frame-corners {
  position: absolute;
  inset: -12px;
  pointer-events: none;
}

.founder-frame-corners span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--saffron);
}

.founder-frame-corners span:nth-child(1) {
  top: 0; left: 0;
  border-right: none;
  border-bottom: none;
}

.founder-frame-corners span:nth-child(2) {
  top: 0; right: 0;
  border-left: none;
  border-bottom: none;
}

.founder-frame-corners span:nth-child(3) {
  bottom: 0; left: 0;
  border-right: none;
  border-top: none;
}

.founder-frame-corners span:nth-child(4) {
  bottom: 0; right: 0;
  border-left: none;
  border-top: none;
}

/* Signature */
.founder-signature {
  text-align: center;
  margin-top: 2.5rem;
}

.signature-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--saffron-light);
  margin-bottom: 0.25rem;
}

.signature-sanskrit {
  font-size: 0.95rem;
  color: rgba(253, 246, 236, 0.6);
  letter-spacing: 2px;
}

/* Founder details (right side) */
.founder-details {
  padding: 1rem 0;
}

.founder-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--saffron);
}

.founder-name {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.founder-tagline {
  font-size: 1.15rem;
  color: var(--saffron-light);
  font-style: italic;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.founder-bio p {
  color: rgba(253, 246, 236, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Stats strip */
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(253, 246, 236, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--saffron);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--saffron);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Credentials showcase */
.credentials-showcase {
  position: relative;
  z-index: 1;
}

.credentials-title {
  text-align: center;
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-heading);
}

.credentials-title .title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  max-width: 200px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.credential-card {
  background: rgba(253, 246, 236, 0.05);
  border: 1px solid rgba(232, 101, 26, 0.25);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--sage));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.credential-card:hover {
  background: rgba(253, 246, 236, 0.08);
  border-color: var(--saffron);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.credential-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 101, 26, 0.3);
}

.credential-icon svg {
  width: 28px;
  height: 28px;
}

.credential-card h4 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.credential-card p {
  color: rgba(253, 246, 236, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE (enhanced)
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
  .founder-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .founder-photo-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .founder-eyebrow {
    display: inline-block;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* General */
  html { font-size: 15px; }

  .container {
    width: 92%;
    padding: 0 0.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  /* Hero carousel — hide indicators slightly on mobile */
  .hero-indicators {
    bottom: 1rem;
    gap: 0.4rem;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 24px;
  }

  /* Poses grid: 2 columns on tablet-mobile boundary */
  .poses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pose-info {
    padding: 1rem 0.75rem;
  }

  .pose-info h3 {
    font-size: 1.15rem;
  }

  .pose-english {
    font-size: 0.85rem;
  }

  .pose-benefit {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* Founder section */
  .founder-showcase {
    padding: 3.5rem 0;
  }

  .om-symbol {
    font-size: 14rem;
  }

  .founder-photo-frame {
    max-width: 300px;
  }

  .founder-badge {
    width: 95px;
    height: 95px;
    font-size: 0.65rem;
    bottom: -15px;
    right: -10px;
  }

  .founder-badge svg {
    width: 18px;
    height: 18px;
  }

  .founder-stats {
    padding: 1rem;
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .credentials-title {
    font-size: 1.3rem;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .credentials-title .title-line {
    max-width: 60px;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .credential-card {
    padding: 1.25rem;
  }

  /* Testimonial cards smaller on mobile */
  .testimonial-carousel .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }

  /* Footer social icons */
  .social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  html { font-size: 14px; }

  .poses-grid {
    grid-template-columns: 1fr;
  }

  .pose-image {
    aspect-ratio: 16 / 10;
  }

  .founder-photo-frame {
    max-width: 260px;
  }

  .founder-badge {
    width: 80px;
    height: 80px;
    bottom: -12px;
    right: -8px;
  }

  .hero-content h1 {
    font-size: 1.75rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    padding: 0.25rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .pose-card:hover .pose-image {
    transform: none;
  }

  .credential-card:hover {
    transform: none;
  }

  .btn, a.btn {
    min-height: 44px; /* Apple's recommended touch target */
  }
}

/* ═══════════════════════════════════════════════
   ACADEMIC EDUCATION HIGHLIGHT (MA Degree)
   ═══════════════════════════════════════════════ */
.education-highlight {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.degree-card {
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.15), rgba(143, 175, 126, 0.08));
  border: 2px solid var(--saffron);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.degree-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.degree-card::after {
  content: '🎓';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 10rem;
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
}

.degree-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(232, 101, 26, 0.3);
  border-color: var(--saffron-light);
}

/* Icon */
.degree-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(232, 101, 26, 0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.degree-icon svg {
  width: 42px;
  height: 42px;
}

/* Info */
.degree-info {
  position: relative;
  z-index: 1;
}

.degree-year {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.degree-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.degree-university {
  color: var(--saffron-light);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.degree-description {
  color: rgba(253, 246, 236, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Ribbon badge (right side) */
.degree-badge-ribbon {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  padding: 1.2rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  min-width: 110px;
  box-shadow: 0 8px 20px rgba(232, 101, 26, 0.4);
  position: relative;
  z-index: 1;
  transform: rotate(3deg);
  border: 2px solid var(--cream);
}

.degree-badge-ribbon::before,
.degree-badge-ribbon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
}

.degree-badge-ribbon::before {
  left: 10px;
  border-width: 0 10px 10px 0;
  border-color: transparent var(--saffron-dark) transparent transparent;
}

.degree-badge-ribbon::after {
  right: 10px;
  border-width: 10px 10px 0 0;
  border-color: var(--saffron-dark) transparent transparent transparent;
}

/* Mobile: stack the degree card */
@media (max-width: 768px) {
  .degree-card {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
    gap: 1rem;
    text-align: center;
  }

  .degree-icon {
    margin: 0 auto;
    width: 70px;
    height: 70px;
  }

  .degree-icon svg {
    width: 32px;
    height: 32px;
  }

  .degree-badge-ribbon {
    transform: rotate(0deg);
    min-width: auto;
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    margin: 0 auto;
    width: fit-content;
  }

  .degree-badge-ribbon::before,
  .degree-badge-ribbon::after {
    display: none;
  }

  .degree-title {
    font-size: 1.4rem;
  }

  .degree-university {
    font-size: 0.95rem;
  }
}
