/* ================================================================
    PROJECT: WORLD IN FOCUS - BY AHMED ALI NAQVI
    DESIGNED BY: BASITISM
    VERSION: 3.0 (PREMIUM PRODUCTION)
    DESCRIPTION: FULL DESIGN SYSTEM & STYLESHEET
    ================================================================
*/

/* ---------------------------------------------------------
   1. DESIGN TOKENS (VARIABLES)
--------------------------------------------------------- */
:root {
    /* Colors - Academic Palette */
    --clr-navy-900: #0f172a;
    --clr-navy-800: #1e293b;
    --clr-primary: #1e40af;       /* Royal Academic Blue */
    --clr-primary-light: #3b82f6;
    --clr-accent: #b45309;        /* Scholar Gold */
    --clr-accent-light: #fbbf24;
    --clr-success: #059669;
    --clr-error: #dc2626;
    
    /* Neutral Palette */
    --clr-white: #ffffff;
    --clr-slate-50: #f8fafc;
    --clr-slate-100: #f1f5f9;
    --clr-slate-200: #e2e8f0;
    --clr-slate-400: #94a3b8;
    --clr-slate-600: #475569;
    --clr-slate-900: #0f172a;

    /* Spacing System */
    --sp-xs: 0.25rem;
    --sp-sm: 0.5rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 5rem;

    /* Typography */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-hero: clamp(2.5rem, 6vw, 4.5rem);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --tr-fast: 150ms ease;
    --tr-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --tr-slow: 500ms ease;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ---------------------------------------------------------
   2. RESET & BASE STYLES
--------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--clr-slate-50);
    color: var(--clr-slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--tr-fast); }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

/* ---------------------------------------------------------
   3. REUSABLE UTILITIES & TYPOGRAPHY
--------------------------------------------------------- */
.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding { padding: var(--sp-3xl) 0; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-3xl);
    font-weight: 800;
    margin-bottom: var(--sp-md);
    color: var(--clr-navy-900);
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-slate-600);
    max-width: 600px;
    margin-bottom: var(--sp-2xl);
}

.center-content { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ---------------------------------------------------------
   4. MASTER NAVIGATION SYSTEM (FIXED & RESPONSIVE)
--------------------------------------------------------- */

#main-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--clr-slate-200);
    position: sticky;
    top: 0;
    z-index: 2000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* State when user scrolls down */
#main-nav.scrolled {
    height: 70px;
    background: var(--clr-white);
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Brand/Logo Area */
/* --- BRANDING STYLES --- */
/* --- BRANDING STYLES (Blue Update) --- */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    /* Changed from Gold (#b45309) to Primary Blue */
    color: #2563eb; /* A vibrant, trustworthy Royal Blue */
    font-size: 2.2rem;
    line-height: 1;
    transition: transform 0.4s ease;
}

/* Optional: Make it slightly darker on hover */
.brand:hover .brand-logo {
    color: #1d4ed8; /* Darker Blue */
    transform: rotate(15deg) scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1f2937; /* Dark Grey */
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-text .tagline {
    font-size: 0.75rem;
    color: #6b7280; /* Light Grey */
    font-weight: 500;
}


/* --- THE MAIN MENU (FIXED STACKING ISSUE) --- */
.nav-menu {
    display: flex;
    flex-direction: row; /* Force horizontal on desktop */
    align-items: center;
    gap: var(--sp-xl); /* Balanced spacing between items */
    margin-left: auto; /* Pushes menu to the right */
    list-style: none;
}

.nav-menu li {
    position: relative;
    display: block;
}

.nav-menu li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-slate-600);
    padding: 10px 0;
    transition: var(--tr-base);
    white-space: nowrap; /* Prevents text wrapping */
}

/* Hover Underline Animation */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--tr-base);
}

