/* =========================================================
   ART OF LIVING — RASHMIN PULEKAR LANDING PAGE
   Theme: Warm saffron/gold/cream — mobile-first design
   ========================================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron:    #E8660A;
  --saffron-d:  #C5540A;
  --saffron-l:  #FF8C38;
  --gold:       #F5A623;
  --gold-l:     #FFC94D;
  --gold-ll:    #FFF0CC;
  --cream:      #FFFBF3;
  --cream-d:    #FFF3DC;
  --warm-white: #FFFEF9;
  --brown:      #6B3A2A;
  --brown-l:    #8B4513;
  --text-main:  #2D1A0E;
  --text-sub:   #7A5C47;
  --text-light: #B08A6E;
  --success:    #27AE60;
  --whatsapp:   #25D366;
  --border:     rgba(232,102,10,0.15);
  --shadow-sm:  0 2px 12px rgba(232,102,10,0.10);
  --shadow-md:  0 8px 32px rgba(232,102,10,0.15);
  --shadow-lg:  0 20px 60px rgba(232,102,10,0.20);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

.hidden { display: none !important; }

/* === HERO === */
.hero {
  position: relative;
  padding: 60px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,102,10,0.30) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245,166,35,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(232,102,10,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-l), transparent);
  animation: floatUp var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.logo-wrap {
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}

.hero-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.6)) brightness(1.1);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(245,166,35,0.5)) brightness(1.1); }
  50%       { filter: drop-shadow(0 0 40px rgba(245,166,35,0.9)) brightness(1.2); }
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,166,35,0.25), rgba(232,102,10,0.15));
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold-l);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeDown 0.9s 0.1s ease both;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeDown 0.9s 0.2s ease both;
  text-shadow: none;
}

.hero-name {
  background: linear-gradient(135deg, var(--gold-l), var(--saffron-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeDown 0.9s 0.3s ease both;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-d));
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  animation: fadeDown 0.9s 0.4s ease both;
  box-shadow: 0 8px 30px rgba(232,102,10,0.5), 0 0 0 0 rgba(232,102,10,0.4);
  letter-spacing: 0.3px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,102,10,0.6), 0 0 0 8px rgba(232,102,10,0.1);
  background: linear-gradient(135deg, var(--saffron-l), var(--saffron));
}

.hero-cta svg {
  animation: bounce 1.5s ease-in-out infinite;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(232,102,10,0.15);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  backdrop-filter: blur(20px);
  animation: fadeUp 0.9s 0.6s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--saffron-l), var(--saffron-d));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(245,166,35,0.5);
  border-radius: 100px;
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold-l);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%  { top: 6px; opacity: 1; }
  100%{ top: 28px; opacity: 0; }
}

/* === SECTION SHARED === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === COURSES INTRO === */
.courses-intro {
  padding: 80px 0 60px;
  background: var(--warm-white);
}

.course-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.course-type-card {
  background: linear-gradient(135deg, var(--cream), var(--cream-d));
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.course-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.course-type-card:hover::before { opacity: 1; }

.course-type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--saffron); }
.course-type-card:hover .ctc-title,
.course-type-card:hover .ctc-short { color: white; }
.course-type-card:hover .ctc-icon { transform: scale(1.15); }
.course-type-card:hover .ctc-know { background: rgba(255,255,255,0.25); color: white; border-color: rgba(255,255,255,0.5); }

.ctc-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
  position: relative; z-index: 1;
}

.ctc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  transition: var(--transition);
  position: relative; z-index: 1;
}

.ctc-short {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin-bottom: 16px;
  transition: var(--transition);
  position: relative; z-index: 1;
}

.ctc-know {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid var(--saffron);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--saffron);
  transition: var(--transition);
  position: relative; z-index: 1;
}

/* === SCHEDULE SECTION === */
.schedule-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream-d) 0%, var(--cream) 100%);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Loading */
.loading-state {
  text-align: center;
  padding: 80px 20px;
}

.loader-lotus {
  width: 64px;
  height: 64px;
  position: relative;
  margin: 0 auto 20px;
}

.lotus-petal {
  position: absolute;
  width: 16px;
  height: 28px;
  background: linear-gradient(180deg, var(--saffron-l), var(--gold));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  transform: translateX(-50%) rotate(calc(var(--i) * 60deg)) translateY(-50%);
  animation: petalPulse 1.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.25s);
}

@keyframes petalPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) rotate(calc(var(--i) * 60deg)) translateY(-50%) scale(0.8); }
  50%       { opacity: 1;   transform: translateX(-50%) rotate(calc(var(--i) * 60deg)) translateY(-55%) scale(1); }
}

.loading-text {
  font-size: 1rem;
  color: var(--text-sub);
  font-style: italic;
}

/* Error */
.error-state {
  text-align: center;
  padding: 60px 20px;
}
.error-icon { font-size: 3rem; margin-bottom: 16px; }
.error-state h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-main); }
.error-state p  { color: var(--text-sub); margin-bottom: 20px; }
.btn-retry {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-retry:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Schedule Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Schedule Card */
.schedule-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  animation: cardIn 0.5s ease both;
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}

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

.card-header {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.card-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-city {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-info-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gold-ll);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.card-info-content {
  flex: 1;
}

.card-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
}

.card-info-value {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.4;
}

.card-address {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.card-actions {
  padding: 16px 20px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.card-btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.card-btn.register {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-d));
  color: white;
  box-shadow: 0 4px 12px rgba(232,102,10,0.3);
}
.card-btn.register:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,102,10,0.4); }

