/* =========================================
   RISHIKESH SADAN — PORTAL STYLES v2
   Color extracted from logo: Deep Forest Green
   ========================================= */

:root {
  --green-dark:    #1a5c32;
  --green-main:    #1e6b3a;
  --green-mid:     #2d7a4a;
  --green-light:   #4a9965;
  --green-pale:    #e8f4ed;
  --green-mist:    #f2f8f4;
  --gold:          #c8a84b;
  --gold-light:    #e8c87a;
  --cream:         #faf6ef;
  --cream-dark:    #f0e8d8;
  --white:         #ffffff;
  --text-dark:     #1a1a1a;
  --text-mid:      #3d3d3d;
  --text-light:    #6b6b6b;
  --text-muted:    #9a9a9a;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.13);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text-dark); }
.section-eyebrow { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--green-main); }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,.7); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.btn-primary { background: var(--green-main); color: var(--white); border-color: var(--green-main); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,107,58,.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-secondary { background: transparent; color: var(--green-main); border-color: var(--green-main); }
.btn-secondary:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #b8941e; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: var(--shadow-sm); }
.nav-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 48px; filter: brightness(0) invert(1); transition: var(--transition); }
.navbar.scrolled .nav-logo img { filter: none; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9); padding: 8px 14px; border-radius: 50px; transition: var(--transition); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--green-main); background: var(--green-pale); }
.nav-link.nav-cta { background: var(--green-main); color: var(--white) !important; border: 2px solid var(--green-main); padding: 8px 20px; }
.nav-link.nav-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }
.chevron { width: 10px; height: 10px; transition: transform .2s; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* Dropdown Nav */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); z-index: 100; border: 1px solid rgba(0,0,0,.06); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 16px; font-size: 13px; color: var(--text-mid); border-radius: var(--radius-sm); transition: var(--transition); font-weight: 500; }
.dropdown-menu li a:hover { background: var(--green-pale); color: var(--green-main); }

/* ===== HERO (Home) ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; background: #0d3320; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(30,107,58,.2) 0%, transparent 60%), linear-gradient(135deg, rgba(13,51,32,.78) 0%, rgba(26,92,50,.68) 35%, rgba(35,74,46,.72) 65%, rgba(13,36,24,.82) 100%); z-index: 1; pointer-events: none; }
.hero-bg::after { content: ''; position: absolute; inset: 0; opacity: 0.02; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,1) 0px, rgba(255,255,255,1) 1px, transparent 1px, transparent 60px); z-index: 2; pointer-events: none; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.1); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 32px 80px; max-width: 900px; animation: fadeUp 1s ease forwards; }
.hero-eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--gold-light); margin-bottom: 8px; letter-spacing: 2px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 700; color: var(--white); line-height: 1.0; margin-bottom: 4px; text-shadow: 0 4px 24px rgba(0,0,0,.2); }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; color: var(--gold-light); letter-spacing: 2px; margin-bottom: 24px; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-badges { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.badge { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.badge-num { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold-light); }
.badge-label { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; text-align: center; }
.badge-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: scrollPulse 2s ease infinite; }

/* Inner Page Hero */
.hero-inner { position: relative; padding: 160px 0 80px; text-align: center; overflow: hidden; background: var(--green-dark); }
.hero-inner-bg { position: absolute; inset: 0; overflow: hidden; background: #0d3320; }
.hero-inner-bg .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-inner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,51,32,.88) 0%, rgba(26,92,50,.78) 100%); }
.hero-inner .container { position: relative; z-index: 2; }
.hero-inner .hero-eyebrow { display: block; margin-bottom: 12px; }
.hero-inner h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.hero-inner p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--green-dark); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 32px; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track span { font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.75); }
.marquee-track .dot { color: var(--gold); font-size: 10px; }

