:root {
    /* Brand & Theme Colors */
    --brand-green: #3A8F3A;   /* Primary Brand Color - Herbal Green */
    --brand-dark: #1B5E20;    /* Dark Herbal Green - Headings/Dark Text */
    --saffron: #F57C00;       /* Saffron Orange - Action Buttons */
    --gold: #FBC02D;          /* Golden Yellow - Hover/Glow Accents */
    
    /* Background Colors */
    --bg-cream: #FFF8E1;      /* Ayurvedic Cream - Main Background */
    --bg-soft-green: #E8F5E9; /* Soft Herbal Green - Alternate Sections */
    --white: #FFFFFF;         /* White - Cards and Containers */
    
    /* Text Colors */
    --text-dark: #1B5E20;     /* Deep Green for Headings */
    --text-brown: #5D4037;    /* Natural Brown for Body Text */

    /* Shadows & Transitions */
    --shadow-soft: 0 8px 30px rgba(58, 143, 58, 0.08);
    --shadow-hover: 0 15px 40px rgba(58, 143, 58, 0.15);
    --shadow-saffron: 0 10px 25px rgba(245, 124, 0, 0.25);
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Typography */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-cream); color: var(--text-brown); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.text-highlight { color: var(--brand-green); }
.text-accent { color: var(--saffron); }
.sub-text { font-size: 0.95rem; opacity: 0.85; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-gold { background-color: var(--gold) !important; color: var(--text-dark) !important; }
.text-dark { color: var(--text-dark) !important; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: all var(--transition); border: none;
    position: relative; overflow: hidden; z-index: 1; letter-spacing: 0.5px;
}
.btn-primary { background: var(--saffron); color: var(--white); box-shadow: var(--shadow-saffron); }
.btn-primary:hover {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(251, 192, 45, 0.35); color: var(--white);
}
.btn-accent { background: transparent; border: 2px solid var(--saffron); color: var(--saffron); }
.btn-accent:hover { background: var(--saffron); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-saffron); }
.btn-outline { background: transparent; border: 2px solid var(--brand-green); color: var(--brand-green); }
.btn-outline:hover { background: var(--brand-green); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--brand-dark); color: var(--white); }
.btn-dark:hover { background: #0A3D0A; color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.btn-large { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn-icon { width: 45px; height: 45px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--brand-green); box-shadow: var(--shadow-soft); font-size: 1.1rem; }
.btn-icon:hover { background: var(--saffron); color: var(--white); transform: translateY(-3px) rotate(10deg); box-shadow: var(--shadow-saffron); }
.btn-whatsapp { background: #25D366; color: white; border: none; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: #1ebe58; transform: translateY(-3px) scale(1.05); }

/* Glow Animation */
.glow-effect { animation: btnGlow 2s infinite; }
@keyframes btnGlow {
    0% { box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(245, 124, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 124, 0, 0); }
}

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; background: var(--brand-green); z-index: 1000; padding: 0.8rem 0; box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2); transition: 0.3s; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.header-logo-img { height: 50px; background: var(--white); padding: 5px; border-radius: 8px; }
.desktop-nav { background: rgba(255, 255, 255, 0.1); padding: 0.5rem 1.5rem; border-radius: 50px; backdrop-filter: blur(10px); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 1rem; color: var(--white); padding: 0.3rem 0; }
.nav-links a:hover { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 1.5rem; }
.phone-info { color: var(--white); display: flex; align-items: center; gap: 8px; }
.phone-numbers { display: flex; gap: 6px; font-weight: 500; }
.phone-numbers a:hover { color: var(--gold); }
.phone-info i { color: var(--gold); font-size: 1.1rem; }
.header-actions { display: flex; gap: 1rem; align-items: center; }

/* Mobile Menu */
.hamburger { font-size: 1.8rem; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,0.3); padding: 0.5rem; border-radius: 8px; cursor: pointer; display: none; }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); box-shadow: -10px 0 30px rgba(58,143,58,0.1); z-index: 2000; padding: 5rem 2rem 2rem; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-nav.active { right: 0; }
.close-btn { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: var(--text-dark); background: transparent; border: none; cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: var(--saffron); transform: rotate(90deg); }
.mobile-nav-links li { margin-bottom: 1.5rem; }
.mobile-nav-links a { font-size: 1.2rem; font-weight: 600; color: var(--brand-green); display: block; border-bottom: 1px solid rgba(58, 143, 58, 0.1); padding-bottom: 0.8rem; }
.mobile-nav-links a:hover { color: var(--text-dark); background: var(--bg-soft-green); padding-left: 10px; }
.mobile-nav-footer { margin-top: auto; padding-top: 2rem; border-top: 1px solid rgba(58, 143, 58, 0.1); }