.card-btn.know-more {
  background: var(--gold-ll);
  color: var(--brown);
  border: 1px solid rgba(232,102,10,0.2);
}
.card-btn.know-more:hover { background: var(--cream-d); transform: translateY(-2px); }

.card-contact-row {
  display: flex;
  gap: 8px;
  padding: 0 20px 18px;
}

.contact-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-btn.call {
  background: #EBF5FF;
  color: #1565C0;
  border: 1px solid #BBDEFB;
}
.contact-btn.call:hover { background: #1565C0; color: white; }

.contact-btn.whatsapp {
  background: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #C8E6C9;
}
.contact-btn.whatsapp:hover { background: var(--whatsapp); color: white; }

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; color: var(--text-main); margin-bottom: 8px; }
.empty-state p  { color: var(--text-sub); }

/* === RASHMIN SECTION === */
.about-rashmin {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-d) 40%, #8B2500 100%);
}

.rashmin-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.rashmin-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,200,80,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.rashmin-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rashmin-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.rashmin-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}

.rashmin-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 10px 22px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.h-icon { font-size: 1.1rem; }

/* === YOUTUBE SECTION === */
.youtube-section {
  padding: 80px 0;
  background: var(--warm-white);
}

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

.yt-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  border: 1px solid var(--border);
}

.yt-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* === ORGANISE SECTION === */
.organise-section {
  padding: 80px 0;
  background: var(--cream);
}

.organise-card {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.organise-bg-shine {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
  pointer-events: none;
}

.organise-icon-wrap {
  margin-bottom: 20px;
}

.organise-icon {
  font-size: 3.5rem;
  animation: gentleSpin 8s linear infinite;
  display: inline-block;
}

@keyframes gentleSpin {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.organise-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.2;
}

.organise-subtitle {
  font-size: 1rem;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 20px;
}

.organise-desc {
  font-size: 0.97rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.organise-contact {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px dashed rgba(232,102,10,0.3);
}

.organise-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.organise-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

.organise-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.organise-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.organise-btn.call {
  background: linear-gradient(135deg, #1565C0, #1976D2);
  color: white;
  box-shadow: 0 4px 16px rgba(21,101,192,0.3);
}
.organise-btn.call:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(21,101,192,0.4); }

.organise-btn.whatsapp {
  background: linear-gradient(135deg, #128C7E, var(--whatsapp));
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.organise-btn.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* === FOOTER === */
.footer {
  background: var(--text-main);
  padding: 40px 20px;
  text-align: center;
}

.footer-logo-img {
  width: 80px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.7);
  margin-bottom: 16px;
}

.footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.footer-sub { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-sub strong { color: rgba(255,255,255,0.6); }

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 6, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 92svh;
  overflow-y: auto;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

/* On desktop: center as a dialog */
@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }
  .modal-box {
    border-radius: var(--radius-lg);
    transform: scale(0.9) translateY(20px);
  }
  .modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--text-main);
  z-index: 10;
}
.modal-close:hover { background: rgba(0,0,0,0.12); transform: rotate(90deg); }

.modal-header {
  padding: 48px 28px 28px;
  text-align: center;
  background: linear-gradient(160deg, var(--saffron), var(--gold));
  position: relative;
}

.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 14px;
  display: block;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.modal-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.modal-body {
  padding: 28px;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--saffron);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
}

.modal-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.modal-benefit::before {
  content: '✨';
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-detail-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.modal-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.modal-detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.modal-prereq {
  background: linear-gradient(135deg, var(--gold-ll), var(--cream));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.6;
}

.modal-footer-btn {
  padding: 0 28px 32px;
}

.modal-register-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-d));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(232,102,10,0.35);
  font-family: 'Inter', sans-serif;
}
.modal-register-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,102,10,0.45); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* === ANIMATIONS === */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 14px; }
  .stat-num  { font-size: 1.4rem; }
  .stat-label{ font-size: 0.62rem; }

  .courses-intro,
  .schedule-section,
  .about-rashmin,
  .organise-section { padding: 56px 0; }

  .section-header { margin-bottom: 32px; }

  .course-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .course-type-card { padding: 22px 16px; }
  .ctc-icon { font-size: 2.2rem; }
  .ctc-title { font-size: 1rem; }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rashmin-highlights {
    gap: 10px;
  }
  .highlight-item { font-size: 0.82rem; padding: 8px 16px; }

  .organise-card { padding: 40px 24px; border-radius: var(--radius-md); }
  .organise-actions { gap: 10px; }
  .organise-btn { padding: 12px 20px; font-size: 0.88rem; }
  .organise-btn span { display: none; }

  .modal-detail-grid { grid-template-columns: 1fr; }
  .modal-body { padding: 20px; }
  .modal-footer-btn { padding: 0 20px 28px; }
}

@media (max-width: 400px) {
  .course-types-grid { grid-template-columns: 1fr; }
  .hero-stats .stat-item { padding: 0 10px; }
  .stat-divider { display: none; }
  .hero-stats { gap: 8px; }
}

/* === CARD ANIMATION DELAYS === */
.schedule-card:nth-child(1)  { animation-delay: 0.05s; }
.schedule-card:nth-child(2)  { animation-delay: 0.10s; }
.schedule-card:nth-child(3)  { animation-delay: 0.15s; }
.schedule-card:nth-child(4)  { animation-delay: 0.20s; }
.schedule-card:nth-child(5)  { animation-delay: 0.25s; }
.schedule-card:nth-child(6)  { animation-delay: 0.30s; }
.schedule-card:nth-child(7)  { animation-delay: 0.35s; }
.schedule-card:nth-child(8)  { animation-delay: 0.40s; }