/* ===== ABOUT SECTION ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-frame { position: relative; }
.about-img-placeholder { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-main-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-accent-card { position: absolute; bottom: -24px; right: -24px; background: var(--white); border-radius: var(--radius-md); padding: 24px 28px; box-shadow: var(--shadow-lg); text-align: center; }
.accent-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--green-main); line-height: 1; }
.accent-text { font-size: 12px; color: var(--text-light); line-height: 1.4; margin-top: 4px; }
.about-lead { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-body { color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--green-pale); border-radius: 10px; }
.pillar strong { display: block; font-size: .95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.pillar p { font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== PROGRAMS ===== */
.programs { background: var(--white); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.programs-cta-row { text-align: center; margin-top: 40px; }
.program-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: var(--transition); display: flex; flex-direction: column; padding: 0 28px 28px; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.program-card-body { flex: 1; display: flex; flex-direction: column; }
.program-img { height: 200px; background-size: cover; background-position: center; flex-shrink: 0; margin: 0 -28px 24px; width: calc(100% + 56px); }
.program-featured { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%); border-color: transparent; }
.program-featured .program-img { filter: brightness(.85) saturate(1.2); }
.program-featured .program-name, .program-featured .program-hours { color: var(--white); }
.program-featured .program-desc { color: rgba(255,255,255,.8); }
.program-featured .program-highlights li { color: rgba(255,255,255,.8); }
.program-featured .program-highlights li::before { color: var(--gold-light); }
.program-featured .program-meta { border-top-color: rgba(255,255,255,.2); }
.program-featured .program-price { color: var(--gold-light); }
.program-featured .program-duration { color: rgba(255,255,255,.6); }
.program-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; }
.program-icon { font-size: 2rem; margin-bottom: 8px; }
.program-hours { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 6px; }
.program-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.program-desc { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.program-highlights { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.program-highlights li { font-size: .85rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.program-highlights li::before { content: '✓'; color: var(--green-main); font-weight: 700; flex-shrink: 0; }
.program-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #f0f0f0; margin-bottom: 16px; }
.program-duration { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.program-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--green-main); }

/* ===== WHY US ===== */
.why-us { position: relative; background: var(--green-dark); overflow: hidden; }
.why-us-bg { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(200,168,75,.08) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(200,168,75,.06) 0%, transparent 50%); }
.why-us .section-eyebrow { color: var(--gold-light); }
.why-us .section-title { color: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 1; }
.feature-item { text-align: center; padding: 36px 24px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); transition: var(--transition); }
.feature-item:hover { background: rgba(255,255,255,.08); border-color: rgba(200,168,75,.3); transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.feature-item p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ===== EXPERIENCE / TIMELINE ===== */
.experience { background: var(--cream); }
.schedule-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.schedule-timeline::before { content: ''; position: absolute; left: 110px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green-pale), var(--green-light), var(--green-pale)); }
.timeline-item { display: flex; gap: 40px; margin-bottom: 32px; }
.timeline-time { min-width: 90px; text-align: right; font-size: 13px; font-weight: 700; color: var(--green-main); letter-spacing: .5px; padding-top: 4px; position: relative; }
.timeline-time::after { content: ''; position: absolute; right: -28px; top: 10px; width: 12px; height: 12px; background: var(--green-main); border-radius: 50%; border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--green-main); }
.timeline-content { flex: 1; background: var(--white); border-radius: var(--radius-md); padding: 18px 22px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--green-pale); transition: var(--transition); }
.timeline-content:hover { border-left-color: var(--green-main); box-shadow: var(--shadow-md); }
.timeline-content h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.timeline-content p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); gap: 16px; }
.gallery-item { overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-placeholder { width: 100%; height: 100%; border-radius: var(--radius-md); display: flex; align-items: flex-end; padding: 16px; transition: transform .4s ease; position: relative; background-size: cover; background-position: center; }
.gallery-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%); border-radius: var(--radius-md); }
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-label { position: relative; z-index: 1; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.9); }
.gallery-cta-row { text-align: center; margin-top: 36px; }

