/* =========================================
   UNIVERSITIES.CSS 
   ========================================= */

/* --- 1. HERO SECTION (Aligned with About Us) --- */
.page-hero {
    background-color: #0f172a; /* Dark Blue */
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* New Glow Effect for Hero */
.hero-bg-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary); /* Orange */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- 2. COLLECTIVE MODEL (With Tech Grid BG) --- */
.facilitation-section {
    padding: 100px 0;
    position: relative;
    /* Changed from plain white to a tech grid background */
    background-color: #f8fafc;
}

/* GRID PATTERN CSS */
.technical-grid-bg {
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; /* Grid square size */
}

/* Optional: Fade grid at edges */
.technical-grid-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f8fafc 0%, transparent 10%, transparent 90%, #f8fafc 100%);
    pointer-events: none;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

.small-divider {
    width: 60px; height: 3px;
    background-color: var(--primary);
    margin: 0 auto 1.5rem auto;
}

/* --- Process Cards & Icons --- */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2; /* Sit above grid */
}

.process-card {
    background: transparent;
    padding: 0;
    position: relative;
}

/* NEW ICON BADGE STYLE */
.step-badge {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), #c2410c);
    color: white; /* Ensure Icon is White */
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem; /* Large Icon Size */
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    margin-bottom: 1.5rem;
    border: 4px solid white;
    position: relative;
    z-index: 10;
}

.card-interior {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.process-card:hover .card-interior {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.process-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--text);
    font-weight: 700;
}

.process-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}


/* --- 3. RECEIVABLES SECTION --- */
.receivables-section {
    padding: 100px 0;
    background-color: white; /* Plain white to contrast with grid section above */
    position: relative;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin: 4rem 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subsection-title::before {
    content: ''; display: block;
    width: 6px; height: 32px;
    background: var(--primary);
    border-radius: 4px;
}

.light-text { color: white; }

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 1.5rem;
    background: rgba(255, 107, 53, 0.1); 
    width: 50px; height: 50px;
    display: flex;
    align-items: center; justify-content: center;
    border-radius: 10px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.info-card ul { list-style: none; padding: 0; }
.info-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.info-card li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0; top: -2px;
}

/* --- Operational Support (Dark Box) --- */
.operational-support-wrapper {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 4rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.support-graphic-overlay {
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border: 2px dashed rgba(255,255,255,0.05);
    border-radius: 50%;
}

.operational-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.support-icon-small {
    width: 44px; height: 44px;
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    border-radius: 8px;
    display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}

.support-card h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.support-card p, .support-list li {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .how-it-works-grid,
    .ecosystem-grid,
    .operational-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .process-card { text-align: left; }
    .page-hero h1 { font-size: 2.5rem; }
}