.nav-menu li a:hover {
    color: var(--clr-primary);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* --- DROPDOWN SYSTEM (CLEAN & NON-INTRUSIVE) --- */
.dropdown {
    padding-right: 15px; /* Space for the arrow */
}

.dropdown > a::after {
    content: '\f078'; /* FontAwesome Down Arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 8px;
    transition: var(--tr-base);
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--clr-white);
    min-width: 260px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--clr-slate-100);
    padding: var(--sp-sm) 0;
    
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li a {
    padding: 12px 24px !important;
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.dropdown-content li a::after {
    display: none !important; /* No underline in dropdown */
}

.dropdown-content li a:hover {
    background: var(--clr-slate-50);
    color: var(--clr-primary);
    padding-left: 32px !important;
}

/* Special CTA Button in Nav */
.cta-nav {
    background: var(--clr-primary);
    color: var(--clr-white) !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cta-nav:hover {
    background: var(--clr-navy-900) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-nav::after { display: none !important; }

/* --- MOBILE TOGGLE BUTTON --- */
.mobile-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin-left: var(--sp-md);
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--clr-navy-900);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.4s;
}

/* --- MOBILE RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1024px) {
    #main-nav { height: 75px; }

    .mobile-toggle {
        display: block;
        z-index: 2100;
    }

    /* Hide horizontal menu, prepare vertical sidebar */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--clr-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px;
        gap: var(--sp-lg);
        box-shadow: -15px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 2050;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Adjust items for vertical stack */
    .nav-menu li { width: 100%; }
    .nav-menu li a { font-size: 1.1rem; display: block; width: 100%; }

    /* Dropdown on Mobile */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--clr-slate-50);
        margin-top: 10px;
        padding-left: 20px;
        display: none; /* Toggle via JS if you want accordion */
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    /* Hamburger to X Animation */
    .mobile-toggle.open span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

.video-info-bar {
    background: var(--clr-navy-900);
    color: var(--clr-white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.video-info-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-info-bar i {
    color: #ff0000;
}





/* ---------------------------------------------------------
   5. HERO SECTION (INTERACTIVE & ACADEMIC)
--------------------------------------------------------- */
.hero-section {
    padding: var(--sp-3xl) 0;
    background: radial-gradient(circle at top right, var(--clr-slate-100), var(--clr-white));
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--sp-3xl);
    align-items: center;
}

.sub-head {
    display: inline-block;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-md);
}

.hero-text h1 {
    font-size: var(--fs-hero);
    line-height: 1.1;
    margin-bottom: var(--sp-lg);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--clr-slate-600);
    margin-bottom: var(--sp-2xl);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: var(--sp-md);
    margin-bottom: var(--sp-2xl);
}

/* ---------------------------------------------------------
   6. FEATURES SECTION (ONLINE FOCUS)
--------------------------------------------------------- */
.features-container { background: var(--clr-white); padding: var(--sp-3xl) 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-lg);
    margin-top: var(--sp-2xl);
}

.feature-box {
    background: var(--clr-slate-50);
    padding: var(--sp-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--clr-slate-100);
    transition: var(--tr-base);
}

.feature-box:hover {
    background: var(--clr-white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--clr-primary-light);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: var(--sp-lg);
}

/* ---------------------------------------------------------
   7. COURSE SYSTEM (GOOGLE SHEETS INTEGRATION)
--------------------------------------------------------- */
.courses-section { background: var(--clr-slate-50); padding: var(--sp-3xl) 0; }

.course-filters {
    display: flex;
    justify-content: center;
    gap: var(--sp-sm);
    flex-wrap: wrap;
    margin-top: var(--sp-xl);
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    background: var(--clr-white);
    border: 1px solid var(--clr-slate-200);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-slate-600);
    transition: var(--tr-base);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--sp-xl);
    margin-top: var(--sp-2xl);
}

.course-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl);
    border: 1px solid var(--clr-slate-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--tr-base);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-card::after {
    content: 'ONLINE BATCH';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 5px 35px;
    transform: rotate(45deg);
}

.course-card .category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: var(--sp-sm);
}

.course-card .price {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--clr-success);
    margin: var(--sp-lg) 0;
}

/* ---------------------------------------------------------
   8. YOUTUBE VIDEO SECTION
--------------------------------------------------------- */
.youtube-section { background: var(--clr-white); padding: var(--sp-3xl) 0; }

.youtube-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--sp-2xl);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--clr-navy-900);
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------------------------------------------------------
   9. REGISTRATION MODAL (TWO-COLUMN UX)
--------------------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(5px);
    z-index: 2000;
    padding: var(--sp-md);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: var(--clr-white);
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-sidebar {
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: var(--sp-2xl);
    display: flex;
    flex-direction: column;
}