/* ===== ACCOMMODATION TEASER ===== */
.stay-teaser { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.stay-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.stay-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,51,32,.85) 0%, rgba(26,92,50,.78) 100%); }
.stay-content { position: relative; z-index: 2; }
.stay-teaser .section-eyebrow { color: var(--gold-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 52px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; gap: 16px; border: 1px solid transparent; }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-pale); transform: translateY(-4px); }
.testimonial-featured { background: linear-gradient(135deg, var(--green-dark), var(--green-main)); border-color: transparent; }
.testimonial-featured .testimonial-text { color: rgba(255,255,255,.88); }
.testimonial-featured .stars { color: var(--gold-light); }
.testimonial-featured strong { color: var(--white); }
.testimonial-featured span { color: rgba(255,255,255,.6); }
.testimonial-featured .author-avatar { background: rgba(255,255,255,.15); color: var(--white); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-mid); line-height: 1.8; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: var(--green-pale); color: var(--green-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text-dark); }
.testimonial-author span { font-size: .8rem; color: var(--text-muted); }
.rating-summary { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rating-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--green-main); line-height: 1; }
.rating-stars { font-size: 1.5rem; color: var(--gold); letter-spacing: 4px; }
.rating-label { font-size: .9rem; color: var(--text-light); }
.rating-platforms { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.rating-platforms span { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); padding: 4px 14px; border: 1px solid #e0e0e0; border-radius: 50px; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-lead { color: var(--text-light); line-height: 1.8; margin-bottom: 32px; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; width: 44px; height: 44px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item p { font-size: .9rem; color: var(--text-light); line-height: 1.5; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 44px; height: 44px; background: var(--green-pale); color: var(--green-main); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--green-main); color: var(--white); transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; }
.contact-form-wrap { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-mid); letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid #e0e0e0; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--white); transition: var(--transition); outline: none; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(30,107,58,.1); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.4rem; color: var(--green-main); margin-bottom: 8px; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 44px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 300px; margin-bottom: 12px; }
.footer-cert { font-size: 12px; color: var(--gold-light); font-weight: 600; }
.footer-links h5 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.35); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition); z-index: 999; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== ABOUT PAGE ===== */
.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 3rem; margin-bottom: 16px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-main); margin-bottom: 12px; }
.value-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.faculty-section { background: var(--white); }
.faculty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.faculty-card { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; display: flex; gap: 0; transition: var(--transition); box-shadow: var(--shadow-sm); }
.faculty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.faculty-img { width: 180px; flex-shrink: 0; }
.faculty-img img { width: 100%; height: 100%; object-fit: cover; }
.faculty-info { padding: 28px 24px; flex: 1; }
.faculty-role { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.faculty-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-main); margin-bottom: 4px; }
.faculty-exp { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.faculty-bio { font-size: .88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.faculty-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.faculty-tag { font-size: 11px; padding: 3px 10px; background: var(--green-pale); color: var(--green-main); border-radius: 50px; font-weight: 600; }
.csr-section { background: var(--green-dark); position: relative; overflow: hidden; }
.csr-section .section-eyebrow { color: var(--gold-light); }
.csr-section .section-title { color: var(--white); }
.csr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.csr-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; transition: var(--transition); }
.csr-card:hover { background: rgba(255,255,255,.1); border-color: var(--gold); }
.csr-icon { font-size: 2.5rem; margin-bottom: 14px; }
.csr-card h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; }
.csr-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; }