/* Hero Section */
.hero { padding-top: 140px; padding-bottom: 60px; min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at right, var(--bg-soft-green) 0%, var(--bg-cream) 70%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.leaf { position: absolute; color: var(--brand-green); opacity: 0.05; z-index: 0; pointer-events: none; font-size: 10rem; }
.leaf-1 { top: 5%; left: -5%; transform: rotate(45deg); animation: float 8s infinite ease-in-out; }
.leaf-2 { bottom: 5%; right: -5%; font-size: 20rem; transform: rotate(-30deg); animation: float 10s infinite ease-in-out 1s; }
.leaf-3 { top: 40%; left: 40%; font-size: 15rem; transform: rotate(15deg); animation: float 6s infinite ease-in-out 2s; }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(auto); } 50% { transform: translateY(-20px) rotate(auto); } }

.badge { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(245, 124, 0, 0.1); color: var(--saffron); border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(245, 124, 0, 0.2); }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-subheadline { font-size: 1.15rem; color: var(--text-brown); margin-bottom: 2rem; max-width: 600px; }
.hero-highlights { margin-bottom: 2.5rem; }
.hero-highlights li { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; font-size: 1.05rem; font-weight: 500; }
.hero-highlights i { color: var(--brand-green); font-size: 1.2rem; background: rgba(58, 143, 58, 0.1); padding: 6px; border-radius: 50%; }
.hero-buttons { display: flex; gap: 1rem; }

/* Lead Form */
.glass-form { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: var(--shadow-hover); border: 1px solid rgba(58, 143, 58, 0.1); position: relative; z-index: 1; }
.form-header h2 { font-size: 1.8rem; text-align: center; }
.form-header p { text-align: center; color: var(--text-brown); margin-bottom: 1.5rem; }
.form-group { position: relative; margin-bottom: 1.2rem; }
.form-group i { position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--brand-green); font-size: 1.1rem; }
.form-group input, .form-group select { width: 100%; padding: 1rem 1rem 1rem 3rem; border: 1px solid rgba(58, 143, 58, 0.2); border-radius: 12px; font-size: 1rem; background: #FAFAFA; transition: var(--transition); color: var(--text-brown); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--brand-green); background: var(--white); box-shadow: 0 0 0 4px rgba(58, 143, 58, 0.1); }

/* Decorative Card Tilt */
.card-tilt { transition: transform 0.3s ease; transform-style: preserve-3d; }
.card-tilt:hover { transform: translateY(-5px) scale(1.02); }

/* Common Backgrounds */
.features { background: var(--bg-soft-green); }
.courses { background: var(--bg-cream); }
.facilities { background: var(--bg-soft-green); }
.career { background: var(--bg-cream); }
.admission-process { background: var(--bg-soft-green); }
.apply-saffron { background: var(--bg-cream); }
.faq { background: var(--bg-soft-green); }

/* Trust Bar */
.trust-bar { background: var(--white); padding: 2.5rem 0; box-shadow: var(--shadow-soft); position: relative; z-index: 10; border-top: 1px solid rgba(58, 143, 58, 0.1); border-bottom: 1px solid rgba(58, 143, 58, 0.1); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; margin-bottom: 1.5rem; }
.trust-item i { font-size: 2.5rem; color: var(--saffron); margin-bottom: 1rem; }
.trust-item span { font-weight: 700; font-size: 1.15rem; color: var(--text-dark); }
.trust-desc { text-align: center; padding-top: 1.5rem; border-top: 1px dashed rgba(58, 143, 58, 0.2); color: var(--text-brown); max-width: 800px; margin: 0 auto; }

/* Section Title */
.section-title h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.section-title p { font-size: 1.1rem; color: var(--text-brown); max-width: 700px; margin: 0 auto 3rem; }

/* Features & Cards */
.features-grid, .courses-grid, .career-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card { background: var(--white); padding: 2.5rem 2rem; border-radius: 20px; text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition); border: 1px solid transparent; }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(58, 143, 58, 0.2); }
.icon-box { width: 80px; height: 80px; background: var(--bg-soft-green); border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; margin: 0 auto 1.5rem; transition: var(--transition); }
.icon-box i { font-size: 2rem; color: var(--brand-green); }
.feature-card:hover .icon-box { background: var(--brand-green); }
.feature-card:hover .icon-box i { color: var(--white); }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin: 0; }