.modal-main {
    padding: var(--sp-2xl);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--clr-slate-400);
    transition: var(--tr-fast);
}

.close-modal:hover { color: var(--clr-error); transform: rotate(90deg); }

.input-group { margin-bottom: var(--sp-lg); }

.input-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: var(--sp-xs);
    color: var(--clr-slate-600);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--clr-slate-100);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    transition: var(--tr-base);
}

.input-group input:focus {
    border-color: var(--clr-primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* ---------------------------------------------------------
   10. BUTTON SYSTEM
--------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    gap: var(--sp-sm);
    transition: var(--tr-base);
}

.btn-main {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.btn-main:hover {
    background: var(--clr-navy-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-wa {
    background: #25d366;
    color: var(--clr-white);
}

.btn-yt {
    background: #ff0000;
    color: var(--clr-white);
    padding: 0.6rem 1.2rem;
    font-size: var(--fs-sm);
}

/* ---------------------------------------------------------
   11. FOOTER (CLEAN & CORPORATE)
--------------------------------------------------------- */
.footer {
    background: var(--clr-navy-900);
    color: var(--clr-slate-400);
    padding: var(--sp-3xl) 0 var(--sp-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--sp-3xl);
    border-bottom: 1px solid var(--clr-slate-600);
    padding-bottom: var(--sp-2xl);
    margin-bottom: var(--sp-xl);
}

.footer-info h3 { color: var(--clr-white); margin-bottom: var(--sp-lg); }

.footer h4 { color: var(--clr-white); margin-bottom: var(--sp-lg); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.footer-links ul li { margin-bottom: var(--sp-sm); }
.footer-links ul li a:hover { color: var(--clr-white); padding-left: 5px; }

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
}

.dev-tag a { color: var(--clr-white); font-weight: 700; }

/* ---------------------------------------------------------
   12. MEDIA QUERIES (MOBILE OPTIMIZATION)
--------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid, .footer-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
    .hero-text { text-align: center; }
    .hero-actions { justify-content: center; }
    .modal-card { grid-template-columns: 1fr; }
    .modal-sidebar { display: none; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; } /* Add Mobile Hamburger JS later */
    .hero-text h1 { font-size: 2.5rem; }
    .youtube-header { flex-direction: column; align-items: flex-start; gap: var(--sp-md); }
}

/* ---------------------------------------------------------
   13. SKELETON LOADERS & SPINNERS (FOR JS)
--------------------------------------------------------- */
.skeleton-card {
    height: 350px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-lg);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================
   MENTOR SECTION - DETAILED STYLING
   ========================================================== */

.mentor-section {
    padding: 120px 0; /* Vertical space: Top and Bottom */
    background-color: var(--clr-white);
    border-bottom: 1px solid var(--clr-slate-100);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for Laptop */
    gap: 60px;
    align-items: center;
}

.bio-content {
    max-width: 600px; /* Prevents text from stretching too wide on laptops */
}

/* Heading Styling */
.bio-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--clr-navy-900);
}

.bio-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 25px;
    border-left: 4px solid var(--clr-accent);
    padding-left: 20px;
}

.bio-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Expertise List (Conceptual Integration & Evaluation) */
.expertise-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expert-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--clr-slate-50);
    border-radius: var(--radius-md);
    transition: var(--tr-base);
}

.expert-item:hover {
    background: var(--clr-white);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.expert-item .icon {
    font-size: 1.8rem;
    color: var(--clr-accent);
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.expert-item h4 {
    font-size: 1.2rem;
    color: var(--clr-navy-900);
    margin-bottom: 5px;
}

.expert-item p {
    font-size: 0.95rem;
    margin-bottom: 0; /* Resetting paragraph margin inside item */
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr; /* Stack on Tablet/Mobile */
        text-align: center;
    }

    .bio-content {
        margin: 0 auto;
    }

    .bio-content .lead {
        border-left: none;
        border-top: 4px solid var(--clr-accent);
        padding-left: 0;
        padding-top: 20px;
    }

    .expert-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- HERO SECTION REDESIGN (CENTERED) --- */
.hero-no-image {
    padding: 140px 0; /* Huge vertical space (Uper/Bellow) */
    background: radial-gradient(circle at top, #ffffff 0%, var(--clr-slate-50) 100%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.hero-content-wrapper {
    max-width: 850px; /* Constrains content so it doesn't stretch to laptop edges */
    margin: 0 auto;
}

.hero-no-image .sub-head {
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(30, 64, 175, 0.08);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--clr-primary);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.hero-no-image h1 {
    font-size: var(--fs-hero); /* Clamped typography for laptop/mobile */
    margin-bottom: 25px;
    color: var(--clr-navy-900);
}

.hero-no-image p {
    font-size: 1.25rem;
    color: var(--clr-slate-600);
    margin-bottom: 45px;
    line-height: 1.6;
}

.hero-no-image .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* Trust Badges Redesign for Centered Layout */
.hero-no-image .trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-slate-200);
    flex-wrap: wrap;
}

.hero-no-image .badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-slate-500);
    font-weight: 600;
}