/* ===== PROGRAMS PAGE ===== */
.program-detail { padding: 80px 0; border-bottom: 1px solid #f0f0f0; }
.program-detail:nth-child(even) { background: var(--cream); }
.program-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.program-detail:nth-child(even) .program-detail-grid { direction: rtl; }
.program-detail:nth-child(even) .program-detail-grid > * { direction: ltr; }
.program-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.program-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.curriculum-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0; }
.curriculum-list li { font-size: .88rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.curriculum-list li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; }
.price-tag { display: inline-flex; align-items: center; gap: 12px; background: var(--green-pale); padding: 12px 20px; border-radius: 12px; margin-bottom: 20px; }
.price-tag .price-amount { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-main); }
.price-tag .price-label { font-size: 12px; color: var(--text-light); }
.dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin: 16px 0 24px; }
.date-chip { padding: 8px 14px; background: var(--green-pale); border-radius: var(--radius-sm); text-align: center; border: 1px solid rgba(30,107,58,.15); }
.date-chip .month { font-size: 11px; font-weight: 700; color: var(--green-main); letter-spacing: 1px; text-transform: uppercase; }
.date-chip .dates { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.faq-section { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.faq-question:hover { color: var(--green-main); }
.faq-toggle { font-size: 1.4rem; color: var(--green-main); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-light); line-height: 1.8; font-size: .95rem; }

/* ===== ACCOMMODATION PAGE ===== */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img { height: 220px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 24px; }
.room-type-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.room-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-main); margin-bottom: 8px; }
.room-desc { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.room-amenity { font-size: 12px; padding: 4px 10px; background: var(--green-pale); color: var(--green-main); border-radius: 50px; }
.room-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-main); }
.room-price span { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-muted); font-weight: 400; }
.facilities-section { background: var(--cream); }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.facility-item { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.facility-img { height: 150px; overflow: hidden; }
.facility-img img { width: 100%; height: 100%; object-fit: cover; }
.facility-label { padding: 14px 16px; font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.food-section { background: var(--white); }
.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.food-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.food-img img { width: 100%; height: 100%; object-fit: cover; }
.meal-schedule { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.meal-item { display: flex; gap: 16px; align-items: center; padding: 14px 18px; background: var(--cream); border-radius: var(--radius-sm); }
.meal-time { font-size: 13px; font-weight: 700; color: var(--green-main); min-width: 80px; }
.meal-desc { font-size: .9rem; color: var(--text-mid); }
.rules-section { background: var(--green-dark); }
.rules-section .section-eyebrow { color: var(--gold-light); }
.rules-section .section-title { color: var(--white); }
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.rule-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; background: rgba(255,255,255,.06); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.1); }
.rule-icon { font-size: 1.4rem; flex-shrink: 0; }
.rule-item p { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.rule-item strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 2px; }

/* ===== GALLERY PAGE ===== */
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn { padding: 8px 22px; border-radius: 50px; border: 1.5px solid #e0e0e0; background: var(--white); color: var(--text-mid); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--green-main); color: var(--white); border-color: var(--green-main); }
.gallery-masonry { columns: 3; gap: 16px; }
.gallery-masonry .gallery-img { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.gallery-masonry .gallery-img img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-masonry .gallery-img:hover img { transform: scale(1.04); }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: var(--white); font-size: 1.8rem; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 14px; text-align: center; }

/* ===== APPLY PAGE ===== */
.apply-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.apply-info { position: sticky; top: 100px; }
.apply-info-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; height: 280px; }
.apply-info-img img { width: 100%; height: 100%; object-fit: cover; }
.apply-steps { display: flex; flex-direction: column; gap: 16px; }
.apply-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num { width: 36px; height: 36px; background: var(--green-main); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.step-text strong { display: block; font-size: .92rem; color: var(--text-dark); margin-bottom: 2px; }
.step-text p { font-size: .85rem; color: var(--text-light); }
.multi-step-form { background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-md); border: 1px solid #f0f0f0; }
.form-progress { display: flex; gap: 0; margin-bottom: 36px; }
.progress-step { flex: 1; text-align: center; position: relative; }
.progress-step::before { content: ''; position: absolute; top: 16px; left: -50%; width: 100%; height: 2px; background: #e0e0e0; z-index: 0; }
.progress-step:first-child::before { display: none; }
.progress-step.active::before, .progress-step.done::before { background: var(--green-main); }
.p-circle { width: 32px; height: 32px; border-radius: 50%; background: #e0e0e0; color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin: 0 auto 6px; position: relative; z-index: 1; transition: var(--transition); }
.progress-step.active .p-circle { background: var(--green-main); color: var(--white); }
.progress-step.done .p-circle { background: var(--green-main); color: var(--white); }
.p-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.progress-step.active .p-label { color: var(--green-main); font-weight: 700; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 24px; color: var(--text-dark); }
.form-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--green-main); }

/* ===== BLOG PAGE ===== */
.blog-featured { background: var(--cream); padding: 80px 0; }
.blog-featured-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.blog-featured-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); background: var(--green-main); padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text-dark); margin-bottom: 12px; line-height: 1.3; }
.blog-title a { color: inherit; transition: var(--transition); }
.blog-title a:hover { color: var(--green-main); }
.blog-meta { display: flex; gap: 16px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.blog-meta span::before { content: '· '; }
.blog-meta span:first-child::before { content: ''; }
.blog-excerpt { color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.blog-grid-section { background: var(--white); padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid #eee; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-body .blog-title { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body .blog-meta { margin-bottom: 10px; }
.blog-card-body .blog-excerpt { font-size: .88rem; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; display: -webkit-box; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green-main); margin-top: 14px; transition: var(--transition); }
.blog-read-more:hover { gap: 10px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .story-grid, .food-grid, .contact-grid, .apply-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .program-detail-grid { grid-template-columns: 1fr; }
  .program-detail:nth-child(even) .program-detail-grid { direction: ltr; }
  .blog-featured-grid { grid-template-columns: 1fr; }
  .apply-info { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--white); flex-direction: column; padding: 80px 20px 40px; box-shadow: -4px 0 24px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .3s ease; z-index: 999; align-items: flex-start; gap: 4px; overflow-y: auto; }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { color: var(--text-dark) !important; width: 100%; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none; background: var(--green-pale); padding: 4px 0 4px 16px; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-badges { flex-direction: column; gap: 16px; }
  .badge-divider { display: none; }
  .programs-grid, .features-grid, .testimonials-grid, .values-grid, .csr-grid, .blog-grid, .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-large { grid-row: auto; grid-column: span 2; height: 200px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .schedule-timeline::before { left: 80px; }
  .timeline-item { gap: 24px; }
  .timeline-time { min-width: 64px; font-size: 12px; }
  .timeline-time::after { right: -22px; }
  .multi-step-form { padding: 32px 20px; }
  .curriculum-list { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .faculty-card { flex-direction: column; }
  .faculty-img { width: 100%; height: 200px; }
  .checkbox-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .contact-form-wrap { padding: 24px 16px; }
  .about-accent-card { right: -8px; bottom: -8px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
}