/* Courses */
.course-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); display: flex; flex-direction: column; border: 1px solid rgba(58, 143, 58, 0.1); }
.course-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(58, 143, 58, 0.3); }
.course-icon { background: linear-gradient(135deg, var(--saffron), var(--gold)); color: var(--white); padding: 1.5rem; font-size: 1.5rem; font-weight: 800; text-align: center; letter-spacing: 2px; }
.course-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; align-items: center; text-align: center; }
.course-content h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 1rem; }
.course-content p { color: var(--text-brown); margin-bottom: 1.5rem; flex-grow: 1; line-height: 1.6; }

/* Facilities */
.facilities-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.facility-list { margin-top: 2rem; }
.facility-list li { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; align-items: flex-start; }
.facility-list i { font-size: 1.5rem; color: var(--white); background: var(--brand-green); width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; box-shadow: var(--shadow-soft); flex-shrink: 0; }
.facility-list strong { font-size: 1.15rem; color: var(--text-dark); display: block; margin-bottom: 0.3rem; }
.facility-list span { color: var(--text-brown); font-size: 0.95rem; }
.image-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-hover); }
.image-wrapper img { width: 100%; display: block; transition: transform 0.8s; }
.image-wrapper:hover img { transform: scale(1.05); }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255, 248, 225, 0.8) 0%, transparent 40%); z-index: 1; pointer-events: none; }
.floating-stat { position: absolute; bottom: 30px; right: -20px; background: var(--white); padding: 1.5rem; border-radius: 16px; box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 1rem; z-index: 10; animation: float 5s ease-in-out infinite; border: 1px solid rgba(58, 143, 58, 0.1); }
.floating-stat i { font-size: 2.5rem; color: var(--gold); }
.floating-stat span { font-weight: 700; font-size: 1rem; color: var(--text-dark); line-height: 1.3; }

/* Career Options */
.career-item { background: var(--white); padding: 1.5rem; border-radius: 16px; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(58, 143, 58, 0.1); transition: var(--transition); }
.career-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(58, 143, 58, 0.2); }
.career-icon { font-size: 1.5rem; color: var(--white); width: 50px; height: 50px; display: inline-flex; justify-content: center; align-items: center; background: var(--brand-green); border-radius: 12px; flex-shrink: 0; }
.career-item h3 { margin: 0; font-size: 1.15rem; color: var(--text-dark); }

/* Admission Process */
.process-steps { display: flex; justify-content: space-between; align-items: center; position: relative; margin-top: 3rem; }
.process-steps::before { content: ''; position: absolute; top: 45px; left: 10%; right: 10%; height: 2px; background: dashed 2px rgba(58, 143, 58, 0.3); z-index: 1; }
.step-card { width: 30%; background: var(--white); padding: 3rem 2rem 2rem; border-radius: 20px; text-align: center; box-shadow: var(--shadow-soft); position: relative; z-index: 2; transition: var(--transition); border: 1px solid rgba(58, 143, 58, 0.1); }
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--brand-green); }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--saffron), #FB8C00); color: var(--white); font-size: 1.5rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -30px; left: 50%; transform: translateX(-50%); box-shadow: 0 8px 20px rgba(245, 124, 0, 0.3); border: 4px solid var(--bg-soft-green); }
.step-connector { display: none; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--text-dark); }
.step-card p { font-size: 0.95rem; color: var(--text-brown); margin: 0; }

