/* ==========================================================================
   PATANJALI YOGA FOUNDATION - 200 HOUR YTT MASTER STYLESHEET
   Version: 4.0 (COMPLETE & VERIFIED)
   ========================================================================== */

/* --- 1. GLOBAL TYPOGRAPHY & VARS --- */
:root {
    --primary: #ff9900;
    --primary-dark: #e68a00;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --light-bg: #f9f9f9;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Open Sans', sans-serif;
}

body { font-family: var(--font-sans); color: #444; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 700; color: var(--dark); }
.text-warning { color: var(--primary) !important; }
.bg-warning { background-color: var(--primary) !important; }
.btn-warning { background-color: var(--primary); border-color: var(--primary); color: #fff; }
.btn-warning:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.section-padding { padding: 80px 0; position: relative; }
.separator-line { width: 60px; height: 3px; background: var(--primary); margin: 15px auto; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
/* ==========================================================================
   2. MODERN GLASSMORPHIC HEADER & NAVIGATION
   ========================================================================== */
.piyf-main-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1050;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}

/* --- Topbar --- */
.piyf-topbar { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 8px 0; transition: 0.4s; }
.topbar-contact a, .topbar-social a { color: #fff; text-decoration: none; font-size: 0.85rem; margin-right: 20px; transition: 0.3s; }
.topbar-contact a:hover, .topbar-social a:hover { color: var(--primary); }

/* --- Navbar --- */
.piyf-navbar { padding: 15px 0; transition: padding 0.4s; }
.brand-logo img { height: 60px; transition: 0.3s; }
.logo-dark { display: none; }

/* --- Desktop Nav Links --- */
.piyf-desktop-nav ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 28px; }
.piyf-desktop-nav > ul > li > a {
    color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.5px; transition: 0.3s; padding: 10px 0;
}
.piyf-desktop-nav > ul > li:hover > a { color: var(--primary); }

/* PREMIUM GLASSMORPHIC DROPDOWN (Forced Override) */
.has-dropdown { position: relative; }
.dropdown-menu-glass {
    position: absolute; top: 100%; left: 0; min-width: 250px;
    background: rgba(255, 255, 255, 0.75) !important; /* Forces Transparency */
    backdrop-filter: blur(20px) !important; 
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-top: 3px solid var(--primary) !important; 
    border-radius: 4px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    padding: 10px 0; display: flex; flex-direction: column;
    /* 3D Fold Down Animation */
    opacity: 0; visibility: hidden; transform: translateY(15px) rotateX(-5deg);
    transform-origin: top center; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.has-dropdown:hover .dropdown-menu-glass { 
    opacity: 1; visibility: visible; transform: translateY(0) rotateX(0); 
}
.dropdown-menu-glass li a {
    color: #222 !important; padding: 10px 20px !important; display: block; 
    font-weight: 600; font-size: 0.85rem; 
    border-bottom: 1px solid rgba(0,0,0,0.04); transition: 0.2s ease-in-out;
    background: transparent !important; /* Stops old theme from making links solid */
}
.dropdown-menu-glass li:last-child a { border-bottom: none; }
.dropdown-menu-glass li a:hover { background: rgba(255,153,0,0.1) !important; color: var(--primary) !important; padding-left: 25px !important; }

/* HEADER SCROLLED STATE (Forced Override) */
.piyf-main-header {
    position: fixed !important; top: 0; left: 0; width: 100%; z-index: 1050;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(0,0,0,0.15) !important;
    backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important;
    border: none !important;
}
.piyf-main-header.scrolled {
    background: rgba(255, 255, 255, 0.85) !important; /* Frosted White */
    backdrop-filter: blur(20px) !important; 
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08) !important;
}
.piyf-main-header.scrolled .piyf-topbar { 
    margin-top: -45px !important; opacity: 0 !important; visibility: hidden !important; 
}
.piyf-main-header.scrolled .piyf-navbar { padding: 8px 0 !important; }
.piyf-main-header.scrolled .logo-light { display: none !important; }
.piyf-main-header.scrolled .logo-dark { display: block !important; height: 50px !important; transition: height 0.3s; }
.piyf-main-header.scrolled .piyf-desktop-nav > ul > li > a { color: var(--text-dark) !important; }
.piyf-main-header.scrolled .piyf-desktop-nav > ul > li:hover > a { color: var(--primary) !important; }
.piyf-main-header.scrolled .menu-toggle-btn .bar { background-color: var(--text-dark) !important; }
/* --- Mobile Hamburger Button --- */
.menu-toggle-btn { background: transparent; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; padding: 5px; }
.menu-toggle-btn .bar { width: 28px; height: 2px; background-color: #fff; border-radius: 2px; transition: 0.3s; }

/* ==========================================================================
   MOBILE APP-STYLE SIDE DRAWER (Condensed & Sleek)
   ========================================================================== */
.drawer-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.6); z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s;
}
.app-side-drawer {
    position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100vh;
    background: #fff; z-index: 2001; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.drawer-backdrop.active { opacity: 1; visibility: visible; }
.app-side-drawer.active { right: 0; }

.drawer-inner { display: flex; flex-direction: column; height: 100%; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #f0f0f0; }
.drawer-logo { height: 40px; }
.close-drawer-btn { background: none; border: none; font-size: 1.5rem; color: #555; cursor: pointer; }
.drawer-scroll-area { padding: 15px 20px; overflow-y: auto; flex-grow: 1; }

/* Mobile Menu Typography (Condensed & Space Saving) */
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li { border-bottom: 1px solid #f5f5f5; }
.mobile-nav-list > li > a, .mob-accordion-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; color: #111; font-weight: 700; text-decoration: none; 
    font-size: 0.9rem; /* Smaller, condensed font size */
    text-transform: uppercase; letter-spacing: -0.2px; cursor: pointer;
}
.mob-accordion-head i { font-size: 0.8rem; transition: transform 0.3s ease; color: #999; }
.mob-accordion-head.active { color: var(--primary); }
.mob-accordion-head.active i { transform: rotate(45deg); color: var(--primary); }

/* The True Accordion Animation */
.mob-submenu { 
    list-style: none; padding: 0 0 0 10px; margin: 0;
    max-height: 0; overflow: hidden; /* Key for JS smooth slide */
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); /* Snappy accordion feel */
}
.mob-submenu li a { 
    display: block; padding: 8px 0; color: #666; font-size: 0.85rem; 
    font-weight: 600; text-decoration: none; 
}
.mob-submenu li a:hover { color: var(--primary); }
/* Glass Pill (Used in headers) */
.glass-pill {
    background: rgba(255, 255, 255, 0.9); border: 1px solid #eee;
    padding: 8px 25px; border-radius: 50px; display: inline-flex;
    align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- 2. HEADER & MOBILE MENU --- */
#nav-capsule {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(0);
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 5px 10px 5px 15px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 1000;
    display: flex; align-items: center; transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.3); max-width: 95%;
    opacity: 1; visibility: visible;
}
#nav-capsule:hover {
    background: rgba(0,0,0,0.4); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
#nav-capsule:hover .capsule-link { color: rgba(255,255,255,0.9); }
#nav-capsule:hover .capsule-link:hover { color: #ff9900; }
#nav-capsule:hover .capsule-btn { color: #fff; border-color: rgba(255,255,255,0.4); }
#nav-capsule:hover .capsule-divider { border-color: rgba(255,255,255,0.2); }

.capsule-btn {
    background: none; border: 1px solid rgba(255,255,255,0.5); cursor: pointer;
    padding: 6px 10px; border-radius: 8px;
    color: #fff; font-size: 1.2rem; font-weight: 700; line-height: 1;
    transition: all 0.5s ease; margin-right: 5px;
}
.capsule-btn:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

.capsule-divider { border-color: rgba(255,255,255,0.15); transition: border-color 0.5s; }

.capsule-scroll-track {
    display: flex; gap: 18px; overflow-x: auto; white-space: nowrap; padding-right: 10px;
    scrollbar-width: none;
}
.capsule-scroll-track::-webkit-scrollbar { display: none; }

.capsule-link {
    text-decoration: none; color: #333; font-weight: 600; font-size: 0.8rem;
    font-family: 'Open Sans', sans-serif; letter-spacing: 0.8px; text-transform: uppercase;
    position: relative; padding: 5px 0; transition: all 0.4s ease;
}
.capsule-link:hover { color: #fff; }
.capsule-link.active { color: #ff9900; font-weight: 700; }
.capsule-link.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: #ff9900; border-radius: 1px; }

.capsule-cta {
    background: linear-gradient(135deg, #ff9900, #e68a00); color: #fff; padding: 8px 22px; border-radius: 30px;
    text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.5px;
    text-transform: uppercase; margin-left: 10px; white-space: nowrap;
    font-family: 'Open Sans', sans-serif; transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255,153,0,0.3);
}
.capsule-cta:hover { background: linear-gradient(135deg, #e68a00, #cc7a00); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,153,0,0.4); color: #fff; }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 99999;
    opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.menu-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(30,30,30,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top-left-radius: 28px; border-top-right-radius: 28px;
    padding: 28px 25px 20px; 
    transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu-overlay.active .menu-content { transform: translateY(0); }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.menu-grid a {
    background: rgba(255,255,255,0.08); padding: 14px 12px; border-radius: 14px;
    text-decoration: none; color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.88rem;
    text-align: left; border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
    font-family: 'Open Sans', sans-serif;
}
.menu-grid a:hover { background: rgba(255,153,0,0.15); border-color: rgba(255,153,0,0.3); color: #ff9900; }
.menu-grid a i { color: #ff9900; font-size: 0.9rem; width: 18px; text-align: center; }
.menu-header { display: flex; justify-content: space-between; align-items: center; }
.menu-header h3 { color: rgba(255,255,255,0.9); font-family: 'Open Sans', sans-serif; font-weight: 600; letter-spacing: 0.3px; }
.close-btn { font-size: 2rem; cursor: pointer; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.close-btn:hover { color: #ff9900; }

/* WhatsApp CTA in mobile menu */
.menu-footer { margin-top: 18px; text-align: center; }
.whatsapp-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(37,211,102,0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: #25D366; padding: 14px 25px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    border: 1px solid rgba(37,211,102,0.3);
    transition: all 0.4s ease; font-family: 'Open Sans', sans-serif;
    width: 100%;
}
.whatsapp-cta i { font-size: 1.3rem; }
.whatsapp-cta:hover { background: rgba(37,211,102,0.35); border-color: rgba(37,211,102,0.5); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.2); color: #25D366; }

/* --- 3. HERO SECTION --- */
/* --- 2. HERO SECTION (Polished) --- */
.hero-section {
    position: relative; height: 100vh; min-height: 650px;
    background: #1a1a1a; /* Image loaded via JS lazy loader */
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 90%); /* Softer Gradient */
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 950px; padding: 0 20px; }
.hero-subtitle { 
    font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase; 
    font-weight: 700; margin-bottom: 20px; color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-title { 
    font-size: 4rem; font-weight: 800; margin-bottom: 30px; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.4); line-height: 1.15; /* Fixed Line Height */
    font-family: var(--font-serif);
}
.hero-cta-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-button {
    background-color: #4caf4fcc;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(12, 176, 36, 0.35);
}
    .btn-primary {
        background-color: #ff9900d3; /* Spiritual Orange */
        color: #fff;
        
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        padding: 15px 30px;        
        border-radius: 5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
        border: 2px solid #ff9900;
        /* The Secret Sauce for Smoothness */
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
.btn-primary:hover {
        background-color: #e68a00;
        transform: translateY(-4px) scale(1.02); /* Lifts and slightly grows */
        box-shadow: 0 15px 30px rgba(255, 153, 0, 0.5); /* Deeper, softer shadow */
    }
.btn-secondary {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: #fff;
    padding: 15px 40px; border-radius: 50px; font-weight: 700; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4); transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.9);
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
}
/* Beautiful Glassmorphism for Perks */
 .hero-urgency {
        margin-top: 25px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.2);
        display: inline-block;
        padding: 8px 20px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }
.hero-perks {
    display: inline-flex; justify-content: center; gap: 25px; flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.35); /* Darker semi-transparent */
    backdrop-filter: blur(12px); /* The Glass Effect */
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 30px; border-radius: 50px; 
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle white border */
    margin-top: 30px; max-width: 100%;
     /* Smooth transition for the container */
        transition: all 0.3s ease;
}
.hero-perks:hover {
        background: rgba(255, 255, 255, 0.25); /* Gets slightly brighter */
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
.perk-item { 
    display: flex; align-items: center; gap: 10px; 
    color: #eee; font-size: 0.85rem; text-align: left; line-height: 1.3;
}
.perk-item:hover .perk-icon {
        transform: rotate(15deg) scale(1.2);
    }
    .perk-icon {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px; /* Prevents squishing on mobile */
        fill: #ffcc00; /* Gold Color */
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
.perk-icon { width: 35px; height: 35px; min-width: 35px; /* Prevent squishing on mobile */ }

/* --- 4. ACCREDITATION --- */
.accreditation-wrapper { padding: 80px 0; background: linear-gradient(to right, #fff, #fdfbf7); overflow: visible; }
.glass-card-logos {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; padding: 30px;
    box-shadow: 0 20px 40px rgba(191, 161, 95, 0.15); margin-left: 40px; position: relative;
}
.rys-logo { max-height: 80px; filter: grayscale(100%); opacity: 0.8; transition: all 0.3s; }
.rys-grid:hover .rys-logo { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.years-seal-wrapper { position: absolute; top: -40px; left: -20px; z-index: 10; width: 130px; height: 130px; }
.years-seal {
    width: 100%; height: 100%; background: radial-gradient(circle at 30% 30%, #ffc107, #b8860b);
    border-radius: 50%; box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center; border: 4px solid #fff;
}
.seal-inner { text-align: center; color: #fff; line-height: 1; }
.seal-number { display: block; font-size: 2.5rem; font-weight: 900; }
.seal-text-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; animation: rotateSeal 20s linear infinite; }
.seal-text, .seal-text-small{font-size: 0.8rem; display: block;}
@keyframes rotateSeal { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- 4B. COURSE AT A GLANCE — Glassmorphism Card --- */
.course-glance-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 50%, #fff5e6 100%);
}
.course-glance-section::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 400px; height: 400px;
    background: rgba(255, 153, 0, 0.06);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.course-glance-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 350px; height: 350px;
    background: rgba(255, 180, 50, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* Highlight pills */
.glance-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.glance-pill:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* The glassmorphism card */
.glance-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}
.glance-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

/* Card header */
.glance-card-header {
    background: var(--primary);
    padding: 18px 24px;
}
.glance-card-header h3 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.glance-card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 4px 0 0;
}

/* Card body — icon rows */
.glance-card-body {
    padding: 0 24px;
}
.glance-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s ease;
}
.glance-row:last-child { border-bottom: none; }
.glance-row:hover { background: rgba(255, 153, 0, 0.03); }

.glance-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.glance-row:hover .glance-icon {
    background: rgba(255, 153, 0, 0.2);
    transform: scale(1.05);
}

.glance-info {
    flex: 1;
    min-width: 0;
}
.glance-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}
.glance-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Card footer — price + CTA */
.glance-card-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0,0,0,0.04);
}
.glance-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}
.glance-price-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}
.glance-price-current {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}
.glance-price-old {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
}
.glance-price-currency {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #999;
}

.glance-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.glance-cta:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .course-glance-section { padding: 50px 0; }
    .glance-card { margin-top: 30px; }
}
@media (max-width: 575px) {
    .course-glance-section { padding: 40px 0; }
    .glance-pill { font-size: 0.8rem; padding: 6px 14px; }
}

/* --- 5. OVERVIEW & WHY CHOOSE US (Tabs & Grids) --- */
/* ==========================================================================
   4. OVERVIEW SECTION (Mission, Stats, Highlights, Tabs)
   ========================================================================== */
.overview-section {
    position: relative;
    /* Background image for glassmorphism effect */
    background: url('https://patanjaliyogafoundation.com/images/gallery/200-hour-yoga-teacher-training-rishikesh-hero001.jpg') fixed center center; 
    background-size: cover;
    padding: 80px 20px;
    overflow: hidden;
}

/* Optional: Add a white overlay so the background isn't too distracting */
.overview-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6); /* 60% White overlay */
    z-index: 0;
    pointer-events: none;
}
/* Ensure content sits above the overlay */
.mission-container, .video-section-container, .stats-grid, .styles-container, .tabs-wrapper, .section-title {
    position: relative;
    z-index: 1;
}

/* --- A. MISSION (Top Text + Image) --- */
.mission-container {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.mission-text { flex: 1; }
.mission-text h2 { 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    line-height: 1.2; 
    color: var(--text-dark);
}
.mission-img { flex: 1; position: relative; }
.mission-img img { 
    width: 100%; 
    border-radius: 25px; 
    box-shadow: 20px 20px 0px rgba(255, 153, 0, 0.1); 
    transition: transform 0.5s ease;
}
.mission-img:hover img { transform: scale(1.02); }

.quote-box {
    border-left: 5px solid var(--primary);
    padding: 25px;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    background: #fffcf5;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* --- B. VIDEO SECTION (Ashram Tour) --- */
.video-section-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
}
.video-box iframe { 
    width: 100%; 
    height: 380px; 
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}
.video-highlights { list-style: none; padding: 0; margin-top: 25px; }
.video-highlights li { 
    position: relative; 
    padding-left: 30px; 
    margin-bottom: 15px; 
    font-size: 1rem; 
    color: #555; 
}
.video-highlights li::before { 
    content: '►'; 
    color: var(--primary); 
    position: absolute; 
    left: 0; 
    top: 2px;
    font-size: 0.8rem; 
}

/* --- C. STATS GRID (4 Columns) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.stat-card { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 15px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.stat-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.stat-card p { font-size: 0.9rem; color: #777; margin: 0; }

/* --- D. STYLES TAUGHT (3 Cards) --- */
.styles-container { margin-top: 0; margin-bottom: 60px; }
.styles-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 40px; 
}
.style-card { 
    border-radius: 20px; 
    overflow: hidden; 
    background: rgba(255,255,255,0.85); 
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.style-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.style-header { 
    padding: 20px; 
    color: #fff; 
    font-weight: 800; 
    text-align: center; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.style-header-hatha { background: linear-gradient(135deg, #e67e22, #d35400); }
.style-header-ashtanga { background: linear-gradient(135deg, #d35400, #a04000); }
.style-header-yin { background: linear-gradient(135deg, #f39c12, #e67e22); }
.style-body { padding: 30px; }
.style-body p { font-size: 0.95rem; line-height: 1.6; color: #555; }
.style-body ul { list-style: none; padding: 0; margin-top: 20px; }
.style-body ul li { 
    position: relative; 
    padding-left: 20px; 
    margin-bottom: 10px; 
    font-size: 0.9rem; 
    color: #444; 
    font-weight: 600;
}
.style-body ul li::before { 
    content: "•"; 
    color: var(--primary); 
    font-weight: bold; 
    position: absolute; 
    left: 0; 
    font-size: 1.2rem;
    line-height: 1;
}

/* --- E. HIGHLIGHTS (Glass Panel & Icons) --- */
.highlights-container { margin-bottom: 60px; }
.glass-panel { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(15px); 
    padding: 50px; 
    border-radius: 30px; 
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.highlights-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    margin-top: 40px; 
}
.highlight-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    padding: 25px; 
    background: #fff; 
    border-radius: 15px; 
    border: 1px solid #f5f5f5; 
    transition: 0.3s;
}
.highlight-item:hover { 
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); 
    border-color: var(--primary); 
}

/* FIX FOR ICONS COVERING SCREEN */
.highlight-icon { 
    width: 60px; 
    height: 60px; 
    flex-shrink: 0; 
    background: rgba(255, 153, 0, 0.1); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary); 
}
.highlight-icon svg { 
    width: 30px; 
    height: 30px; 
    stroke-width: 2;
}

.highlight-text-box h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.highlight-text-box p { font-size: 0.95rem; margin: 0; color: #666; line-height: 1.6; }


/* --- F. WHY CHOOSE US (Vertical Tabs) --- */
.why-section-container { margin-top: 0; padding-bottom: 0; position: relative; z-index: 2; }
.vertical-tabs-wrapper { 
    display: flex; 
    gap: 40px; 
    margin-top: 50px; 
    align-items: flex-start;
}
.v-tab-menu { 
    flex: 0 0 280px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px;
    position: relative; z-index: 5; 
}
.v-tab-btn {
    text-align: left; 
    padding: 20px 25px; 
    background: #fff; 
    border: 1px solid #eee;
    border-radius: 15px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center;
    gap: 15px;
    color: #555; 
    font-weight: 700; 
    width: 100%;
    font-size: 1rem;
    outline: none;
    position: relative; z-index: 5;
}
.v-tab-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.v-tab-btn.active { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary); 
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.3); 
}
.v-icon { font-size: 1.2rem; }

.v-tab-content-area { 
    flex: 1; 
    background: #fff; 
    padding: 40px; 
    border-radius: 25px; 
    border: 1px solid #eee; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    min-height: 350px; 
    position: relative;
}

/* Tab Animations */
.v-tab-pane { 
    display: none; 
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.v-tab-pane.active { 
    display: block; 
    opacity: 1;
    transform: translateY(0);
}

.check-list { list-style: none; padding: 0; margin-top: 20px; }
.check-list li { 
    margin-bottom: 15px; 
    position: relative; 
    padding-left: 30px; 
    font-size: 1rem; 
    color: #555;
}
.check-list li::before { 
    content: '✓'; 
    position: absolute; 
    left: 0; 
    top: 0; 
    color: #28a745; 
    font-weight: bold; 
    font-size: 1.2rem; 
}


/* FIX: Force Container Width for content not in <div class="container"> */
.overview-section > div {
    max-width: 1200px; /* Standard Bootstrap container width */
    margin: 0 auto;    /* Center it */
    padding: 0 20px;   /* Add breathing room on sides */
}

/* FIX: Typography to match Accreditation */
.mission-text h5 {
    color: var(--primary); font-weight: 700; letter-spacing: 1px; 
    text-transform: uppercase; font-size: 0.9rem; margin-bottom: 10px;
    font-family: var(--font-sans); /* Match sans-serif tagline */
}
.mission-text h2 { 
    font-size: 2.8rem; /* Match Display-6 size */
    margin-bottom: 25px; 
    line-height: 1.2; 
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 800; /* Bolder like Accreditation */
}
.mission-text p { font-size: 1.1rem; color: #555; line-height: 1.7; }

/* FIX: Mobile Tabs (2 per row) */
@media (max-width: 991px) {
    .vertical-tabs-wrapper { flex-direction: column; }
    
    /* Grid Layout for Mobile Tabs */
    .v-tab-menu { 
        display: grid !important; 
        grid-template-columns: 1fr 1fr; /* 2 Columns */
        gap: 10px; 
        width: 100%;
    }
    
    .v-tab-btn { 
        padding: 12px 10px; 
        font-size: 0.85rem; 
        justify-content: center; 
        text-align: center;
        flex-direction: column; /* Icon on top of text */
        gap: 5px;
    }
    
    /* Make Syllabus Tabs 2-per-row also */
    .nav-pills.mobile-grid-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .nav-pills .nav-link {
        margin-bottom: 0;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
    
    /* Hero Font Size on Mobile */
    .hero-title { font-size: 2.4rem; line-height: 1.1; }
    .hero-perks { border-radius: 20px; padding: 20px; gap: 15px; }
    .perk-item { width: 100%; } /* Stack perks on very small screens */
}

@media (max-width: 768px) {
    .hero-perks {
        flex-direction: column; border-radius: 15px; padding: 15px 20px; gap: 10px;
        margin-bottom: 0; position: relative; z-index: 1;
        width: 100%; max-width: 100%; box-sizing: border-box;
    }
    .hero-perks > span:first-child { width: 100%; text-align: center; margin-bottom: 5px; }
    .perk-item { width: 100%; justify-content: center; }
    .hero-section { min-height: auto; height: auto; padding: 120px 15px 40px; }
    .hero-title { font-size: 2rem; line-height: 1.15; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 1.5px; }
    .hero-urgency { font-size: 0.85rem; padding: 6px 15px; }
}

@media (max-width: 991px) {
    .years-seal-wrapper { 
        position: relative; top: auto; left: auto; 
        margin: 0 auto 25px; display: block;
    }
    .glass-card-logos { margin-left: 0; }
    .badges-container { text-align: center; }
    .accreditation-wrapper .trust-content { text-align: center; margin-bottom: 30px; }
    .accreditation-wrapper .d-flex { justify-content: center; flex-wrap: wrap; gap: 10px; }
}

/* --- 6. SYLLABUS (Accordion) --- */
.syllabus-section-wrapper { padding: 100px 0; background-color: #fcfcfc; }
.nav-pills .nav-link { 
    color: #555; background: transparent; border-radius: 10px; padding: 15px 20px; 
    font-weight: 600; text-align: left; margin-bottom: 10px; border: 1px solid transparent; display: flex; align-items: center; gap: 10px;
}
.nav-pills .nav-link.active { background: var(--primary); color: #fff; box-shadow: 0 5px 15px rgba(255,153,0,0.3); }
.glass-item { background: #fff; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); margin-bottom: 15px; border: 1px solid #f0f0f0; overflow: hidden; }
.accordion-button { background: transparent; color: #333; font-weight: 700; box-shadow: none !important; padding: 20px; }
.accordion-button:not(.collapsed) { color: var(--primary); background: rgba(255, 153, 0, 0.05); }
.list-checked-circle { list-style: none; padding: 0; margin-top: 10px; }
.list-checked-circle li { position: relative; padding-left: 30px; margin-bottom: 8px; font-size: 0.95rem; color: #555; }
.list-checked-circle li::before { content: '\f00c'; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; color: var(--primary); }

/* --- 7. SCHEDULE (Timeline) --- */
.schedule-section-wrapper { background: #111; color: #fff; padding: 100px 0; position: relative; }
.schedule-bg { position: absolute; top:0; left:0; width:100%; height:100%; background: #222; opacity: 0.1; }
.timeline-container { position: relative; padding-left: 60px; }
.timeline-container::before { content:''; position: absolute; top:0; bottom:0; left: 19px; width: 2px; background: rgba(255,153,0,0.3); }
.timeline-item { position: relative; margin-bottom: 30px; display: block; }
.time-marker { position: absolute; left: -60px; top: 0; width: 40px; text-align: center; }
.icon-dot {
    width: 40px; height: 40px; background: #1a1a1a; border: 2px solid var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--primary); position: relative; z-index: 2;
}
.timeline-item:hover .icon-dot { background: var(--primary); color: #fff; }
.time { position: absolute; right: 50px; top: 8px; font-size: 0.8rem; color: var(--primary); font-weight: bold; background: rgba(0,0,0,0.8); padding: 2px 5px; border-radius: 4px; }
.glass-card {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px; border-radius: 12px; transition: 0.3s;
}
.glass-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.glass-card h5 { color: #fff; }
.glass-card-solid { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 15px; }

/* --- 8. DATES (Table & Mobile Cards) --- */
.table-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eee; }
.date-icon { background: #f8f9fa; border: 1px solid #eee; padding: 5px 10px; border-radius: 5px; text-align: center; min-width: 60px; }
.date-icon .day { font-size: 1.2rem; font-weight: bold; color: #333; line-height: 1; }
.date-icon .month { font-size: 0.7rem; text-transform: uppercase; color: var(--primary); font-weight: bold; }
/* Mobile Course Card */
.mobile-course-card { background: #fff; border-radius: 12px; border: 1px solid #e0e0e0; border-left: 5px solid var(--primary); margin-bottom: 20px; overflow: hidden; }
.card-header-flex { padding: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0; }
.card-body-content { padding: 15px; }
.price-row { display: flex; justify-content: space-between; align-items: center; }

/* --- 9. REVIEWS & VIDEO --- */
.reviews-wrapper { background: #000; color: #fff; padding: 80px 0; }
.reviews-wrapper h2, .reviews-wrapper h3, .reviews-wrapper h4, .reviews-wrapper p { color: #fff !important; }
.reviews-wrapper .separator-line { background: var(--primary); }
.video-glass-card { position: relative; border-radius: 15px; overflow: hidden; margin: 10px; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); }
.thumb-wrapper { position: relative; padding-top: 56.25%; background: #000; }
.thumb-wrapper img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; opacity: 0.8; }
.play-btn-pulse {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: rgba(255,153,0,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem;
    animation: pulse 2s infinite; z-index: 2; pointer-events: none;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,153,0,0.7); } 70% { box-shadow: 0 0 0 20px rgba(255,153,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,153,0,0); } }

.btn-glass-primary {
    background: var(--primary); color: #fff; padding: 12px 30px; border-radius: 50px;
    text-decoration: none; font-weight: bold; display: inline-flex; align-items: center; margin-right: 10px;
}
.btn-glass-secondary {
    background: rgba(255,255,255,0.1); color: #fff; padding: 12px 30px; border-radius: 50px;
    text-decoration: none; font-weight: bold; border: 1px solid rgba(255,255,255,0.3);
}

/* --- 10. PAYMENTS --- */
.piyf-payment-wrapper { padding: 100px 0; background-color: #fcfcfc; }
.payment-method-card { background: #fff; border: 1px solid #eee; border-radius: 25px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.03); }
.method-box {
    border: 1px solid #f0f0f0; padding: 15px; border-radius: 15px; display: flex;
    flex-direction: column; align-items: center; gap: 8px; transition: 0.3s; height: 100%;
}
.method-box:hover { border-color: var(--primary); background: #fffcf5; }
.method-box i { font-size: 1.5rem; }
.piyf-alert-box { background: rgba(255, 153, 0, 0.05); padding: 15px; border-radius: 12px; border-left: 4px solid var(--primary); }
.policy-item { background: #fff; padding: 25px; border-radius: 20px; border: 1px solid #eee; transition: 0.3s; margin-bottom: 20px; }
.policy-icon {
    width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.bg-warning-soft { background: rgba(255, 153, 0, 0.1); }
.bg-danger-soft { background: rgba(220, 53, 69, 0.1); }
.policy-list li { position: relative; padding-left: 25px; margin-bottom: 10px; font-size: 0.9rem; color: #666; }
.policy-list li::before { content: "\f058"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; color: var(--primary); }

/* --- 11. ASHRAM LIVING & LOCATION --- */
.living-section-wrapper { padding: 80px 0; background-color: #fff; position: relative; }
.living-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#eee 1px, transparent 1px); background-size: 20px 20px; opacity: 0.5; z-index: 1;
}
/* Glass Amenities Grid */
.glass-amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.glass-amenity {
    background: #fdfdfd; border: 1px solid #eee; border-radius: 10px; padding: 15px 5px;
    text-align: center; display: flex; flex-direction: column; align-items: center; transition: 0.3s;
}
.glass-amenity:hover { border-color: var(--primary); transform: translateY(-3px); }
.glass-amenity i { font-size: 1.4rem; margin-bottom: 8px; }

/* Location (Dark Theme) */
.location-section-wrapper { background: #1a1a1a; color: #fff; padding: 80px 0; position: relative; }
.location-section-wrapper h2, .location-section-wrapper h4, .location-section-wrapper h6 { color: #fff; }
.location-section-wrapper .text-muted, .location-section-wrapper p { color: rgba(255,255,255,0.7) !important; }
.infra-card {
    background: rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; text-align: center;
    border: 1px solid rgba(255,255,255,0.1); height: 100%;
}
.infra-icon { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.location-list { list-style: none; padding: 0; }
.location-list li { display: flex; align-items: center; margin-bottom: 15px; color: #ddd; }
.location-list .time {
    background: rgba(255,153,0,0.2); color: var(--primary); padding: 2px 8px;
    border-radius: 4px; font-weight: bold; font-size: 0.8rem; margin-right: 15px; min-width: 60px; text-align: center;
}
.map-frame-wrapper { height: 400px; border-radius: 20px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }

/* --- 12. EXCURSIONS --- */
.excursion-glass-card { border-radius: 15px; overflow: hidden; position: relative; height: 400px; margin: 10px; }
.excursion-img-wrap { height: 100%; width: 100%; }
.excursion-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.excursion-glass-card:hover img { transform: scale(1.1); }
.excursion-overlay-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff;
}
.overlay-badge { background: #fff; color: #000; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: bold; display: inline-block; margin-bottom: 5px; }

/* --- 13. CERTIFICATION --- */
.cert-section-wrapper { padding: 80px 0; background: #fff; }
.cert-viewer-container { max-width: 700px; margin: 0 auto; text-align: center; }
.cert-tabs { display: inline-flex; gap: 10px; background: #f0f0f0; padding: 5px; border-radius: 50px; margin-bottom: 20px; }
.cert-tab {
    background: transparent; border: none; padding: 10px 25px; border-radius: 50px;
    font-weight: bold; color: #666; cursor: pointer; transition: 0.3s;
}
.cert-tab.active { background: #fff; color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.cert-frame {
    position: relative; border: 10px solid #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #fff; overflow: hidden;
}
.cert-image { display: none; width: 100%; }
.cert-image.active { display: block; animation: fadeIn 0.5s; }
.trust-badge-small {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; padding: 8px 16px; border-radius: 50px;
    border: 1px solid #eee; font-size: 0.85rem; font-weight: 700; color: #555;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin: 0 5px;
}
.cert-benefits-list { list-style: none; padding: 0; margin-top: 30px; }
.cert-benefits-list li { display: flex; gap: 15px; margin-bottom: 20px; text-align: left; }
.icon-box {
    width: 40px; height: 40px; background: rgba(255,153,0,0.1); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* --- 14. TEACHERS (Zoom Fix) --- */
.teacher-card { background: #fff; border-radius: 15px; overflow: hidden; border: 1px solid #eee; transition: 0.3s; }
.teacher-img { position: relative; height: 350px; overflow: hidden; }
.teacher-img a { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.teacher-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.teacher-card:hover .teacher-img img { transform: scale(1.1); }
.social-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px; display: flex; justify-content: center; opacity: 0; transition: 0.3s; pointer-events: none;
}
.teacher-card:hover .social-overlay { opacity: 1; }
.expertise-tag { background: rgba(255,255,255,0.9); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }

/* --- 15. COURSE DETAILS (Inclusions) --- */
.details-glass-card {
    background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 30px;
    height: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.bonus-card { background: #fffcf5; border-color: #ff990040; }
.exclusion-card { background: #f9f9f9; }
.details-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.details-card-head i { font-size: 1.5rem; }
.details-list { list-style: none; padding: 0; }
.details-list li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; gap: 10px; align-items: center; }
.details-list li i { font-size: 0.8rem; }
.details-list li::before { content: '✓'; color: green; font-weight: bold; }
.exclusion-list li::before { content: '✕'; color: red; font-weight: bold; }
.bonus-list li::before { content: '★'; color: var(--primary); }

/* --- 16. RELATED COURSES (Slide Up) --- */
#rc-section { background-color: #f9f9f9; padding: 80px 0; position: relative; }
#rc-section .rc-title { font-size: 2.5rem; margin-bottom: 20px; color: #333; }
#rc-section .rc-subtitle { color: #ff9900; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.rc-card {
    position: relative; border-radius: 15px; overflow: hidden; background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); height: 420px; margin: 10px;
    border: 1px solid #eee; transition: transform 0.4s ease;
}
.rc-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.rc-image { height: 100%; width: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.rc-card:hover .rc-image { transform: scale(1.1); }
.rc-badge {
    position: absolute; top: 20px; right: 20px; background: #333; color: #fff; padding: 5px 12px;
    font-size: 0.75rem; font-weight: bold; border-radius: 4px; text-transform: uppercase; z-index: 5;
}
.rc-badge.warning { background: #ffc107; color: #000; }
.rc-badge.success { background: #28a745; }
.rc-badge.info { background: #17a2b8; }
.rc-details-default {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(5px);
    padding: 20px; text-align: center; transition: transform 0.4s ease; z-index: 6;
}
.rc-details-default h4 { margin: 0; font-size: 1.25rem; color: #333; }
.rc-card:hover .rc-details-default { transform: translateY(100%); }
.rc-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; padding: 30px;
    opacity: 0; transform: translateY(100%); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10;
}
.rc-card:hover .rc-overlay { opacity: 1; transform: translateY(0); }
.rc-overlay-content { width: 100%; text-align: center; color: #fff; }
.rc-overlay h4 { color: #fff; font-size: 1.5rem; margin-bottom: 15px; }
.rc-list { list-style: none; padding: 0; margin: 0 0 25px 0; text-align: left; }
.rc-list li { border-bottom: 1px solid rgba(255,255,255,0.2); padding: 8px 0; display: flex; justify-content: space-between; font-size: 0.9rem; color: #ddd; }
.rc-btn {
    display: block; width: 100%; background: #ff9900; color: #fff; padding: 12px 0; border-radius: 50px;
    font-weight: bold; text-transform: uppercase; text-decoration: none; transition: 0.3s;
}
.rc-btn:hover { background: #e68a00; color: #fff; }

/* --- 17. PREREQUISITES & NEWS --- */
.piyf-prereq-wrapper { padding: 100px 0; background: #fff; overflow: hidden; }
.prereq-glass-card {
    background: #fff; border: 1px solid #eee; border-radius: 30px; padding: 40px;
    position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.03); transition: transform 0.3s ease;
}
.req-icon {
    width: 40px; height: 40px; background: rgba(255,153,0,0.1); color: var(--primary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0;
}
.book-box { text-align: center; margin: 15px; }
.book-media {
    border-radius: 10px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative; aspect-ratio: 2/3; background: #eee;
}
.book-media img { width: 100%; height: 100%; object-fit: cover; }

/* --- 18. FAQ --- */
.piyf-faq-wrapper { padding: 80px 0; background: #fff; }
.piyf-accordion-item { border: 1px solid #eee; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.piyf-accordion-header {
    background: #fff; padding: 15px 20px; cursor: pointer; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
}
.piyf-accordion-header.active { background: #fffcf5; color: var(--primary); }
.piyf-accordion-body {
    padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff; color: #666; line-height: 1.6;
}
.piyf-accordion-body.show { max-height: 1000px; opacity: 1; padding: 15px 20px; border-top: 1px solid #f0f0f0; }
.piyf-chevron { transition: transform 0.3s ease; }
.piyf-accordion-header.active .piyf-chevron { transform: rotate(180deg); }

/* --- 19. ROOM CARD (Slideshow & Layout) --- */
.room-comparison-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 40px auto; }
.room-card {
    background: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; display: flex; flex-direction: column; border: 1px solid #eee;
}
.slideshow-wrapper { position: relative; width: 100%; height: 0; padding-bottom: 66.66%; overflow: hidden; background: #f4f4f4; }
.slideshow-wrapper img.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1s ease-in-out; z-index: 1;
}
.slideshow-wrapper img.slide.active { opacity: 1; z-index: 2; }
.price-badge {
    position: absolute; bottom: 15px; right: 15px; background: rgba(255, 255, 255, 0.95);
    color: #333; padding: 8px 16px; border-radius: 50px; font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 3;
}
.room-details { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.amenities { list-style: none; padding: 0; margin-bottom: 25px; flex-grow: 1; }
.amenities li { padding: 8px 0; border-bottom: 1px solid #f9f9f9; color: #555; display: flex; align-items: center; }

/* --- 20. FOOTER & CAPSULE --- */
.ytt-footer-wrapper {
    color: #ddd; position: relative;
    background: url('https://s7ap1.scene7.com/is/image/incredibleindia/laxman%20jhula-rishikesh-uttrakhand-hero?qlt=82&ts=1726646312953') center/cover fixed;
}
.footer-top, .footer-mid { background: rgba(0,0,0,0.85); padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-title { color: #fff; margin-bottom: 25px; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 5px; }
.exotic-list { list-style: none; padding: 0; }
.exotic-list li a { color: #aaa; text-decoration: none; transition: 0.3s; }
.exotic-list li a:hover { color: var(--primary); padding-left: 5px; }

/* Sticky Capsule */
#nav-capsule {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 5px 15px 5px 15px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 99999;
    display: flex; align-items: center; transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.3); max-width: 90%;
    opacity: 1; visibility: visible;
}

/* --- 21. RESPONSIVE UTILS --- */
@media (max-width: 991px) {
    .mission-container { flex-direction: column; }
    .styles-grid, .glass-amenities-grid, .room-comparison-container { grid-template-columns: 1fr !important; }
    .vertical-tabs-wrapper { flex-direction: column; }
    .v-tab-menu { flex: auto; }
    .highlights-grid { grid-template-columns: 1fr; }
    .video-section-container { grid-template-columns: 1fr; }
    .conduct-grid { grid-template-columns: 1fr; }
    .footer-mid { text-align: center; }
}
@media (max-width: 991px) {
    .mission-container { flex-direction: column; text-align: center; }
    .quote-box { border-left: none; border-top: 4px solid var(--primary); border-radius: 15px; }
    
    .video-section-container { grid-template-columns: 1fr; padding: 25px; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .styles-grid { grid-template-columns: 1fr; }
    
    .highlights-grid { grid-template-columns: 1fr; }
    
    .vertical-tabs-wrapper { flex-direction: column; }
    .v-tab-menu { width: 100%; flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
    .v-tab-btn { white-space: nowrap; min-width: 200px; padding: 15px; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .mission-text h2 { font-size: 2rem; }
    .highlight-item { flex-direction: column; text-align: center; align-items: center; }
}
@media (min-width: 480px) and (max-width: 991px) {
    .perk-item { width: 100%; }
}
/* ==========================================================================
   22. SHARED COMPONENTS (piyf-* reusable classes)
   ========================================================================== */

/* Badge Pill (used across multiple sections) */
.piyf-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
}

/* Display Title */
.piyf-display-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-serif);
    line-height: 1.2;
}

/* Premium Divider */
.piyf-premium-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    margin: 20px auto;
    border-radius: 2px;
}

/* Small Icon Box */
.icon-box-sm {
    width: 35px;
    height: 35px;
    background: rgba(255, 153, 0, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   23. SCHEDULE — Glass Card Highlight & Gradient Button
   ========================================================================== */

.glass-card-highlight {
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark), #cc7a00);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.4);
    color: #fff;
}

/* ==========================================================================
   24. ASHRAM LIVING — Room Cards, Meals, Alert Box
   ========================================================================== */

.glass-alert-box {
    background: rgba(255, 153, 0, 0.06);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 20px;
    margin-top: 25px;
}
.glass-alert-box h6 { color: var(--text-dark); font-weight: 700; }
.glass-alert-box p { color: #666; font-size: 0.9rem; margin: 0; }

.room-card-light {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.room-card-light .room-card-body { padding: 25px; }
.room-card-light .room-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; }

.amenities-grid-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}
.amenities-grid-light .amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}
.amenities-grid-light .amenity-item i { color: var(--primary); font-size: 0.9rem; width: 18px; text-align: center; }

.btn-room-select {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    border: none;
}
.btn-room-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.35);
    color: #fff;
}

.meal-time-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.meal-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.meal-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.meal-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; display: block; }
.meal-card h6 { font-weight: 700; margin-bottom: 5px; }
.meal-card .small { color: #888; }

/* ==========================================================================
   25. TEACHERS SECTION
   ========================================================================== */

.teachers-section-wrapper {
    padding: 100px 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.mandala-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,153,0,0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,153,0,0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.guru-spotlight-card {
    background: linear-gradient(135deg, #fffcf5, #fff);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}

.guru-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    min-height: 400px;
}
.guru-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.guru-spotlight-card:hover .guru-img-wrapper img { transform: scale(1.05); }

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    z-index: 2;
}

.guru-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guru-content h3 { font-family: var(--font-serif); font-weight: 800; color: var(--text-dark); }
.guru-content p { color: #666; line-height: 1.7; }

/* ==========================================================================
   26. HERITAGE / LINEAGE SECTION
   ========================================================================== */

.piyf-heritage-wrapper {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fdfbf7 100%);
    position: relative;
}

.heritage-intro-box {
    background: rgba(255, 153, 0, 0.04);
    border: 1px solid rgba(255, 153, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.heritage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.heritage-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}
.heritage-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.85rem;
}

.heritage-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}
.heritage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.heritage-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.heritage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.heritage-card:hover .heritage-img img { transform: scale(1.1); }

.heritage-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.heritage-overlay h5 { color: #fff; font-family: var(--font-serif); margin: 0; }

.heritage-body {
    padding: 25px;
}
.heritage-body p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   27. YOGA ALLIANCE TRUST SECTION
   ========================================================================== */

.piyf-trust-wrapper {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffcf5, #fff);
}

.trust-glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.badge-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.certification-badge {
    transition: transform 0.3s ease;
}
.certification-badge:hover { transform: scale(1.08); }
.certification-badge img {
    max-height: 100px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.verification-id-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #28a745;
    margin-top: 15px;
}

.trust-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.trust-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}
.trust-features-list li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.9rem;
}

/* ==========================================================================
   28. CODE OF CONDUCT SECTION
   ========================================================================== */

.piyf-conduct-wrapper {
    padding: 100px 0;
    background-color: #fff;
}

.conduct-glass-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.conduct-glass-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

.compliance-glass-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

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

.conduct-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.conduct-item:hover {
    background: rgba(255, 153, 0, 0.05);
    border-color: rgba(255, 153, 0, 0.15);
    transform: translateX(5px);
}
.conduct-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.conduct-item span { font-weight: 600; font-size: 0.9rem; color: #444; }

.compliance-highlight {
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
    border-radius: 12px;
}

.small-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 10px 0 15px;
}

/* ==========================================================================
   29. COURSE DETAILS / INCLUSIONS SECTION
   ========================================================================== */

.piyf-details-wrapper {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
}

/* ==========================================================================
   30. EXCURSIONS SECTION
   ========================================================================== */

.piyf-excursion-slider-wrapper {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.excursion-carousel-wrapper {
    margin-top: 40px;
}

/* ==========================================================================
   31. RESPONSIVE FIXES FOR NEW SECTIONS
   ========================================================================== */

@media (max-width: 991px) {
    .piyf-display-title { font-size: 2rem; }
    .guru-spotlight-card .row { flex-direction: column; }
    .guru-img-wrapper { min-height: 300px; }
    .guru-content { padding: 25px; }
    .meal-time-row { grid-template-columns: 1fr; }
    .heritage-img { height: 200px; }
    .badge-grid { justify-content: center; }
    .conduct-grid { grid-template-columns: 1fr; }
    .amenities-grid-light { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .piyf-display-title { font-size: 1.7rem; }
    .piyf-badge-pill { font-size: 0.75rem; padding: 6px 15px; }
    .guru-img-wrapper { min-height: 250px; }
    .trust-glass-panel { padding: 25px; }
    .conduct-glass-card, .compliance-glass-card { padding: 25px; }
    .conduct-item { padding: 10px 12px; }
}

/* --- 32. MOBILE CONTAINER PADDING --- */
@media (max-width: 767px) {
    .container { padding-left: 10px !important; padding-right: 10px !important; }
}

/* --- 33. STUDY MATERIAL MESSAGE BOX --- */
.study-material-box-section {
    padding: 0 0 40px 0;
    background: transparent;
}
.study-material-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, #fffcf5 0%, #fff8eb 100%);
    border: 2px solid rgba(255, 153, 0, 0.2);
    border-left: 5px solid var(--primary);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 153, 0, 0.08);
}
.study-material-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}
.study-material-content h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.25rem;
}
.study-material-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}
@media (max-width: 576px) {
    .study-material-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    .study-material-box { border-left: 2px solid rgba(255, 153, 0, 0.2); border-top: 5px solid var(--primary); }
}

/* --- 34. SYLLABUS MOBILE GRID (6 tabs = 3x2) --- */
@media (max-width: 991px) {
    .nav-pills.mobile-grid-nav {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .nav-pills .nav-link {
        font-size: 0.75rem;
        padding: 10px 8px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        gap: 4px;
    }
    .nav-pills .nav-link i {
        display: block;
        margin: 0 auto 4px auto;
        font-size: 1rem;
    }
    .nav-pills .nav-link span {
        display: block;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .nav-pills.mobile-grid-nav {
        grid-template-columns: 1fr 1fr;
    }
}


/* ==========================================================================
   35. BLUR-UP LAZY LOADING SYSTEM
   ========================================================================== */

/* --- A. Standard <img> Lazy Load Wrapper --- */
.lazy-wrap {
    position: relative;
    overflow: hidden;
    background: #f5f0eb;
}

.lazy-wrap .lazy-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    filter: blur(12px) saturate(0.5);
    transform: scale(1.1);
    transition: opacity 0.4s ease;
    z-index: 1;
    opacity: 1;
}

.lazy-wrap .lazy-real {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 2;
    position: relative;
}

.lazy-wrap .lazy-real.loaded {
    opacity: 1;
}

.lazy-wrap.reveal .lazy-placeholder {
    opacity: 0;
}

/* --- B. Aspect Ratio Containers (Prevent CLS) --- */
.lazy-wrap--16x9 { aspect-ratio: 16 / 9; }
.lazy-wrap--4x3  { aspect-ratio: 4 / 3; }
.lazy-wrap--3x2  { aspect-ratio: 3 / 2; }
.lazy-wrap--1x1  { aspect-ratio: 1 / 1; }
.lazy-wrap--hero { aspect-ratio: 16 / 9; min-height: 300px; }

/* --- C. Hero Section Lazy Load --- */
.hero-bg-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background-image: url('../images/piyf-yoga-ttc-placeholder.png');
    background-size: 200px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    filter: blur(8px) brightness(0.6);
    transition: opacity 0.6s ease;
    opacity: 1;
}

.hero-bg-real {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-bg-real.loaded { opacity: 1; }
.hero-bg-placeholder.hidden { opacity: 0; pointer-events: none; }

/* Ensure overlays stack above bg layers */
.hero-section .hero-overlay { z-index: 1; }
.hero-section .hero-content { z-index: 2; position: relative; }

/* --- D. noscript fallback --- */
html.js-enabled .lazy-wrap noscript { display: none; }

/* =====================================================================
   NEWS SLIDER SECTION (inc/news-reels.php)
   Glassmorphic card carousel with Swiper — dark background theme
   ===================================================================== */

/* --- Section container --- */
.ns-section {
    background-color: #1a1a1a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* --- Ambient glow blobs --- */
.ns-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.ns-glow--orange {
    top: -100px;
    left: -100px;
    background: #ff9900;
    opacity: 0.05;
}
.ns-glow--white {
    bottom: -100px;
    right: -100px;
    background: #fff;
    opacity: 0.04;
}

/* --- Subtitle & separator --- */
.ns-subtitle {
    color: #ff9900;
    font-size: 0.8125rem;
    letter-spacing: 3px;
    font-family: 'Open Sans', sans-serif;
}
.ns-separator {
    width: 60px;
    height: 3px;
    background: #ff9900;
}

/* --- Slider wrapper (for arrow positioning) --- */
.ns-slider-wrap {
    position: relative;
    padding: 0 50px;
}
@media (max-width: 767px) {
    .ns-slider-wrap { padding: 0 10px; }
}

/* --- Card link --- */
.ns-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                border-color 0.3s ease,
                box-shadow 0.4s ease,
                background 0.3s ease;
    text-decoration: none !important;
    height: 100%;
}
.ns-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 153, 0, 0.35);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(255, 153, 0, 0.1);
}

/* --- Card image --- */
.ns-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.ns-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.ns-card:hover .ns-card__image img {
    transform: scale(1.08);
}
.ns-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    pointer-events: none;
}

/* --- Badge (type) --- */
.ns-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    z-index: 2;
}
.ns-badge-news       { background: #ff9900; color: #fff; }
.ns-badge-event      { background: #3b82f6; color: #fff; }
.ns-badge-announce   { background: #8b5cf6; color: #fff; }

/* --- Date chip --- */
.ns-card__date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6875rem;
    font-family: 'Open Sans', sans-serif;
    padding: 3px 12px;
    border-radius: 50px;
    z-index: 2;
}

/* --- Featured star --- */
.ns-card__featured {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #ffcc00;
    font-size: 0.875rem;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* --- Card body --- */
.ns-card__body {
    padding: 22px 20px 20px;
}

/* --- Category tag --- */
.ns-card__category {
    display: inline-block;
    border: 1px solid rgba(255, 153, 0, 0.3);
    background: rgba(255, 153, 0, 0.08);
    color: #ff9900;
    font-size: 0.625rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* --- Title --- */
.ns-card__title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ns-card:hover .ns-card__title { color: #ff9900; }

/* --- Excerpt --- */
.ns-card__excerpt {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Read more --- */
.ns-card__readmore {
    color: #ff9900;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.ns-card__readmore i {
    font-size: 0.6875rem;
    transition: transform 0.3s ease;
}
.ns-card:hover .ns-card__readmore { gap: 10px; }
.ns-card:hover .ns-card__readmore i { transform: translateX(3px); }

/* --- Arrow Buttons --- */
.ns-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.ns-arrow:hover {
    border-color: rgba(255, 153, 0, 0.5);
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
    transform: translateY(-50%) scale(1.1);
}
.ns-arrow:active {
    transform: translateY(-50%) scale(0.95);
}
.ns-arrow--prev { left: 0; }
.ns-arrow--next { right: 0; }

@media (max-width: 767px) {
    .ns-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .ns-arrow--prev { left: -5px; }
    .ns-arrow--next { right: -5px; }
}

/* --- Dot Pagination --- */
.ns-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.ns-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    padding: 0;
}
.ns-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}
.ns-dot--active {
    width: 32px;
    border-radius: 6px;
    background: #ff9900;
    box-shadow: 0 0 14px rgba(255, 153, 0, 0.5);
}

/* --- CTA Button --- */
.ns-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.ns-cta-btn:hover {
    border-color: rgba(255, 153, 0, 0.4);
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900;
    transform: translateY(-2px);
}

/* --- Swiper slide equal height --- */
.ns-swiper .swiper-slide {
    height: auto;
}

/* --- Scroll-reveal animation for section entry --- */
.ns-section .container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.ns-section.ns-visible .container {
    opacity: 1;
    transform: translateY(0);
}

/* --- ASHRAM LIVING: Video Cards (accommodation + food sections) --- */
.main-video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}
.main-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255,153,0,0.12), 0 8px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,153,0,0.35);
}

.thumb-wrapper-video {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
}
.thumb-wrapper-video img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.5s ease;
}
.main-video-card:hover .thumb-wrapper-video img {
    opacity: 1;
    transform: scale(1.04);
}

/* Overlay badge inside video thumb */
.thumb-wrapper-video .overlay-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

/* Testimonial quote overlay at bottom of food video */
.testimonial-quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 2;
}

/* Video iframe container — overlays thumbnail on click */
.video-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Glass hover utility */
.glass-hover {
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275),
                box-shadow 0.35s ease;
}
.glass-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255,153,0,0.12), 0 8px 30px rgba(0,0,0,0.5);
}

/* ==========================================================================
   REVIEWS — Missing class definitions (platform badges, video overlay, etc.)
   ========================================================================== */

/* Reviewer avatar */
.reviewer-img-box {
    width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    border: 2px solid var(--primary);
}
.reviewer-img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Platform badges */
.platform-badge {
    position: absolute; right: 12px; top: 10px; z-index: 2;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
    backdrop-filter: blur(6px);
}
.platform-badge.google {
    background: rgba(66, 133, 244, 0.15); border: 1px solid rgba(66, 133, 244, 0.3);
    color: #5b9cf4;
}
.platform-badge.tripadvisor {
    background: rgba(52, 224, 161, 0.12); border: 1px solid rgba(52, 224, 161, 0.3);
    color: #34e0a1;
}
.platform-badge.partners {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* TripAdvisor circles */
.trip-circles {
    display: flex; gap: 3px;
}
.ta-bubble {
    width: 12px; height: 12px; border-radius: 50%;
    border: 2px solid #34e0a1;
}
.ta-bubble.filled {
    background: #34e0a1;
}

/* Video section header (cinematic) */
.video-header-cinematic {
    display: flex; align-items: center; justify-content: center; gap: 20px;
}
.video-title {
    font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem;
    color: #fff; white-space: nowrap;
}
.line-decor {
    display: block; flex: 1; height: 1px; max-width: 200px;
    background: rgba(255, 255, 255, 0.1);
}

/* Video card student info overlay */
.student-info {
    padding: 10px 15px;
}
.glass-effect-bottom {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 20px 15px 10px;
}

/* Review text and links */
.review-text {
    font-style: italic; line-height: 1.7; font-size: 0.9rem;
}
.read-more-link {
    color: var(--primary); font-size: 0.8rem; font-weight: 600;
    text-decoration: none; transition: color 0.3s;
}
.read-more-link:hover {
    color: #ffb347; text-decoration: underline;
}

/* ==========================================================================
   PAYMENT — Additional styles (glassmorphism, orbs, new cards)
   ========================================================================== */

/* Gradient background + overflow for orbs */
.piyf-payment-wrapper {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 40%, #fff5e6 70%, #fef3e2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orbs */
.decor-orb {
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.decor-orb--1 {
    width: 500px; height: 500px; top: -200px; left: -200px;
    background: rgba(255, 153, 0, 0.06); filter: blur(100px);
}
.decor-orb--2 {
    width: 400px; height: 400px; bottom: -200px; right: -200px;
    background: rgba(255, 191, 0, 0.08); filter: blur(100px);
}
.decor-orb--3 {
    width: 300px; height: 300px; top: 50%; left: 33%;
    transform: translateY(-50%);
    background: rgba(255, 165, 0, 0.05); filter: blur(80px);
}

/* Green badge variant */
.piyf-badge-pill--green {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 18px; border-radius: 50px;
    background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 0.85rem; font-weight: 700; color: #16a34a;
}

/* Charity intro card */
.charity-intro-card {
    background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px; padding: 24px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}
.charity-intro-card:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}
.charity-read-more {
    color: var(--primary); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
    transition: color 0.3s;
}
.charity-read-more:hover { color: #e68a00; }

/* Payment note cards (3-card info grid) */
.payment-note-card {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 20px; border-radius: 14px;
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.payment-note-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.payment-note-icon {
    font-size: 1.2rem; margin-top: 2px; flex-shrink: 0;
}

/* Wise info note (blue) */
.wise-info-note {
    background: rgba(239, 246, 255, 0.6); border: 1px solid rgba(147, 197, 253, 0.4);
    border-radius: 10px; padding: 12px 16px; backdrop-filter: blur(10px);
    color: #1e40af;
}
.wise-info-note a {
    color: #1e40af; font-weight: 600;
}
.wise-info-note a:hover { color: #2563eb; }

/* School rights note */
.school-rights-note {
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px; padding: 20px 24px;
    transition: all 0.3s ease;
}
.school-rights-note:hover {
    background: rgba(255, 255, 255, 0.65);
}

/* Glassmorphism overrides for payment cards */
.piyf-payment-wrapper .payment-method-card {
    background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}
.piyf-payment-wrapper .payment-method-card:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}
.piyf-payment-wrapper .method-box {
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.piyf-payment-wrapper .method-box:hover {
    border-color: rgba(255, 153, 0, 0.3);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.1);
}
.piyf-payment-wrapper .policy-item {
    background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.piyf-payment-wrapper .policy-item:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   TEACHERS — Persistent cert badge + grid adjustments
   ========================================================================== */

/* Persistent certification badge (replaces hover-only social-overlay) */
.teacher-cert-badge {
    position: absolute; bottom: 8px; right: 8px; z-index: 2;
    background: rgba(0, 0, 0, 0.45); backdrop-filter: blur(8px);
    color: #fff; padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Smaller image height for 4-col grid */
.teachers-section-wrapper .teacher-img {
    height: 240px;
}

/* Mobile: hide orbs, responsive fixes */
@media (max-width: 767px) {
    .decor-orb { display: none; }
    .payment-note-card { flex-direction: column; text-align: center; }
    .payment-note-icon { margin: 0 auto; }
    .teachers-section-wrapper .teacher-img { height: 180px; }
    .video-header-cinematic { gap: 10px; }
    .line-decor { max-width: 60px; }
}


/* =============================================================================
   P3+P4 DESIGN & FONT/COLOR IMPROVEMENTS — 2026-02-25
   ============================================================================= */

/* --- CSS Custom Property Additions --- */
:root {
    --accent-gold: #ffcc00;
    --whatsapp-green: #25D366;
}

/* --- Section Eyebrow (replaces decorative h5 usage) --- */
.section-eyebrow {
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

/* --- Font-Serif Utility (removes need for inline font-family) --- */
.font-serif {
    font-family: var(--font-serif, 'Playfair Display', serif) !important;
}

/* --- Nav Menu Font Fix (was hardcoded 'Open Sans') --- */
.menu-header h3 {
    font-family: var(--font-sans) !important;
}

/* --- Teacher Cards — Glassmorphism Override --- */
.teachers-section-wrapper .teacher-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.teachers-section-wrapper .teacher-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* --- Schedule → Reviews Dark Bridge --- */
/* Creates a subtle orange-tinted shadow at the top of Reviews
   breaking the jarring near-black to black transition */
.reviews-wrapper {
    box-shadow: 0 -6px 40px rgba(255, 153, 0, 0.10);
}

/* --- Location (dark) → Certification (light) gradient bridge --- */
.cert-section-wrapper {
    background: linear-gradient(to bottom, #1a1a1a 0%, #ffffff 6%) !important;
}