.hero-no-image .badge-item i {
    color: var(--clr-accent);
    font-size: 1.4rem;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .hero-no-image {
        padding: 100px 0 60px;
    }
    
    .hero-no-image .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-no-image .trust-badges {
        gap: 20px;
        flex-direction: column;
    }
}

/* ==========================================================
   WIF NEW CONTACT SECTION (INDEPENDENT FROM FOOTER)
   ========================================================== */

.contact-section-new {
    padding: 120px 0; /* Huge vertical space: Uper and Bellow */
    background-color: var(--clr-slate-50); /* Subtle contrast from white sections */
}

.contact-card-premium {
    background: var(--clr-white);
    max-width: 1000px; /* Constrains the card for laptop users */
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--clr-slate-200);
}

.contact-inner-content {
    position: relative;
    z-index: 2;
}

.contact-label-badge {
    color: var(--clr-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 25px;
    padding: 6px 15px;
    background: rgba(30, 64, 175, 0.05);
    border-radius: var(--radius-sm);
}

.contact-main-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--clr-navy-900);
}

.contact-description {
    font-size: 1.2rem;
    color: var(--clr-slate-600);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* THE PREMIUM WHATSAPP BUTTON */
.btn-wa-premium {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 20px 45px;
    border-radius: var(--radius-md);
    text-decoration: none;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-wa-premium:hover {
    transform: translateY(-8px) scale(1.02);
    background: #20bd5a;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.btn-wa-premium i {
    font-size: 2.5rem;
}

.btn-wa-premium .btn-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.btn-info .btn-title {
    font-size: 1.3rem;
    font-weight: 800;
}

.btn-info .btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Availability Status */
.contact-availability {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.contact-availability p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-slate-400);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-card-premium { padding: 60px 20px; }
    .btn-wa-premium { padding: 15px 25px; gap: 12px; width: 100%; }
    .btn-info .btn-title { font-size: 1.1rem; }
}

/* --- FLOATING BATCH TOAST --- */

/* --- FLOATING BATCH TOAST (Fixed & Polished) --- */
#batch-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px; /* Made slightly wider for better reading */
    background: #ffffff;
    z-index: 3000;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    
    /* BRAND UPDATE: Changed from Gold to Blue */
    border-left: 5px solid #2563eb; 
    
    /* INITIAL STATE: Hidden off-screen */
    transform: translateX(120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ACTIVE STATE: Triggered by JS */
#batch-toast.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* INNER LAYOUT (Fixes the "Packed" Text) */
.toast-content {
    display: flex;
    align-items: flex-start; /* Aligns icon to top */
    padding: 20px;           /* Adds breathing room */
    gap: 15px;               /* Space between Icon and Text */
    position: relative;
    padding: 25px 20px 25px 30px !important; /* Top | Right | Bottom | Left */
}

.toast-icon {
    width: 45px;
    height: 45px;
    background: #eff6ff; /* Light Blue Background */
    color: #2563eb;      /* Blue Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;      /* Prevents icon from squishing */
}

.toast-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px; /* Space between lines of text */
}

.toast-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #2563eb; /* Blue */
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

#toast-course-name {
    font-size: 1.05rem; /* Slightly larger title */
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

#toast-course-detail {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 2px;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.5rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.toast-close:hover {
    color: #4b5563;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    #batch-toast {
        width: calc(100% - 40px); /* Fit within screen */
        bottom: 20px;
        right: 20px;
        left: 20px; /* Centers it on mobile */
    }
}