/* Apply Now - Saffron Plate */
.saffron-plate { background: linear-gradient(135deg, var(--saffron), #e67300); border-radius: 24px; padding: 3rem; display: flex; align-items: center; gap: 3rem; box-shadow: var(--shadow-saffron); overflow: hidden; position: relative; }
.saffron-plate::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.1; pointer-events: none; }
.saffron-content { flex: 1; z-index: 2; position: relative; }
.saffron-content h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 1rem; }
.saffron-content p { color: rgba(255,255,255,0.95); font-size: 1.1rem; margin: 0; }
.saffron-form { flex: 1.2; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 2rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.3); z-index: 2; position: relative; }
.saffron-form input, .saffron-form select { width: 100%; padding: 1rem; border-radius: 12px; border: none; font-size: 1rem; background: var(--white); color: var(--text-brown); outline: none; }
.saffron-form input::placeholder { color: #A1887F; }
.saffron-form button { grid-column: 1 / -1; background: var(--brand-dark); color: var(--white); padding: 1rem; font-size: 1.1rem; border: none; border-radius: 12px; font-weight: 700; cursor: pointer; transition: var(--transition); margin-top: 0.5rem; text-shadow: none; }
.saffron-form button:hover { background: #0A3D0A; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transform: translateY(-3px); }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.accordion { margin-top: 2rem; }
.accordion-item { background: var(--white); border-radius: 12px; margin-bottom: 1rem; box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid rgba(58, 143, 58, 0.1); }
.accordion-header { width: 100%; text-align: left; padding: 1.5rem; background: transparent; border: none; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: var(--transition); outline: none; }
.accordion-header:hover { color: var(--saffron); }
.accordion-header i { color: var(--brand-green); transition: transform 0.3s; }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; background: var(--bg-cream); }
.accordion-content p { padding: 0 1.5rem 1.5rem; color: var(--text-brown); margin: 0; }
.accordion-item.active .accordion-content { max-height: 250px; }

/* Final CTA */
.final-cta { padding: 5rem 0; text-align: center; background: radial-gradient(circle at center, rgba(58, 143, 58, 0.08) 0%, transparent 70%); border-bottom: 1px solid rgba(58, 143, 58, 0.1); }
.final-cta h2 { font-size: 2.8rem; max-width: 800px; margin: 1.5rem auto 2rem; color: var(--text-dark); }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; }

/* Footer */
.footer { background: var(--brand-green); color: var(--white); padding: 5rem 0 2rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo-img { height: 60px; background: var(--white); padding: 8px; border-radius: 8px; margin-bottom: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 90%; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.15); display: inline-flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); font-size: 1.1rem; }
.social-links a:hover { background: var(--saffron); border-color: var(--saffron); transform: translateY(-5px); box-shadow: var(--shadow-saffron); }
.footer h3 { color: var(--white); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; position: relative; display: inline-block; padding-bottom: 0.5rem; }
.footer h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 1rem; }
.footer-links ul li a { color: rgba(255,255,255,0.85); transition: var(--transition); display: inline-block; }
.footer-links ul li a:hover { color: var(--gold); transform: translateX(5px); }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-list i { color: var(--gold); font-size: 1.2rem; margin-top: 3px; }
.contact-list strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 0.2rem; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.85rem; }
.contact-list a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.contact-list a:hover { color: var(--gold); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 2rem; }

/* Desktop vs Mobile Display */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Animations - Scroll Reveal */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 1s, transform 1s; }
.animate-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.is-visible { opacity: 1; transform: translate(0) !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero { padding-top: 120px; text-align: center; background: radial-gradient(circle at center, var(--bg-soft-green) 0%, var(--bg-cream) 70%); }
    .hero-content h1 { font-size: 3rem; }
    .hero-highlights { margin: 0 auto 2.5rem; display: inline-block; text-align: left; }
    .hero-buttons { justify-content: center; }
    .glass-form { margin: 0 auto; max-width: 500px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .facilities-container { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 4rem; }
    .process-steps::before { display: none; }
    .step-card { width: 100%; max-width: 450px; }
    .step-connector { display: block; color: var(--brand-green); font-size: 2rem; transform: rotate(90deg); position: absolute; left: 50%; width: 40px; margin-left: -20px; margin-top: -30px; text-align: center; z-index: 0; }
    .saffron-plate { flex-direction: column; text-align: center; padding: 2.5rem; gap: 2rem; }
    .floating-stat { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .phone-info.desktop-only { display: none; }
    .section-padding { padding: 4rem 0; }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-flex !important; }
    .header-actions { display: flex; }
    .hamburger { display: block; border: 1px solid rgba(255,255,255,0.4); padding: 5px 10px; border-radius: 6px; }
    .hero-content h1 { font-size: 2.2rem; }
    .section-title h2, .final-cta h2 { font-size: 2rem; }
    .features-grid, .courses-grid, .career-grid, .facilities-container { grid-template-columns: 1fr; }
    .saffron-form { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-contact, .footer-links { align-items: center; }
    .footer-brand p { text-align: center; max-width: 100%; }
    .social-links { justify-content: center; }
    .contact-list li { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
    .footer h3::after { left: 50%; transform: translateX(-50%); }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 350px; margin: 0 auto; }
}
