/* ========================================
   OUR RESEARCH PAGE - BLOOMINGTON UNIVERSITY
   Modern, Dynamic, Research-Focused Design
   ======================================== */

:root {
    /* Research Page Colors */
    --res-deep: #0a1628;
    --res-navy: #1e3a5f;
    --res-navy-light: #2c5282;
    --res-blue: #3b82f6;
    --res-blue-light: #60a5fa;
    --res-teal: #14b8a6;
    --res-teal-light: #2dd4bf;
    --res-purple: #8b5cf6;
    --res-purple-light: #a78bfa;
    --res-gold: #f59e0b;
    --res-gold-light: #fbbf24;
    --res-green: #10b981;
    --res-coral: #f87171;
    --res-gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 50%, #14b8a6 100%);
    --res-gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --res-gradient-warm: linear-gradient(135deg, #f59e0b 0%, #f87171 100%);
    --res-text-primary: #0f172a;
    --res-text-secondary: #475569;
    --res-text-muted: #94a3b8;
    --res-bg-light: #f8fafc;
    --res-bg-white: #ffffff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.res-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%);
    overflow: hidden;
    padding: 140px 60px 100px;
}

/* Animated Background Elements */
.res-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.res-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.res-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.res-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.res-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.res-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

/* Floating Research Particles */
.res-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.res-particle {
    position: absolute;
    width: 48px;
    height: 48px;
    opacity: 0.12;
    animation: particleFloat 15s ease-in-out infinite;
}

.res-particle svg {
    width: 100%;
    height: 100%;
    stroke: #60a5fa;
    stroke-width: 1.5;
}

.res-p-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.res-p-2 {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
}

.res-p-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.res-p-4 {
    top: 60%;
    right: 10%;
    animation-delay: 9s;
}

.res-p-5 {
    bottom: 15%;
    right: 25%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.12; }
    25% { transform: translate(20px, -30px) rotate(90deg); opacity: 0.2; }
    50% { transform: translate(-15px, 20px) rotate(180deg); opacity: 0.08; }
    75% { transform: translate(15px, -15px) rotate(270deg); opacity: 0.15; }
}

/* Hero Container */
.res-hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

/* ========================================
   LEFT CONTENT
   ======================================== */
.res-hero-content {
    color: #ffffff;
}

/* Research Badge */
.res-hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: #60a5fa;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.res-badge-pulse {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.2; }
}

.res-badge-icon {
    position: relative;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.res-badge-icon svg {
    width: 100%;
    height: 100%;
    stroke: #60a5fa;
}

/* Main Title */
.res-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.res-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #2dd4bf 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Subtitle */
.res-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 90%;
}

/* Research Pillars */
.res-hero-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.res-pillar-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.res-pillar-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.res-pillar-tag svg {
    width: 18px;
    height: 18px;
    stroke: #60a5fa;
}

/* CTA Buttons */
.res-hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.res-btn-primary,
.res-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.res-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.res-btn-primary:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-btn-primary svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.res-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.res-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-btn-secondary svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Quick Stats Bar */
.res-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.res-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.res-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
}

.res-stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: #60a5fa;
}

.res-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.res-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.res-stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.res-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   RIGHT VISUAL GRID
   ======================================== */
.res-hero-visual {
    position: relative;
}

/* Research Bento Grid */
.res-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 100px);
    gap: 12px;
}

.res-visual-card {
    position: relative;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.res-visual-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

/* Card Sizes */
.res-card-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 20px;
}

.res-card-medium {
    grid-column: span 1;
    grid-row: span 2;
}

.res-card-small {
    grid-column: span 1;
    grid-row: span 1;
    padding: 14px;
}

/* Card Glow Effect */
.res-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.res-visual-card:hover .res-card-glow {
    opacity: 1;
}

/* Card Colors */
.res-card-featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.res-card-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
}

.res-card-teal {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.25);
}

.res-card-gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
}

.res-card-purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
}

/* Card Icon */
.res-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.res-card-large .res-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
}

.res-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #60a5fa;
}

.res-card-large .res-card-icon svg {
    width: 28px;
    height: 28px;
}

/* Card Content */
.res-card-content {
    position: relative;
    z-index: 2;
}

.res-card-label {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 6px;
}

.res-card-large .res-card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.res-card-small .res-card-title {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.res-card-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.res-card-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

/* Achievement Badge */
.res-achievement-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #f87171 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(20px);
}

.res-achievement-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.res-achievement-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.res-achievement-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.res-achievement-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-achievement-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.res-achievement-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Landscape (1200px and below) */
@media (max-width: 1200px) {
    .res-hero-container {
        gap: 60px;
        padding: 0 24px;
    }

    .res-hero-title {
        font-size: 3rem;
    }

    .res-hero-subtitle {
        font-size: 1.05rem;
    }

    .res-visual-grid {
        grid-template-rows: repeat(3, 130px);
        gap: 14px;
    }

    .res-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .res-stat-divider {
        display: none;
    }
}

/* Tablet Portrait (992px and below) */
@media (max-width: 992px) {
    .res-hero {
        min-height: auto;
        padding: 100px 40px 60px;
    }

    .res-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .res-hero-title {
        font-size: 2.5rem;
    }

    .res-hero-subtitle {
        max-width: 100%;
    }

    .res-hero-pillars {
        margin-bottom: 28px;
    }

    .res-hero-ctas {
        flex-wrap: wrap;
        margin-bottom: 36px;
    }

    .res-btn-primary,
    .res-btn-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .res-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 100px);
        gap: 10px;
    }

    .res-achievement-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        width: fit-content;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .res-hero {
        padding: 80px 0 50px;
    }

    .res-hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .res-hero-title {
        font-size: 2rem;
    }

    .res-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .res-hero-pillars {
        gap: 8px;
        margin-bottom: 24px;
    }

    .res-pillar-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .res-pillar-tag svg {
        width: 16px;
        height: 16px;
    }

    .res-hero-ctas {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .res-btn-primary,
    .res-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .res-hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .res-stat-item {
        width: 100%;
    }

    .res-visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        gap: 12px;
    }

    .res-card-large,
    .res-card-medium,
    .res-card-small {
        grid-column: span 1;
        grid-row: span 1;
        padding: 20px;
    }

    .res-card-large .res-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .res-card-large .res-card-icon svg {
        width: 32px;
        height: 32px;
    }

    .res-card-large .res-card-title {
        font-size: 1.25rem;
    }

    .res-card-badge {
        position: static;
        margin-top: 12px;
        display: inline-block;
    }

    .res-achievement-badge {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    /* Reduce particle visibility on mobile */
    .res-particle {
        opacity: 0.06;
    }

    /* Simplify background orbs */
    .res-bg-orb {
        filter: blur(80px);
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .res-hero-container {
        padding: 0 16px;
    }

    .res-hero-title {
        font-size: 1.75rem;
    }

    .res-hero-subtitle {
        font-size: 0.95rem;
    }

    .res-hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .res-badge-icon {
        width: 18px;
        height: 18px;
    }

    .res-pillar-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .res-stat-number {
        font-size: 1.25rem;
    }

    .res-stat-label {
        font-size: 0.7rem;
    }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.res-section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.res-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--res-blue);
    margin-bottom: 20px;
}

.res-section-tag svg {
    width: 16px;
    height: 16px;
    stroke: var(--res-blue);
}

.res-section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--res-text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.res-highlight {
    color: var(--res-blue);
}

.res-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--res-text-secondary);
}

/* ========================================
   RESEARCH THEMES SECTION
   ======================================== */
.res-themes-section {
    padding: 100px 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.res-themes-container {
    max-width: 1400px;
    margin: 0 auto;
}

.res-themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.res-theme-card {
    position: relative;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

.res-theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: height 0.4s ease;
}

.res-theme-green::before {
    background: linear-gradient(90deg, var(--res-green) 0%, var(--res-teal) 100%);
}

.res-theme-blue::before {
    background: linear-gradient(90deg, var(--res-blue) 0%, var(--res-purple) 100%);
}

.res-theme-coral::before {
    background: linear-gradient(90deg, var(--res-coral) 0%, var(--res-gold) 100%);
}

.res-theme-gold::before {
    background: linear-gradient(90deg, var(--res-gold) 0%, var(--res-green) 100%);
}

.res-theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.res-theme-card:hover::before {
    height: 5px;
}

.res-theme-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
}

.res-theme-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--res-blue);
}

.res-theme-content {
    margin-bottom: 20px;
}

.res-theme-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.res-theme-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--res-text-secondary);
    margin-bottom: 14px;
}

.res-theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.res-theme-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--res-text-secondary);
}

.res-theme-list svg {
    width: 16px;
    height: 16px;
    stroke: var(--res-green);
    flex-shrink: 0;
}

.res-theme-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.res-theme-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.res-theme-stat-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--res-blue);
    line-height: 1;
}

.res-theme-stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--res-text-muted);
}

/* Research Themes CTA */
.res-themes-cta {
    text-align: center;
    margin-top: 50px;
}

.res-themes-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.res-themes-btn:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-themes-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ========================================
   RESEARCH CENTERS & LABS SECTION
   ======================================== */
.res-centers-section {
    padding: 100px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.res-centers-container {
    max-width: 1400px;
    margin: 0 auto;
}

.res-centers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.res-center-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.res-center-card:hover {
    border-color: var(--res-blue);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.res-center-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--res-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-center-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
}

.res-center-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--res-blue);
}

.res-center-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.res-center-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--res-text-secondary);
    margin-bottom: 20px;
}

.res-center-meta {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.res-center-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.res-center-meta-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--res-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-center-meta-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--res-blue);
}

.res-centers-cta {
    text-align: center;
    margin-top: 50px;
}

.res-centers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.res-centers-btn:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-centers-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ========================================
   RESPONSIVE - RESEARCH SECTIONS
   ======================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .res-themes-section,
    .res-centers-section {
        padding: 70px 24px;
    }

    .res-section-title {
        font-size: 2.25rem;
    }

    .res-themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .res-centers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .res-theme-card {
        padding: 32px;
    }

    .res-center-card {
        padding: 28px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .res-themes-section,
    .res-centers-section {
        padding: 60px 20px;
    }

    .res-section-title {
        font-size: 1.85rem;
    }

    .res-section-subtitle {
        font-size: 1rem;
    }

    .res-centers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .res-theme-card,
    .res-center-card {
        padding: 24px;
    }

    .res-theme-title {
        font-size: 1.4rem;
    }

    .res-center-title {
        font-size: 1.2rem;
    }

    .res-theme-stats {
        gap: 20px;
    }
}

/* ========================================
   RESEARCH IMPACT STORIES SECTION (ACCORDION + IMAGE)
   ======================================== */
.res-impact-section {
    padding: 100px 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.res-impact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.res-impact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Accordion Styles */
.res-impact-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.res-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.res-accordion-item:hover {
    border-color: var(--res-blue);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.res-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.res-accordion-item.active .res-accordion-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.res-accordion-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.res-accordion-item.active .res-accordion-icon {
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
}

.res-accordion-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--res-blue);
    transition: all 0.3s ease;
}

.res-accordion-item.active .res-accordion-icon svg {
    stroke: #ffffff;
}

.res-accordion-title-wrap {
    flex: 1;
}

.res-accordion-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--res-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.res-accordion-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--res-text-primary);
    line-height: 1.3;
    margin: 0;
}

.res-accordion-arrow {
    width: 24px;
    height: 24px;
    stroke: var(--res-text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.res-accordion-item.active .res-accordion-arrow {
    transform: rotate(180deg);
    stroke: var(--res-blue);
}

.res-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.res-accordion-item.active .res-accordion-content {
    max-height: 500px;
    padding: 0 24px 24px;
}

.res-accordion-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--res-text-secondary);
    margin-bottom: 20px;
}

.res-accordion-stats {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.res-accordion-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.res-accordion-stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--res-blue);
    line-height: 1;
}

.res-accordion-stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--res-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-accordion-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--res-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.res-accordion-link:hover {
    gap: 12px;
    color: var(--res-teal);
}

.res-accordion-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Image Column */
.res-impact-image-col {
    position: sticky;
    top: 120px;
}

.res-impact-featured-image {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.res-impact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(20, 184, 166, 0.7) 100%);
}

.res-impact-image-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #ffffff;
}

.res-impact-image-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.res-impact-image-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.res-impact-image-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ========================================
   STUDENT RESEARCH OPPORTUNITIES SECTION (IMAGE-BASED)
   ======================================== */
.res-students-section {
    padding: 100px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.res-students-container {
    max-width: 1400px;
    margin: 0 auto;
}

.res-students-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.res-student-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.res-student-card:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    transform: translateY(-8px);
}

.res-student-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.res-student-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    opacity: 0.9;
    z-index: 1;
}

.res-student-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.res-student-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--res-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.res-student-icon-large {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.res-student-icon-large svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    stroke-width: 2;
}

.res-student-content {
    padding: 20px;
}

.res-student-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.res-student-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--res-text-secondary);
    margin-bottom: 16px;
}

.res-student-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.res-student-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--res-text-secondary);
}

.res-student-feature-tag svg {
    width: 14px;
    height: 14px;
    stroke: var(--res-blue);
}

.res-student-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--res-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.res-student-link:hover {
    gap: 12px;
    color: var(--res-teal);
}

.res-student-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* CTA Box */
.res-students-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

.res-students-cta-content {
    flex: 1;
}

.res-students-cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.res-students-cta-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.res-students-cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.res-students-btn-primary,
.res-students-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.res-students-btn-primary {
    background: #ffffff;
    color: var(--res-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.res-students-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: var(--res-blue);
}

.res-students-btn-primary svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.res-students-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.res-students-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ========================================
   SECTION 5 - RESEARCH PARTNERSHIPS
   ======================================== */
.res-partnerships-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.res-partnerships-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Partnership Grid */
.res-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.res-partner-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.res-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.res-partner-card.academic::before { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.res-partner-card.industry::before { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }
.res-partner-card.government::before { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.res-partner-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.res-partner-card:hover::before {
    height: 6px;
}

.res-partner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.res-partner-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.res-partner-card.academic .res-partner-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.res-partner-card.industry .res-partner-icon {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.res-partner-card.government .res-partner-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.res-partner-card:hover .res-partner-icon {
    transform: scale(1.1) rotate(5deg);
}

.res-partner-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.res-partner-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 20px;
}

.res-partner-card.academic .res-partner-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.res-partner-card.industry .res-partner-badge {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.res-partner-card.government .res-partner-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.res-partner-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.res-partner-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--res-text-secondary);
    margin-bottom: 20px;
}

.res-partner-stats {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.res-partner-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.res-partner-stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--res-text-primary);
}

.res-partner-stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--res-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.res-partner-card.academic .res-partner-link { color: #3b82f6; }
.res-partner-card.industry .res-partner-link { color: #14b8a6; }
.res-partner-card.government .res-partner-link { color: #f59e0b; }

.res-partner-link:hover {
    gap: 12px;
}

.res-partner-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Featured Collaboration */
.res-featured-collab {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 48px;
}

.res-featured-collab-content {
    padding: 40px;
}

.res-featured-collab-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.res-featured-collab-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.res-featured-collab-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--res-text-secondary);
    margin-bottom: 24px;
}

.res-featured-collab-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.res-featured-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--res-text-secondary);
}

.res-featured-highlight svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #10b981;
}

.res-featured-collab-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.res-featured-collab-cta:hover {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-featured-collab-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.res-featured-collab-image {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-featured-collab-image-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.res-featured-collab-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.res-featured-collab-logo svg {
    width: 60px;
    height: 60px;
    stroke: #ffffff;
}

/* Partnerships CTA */
.res-partnerships-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.res-partnerships-cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 12px;
}

.res-partnerships-cta-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--res-text-secondary);
    margin-bottom: 24px;
}

.res-partnerships-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.res-partnerships-cta-btn:hover {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-partnerships-cta-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ========================================
   SECTION 6 - FACULTY SPOTLIGHT
   ======================================== */
.res-faculty-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.res-faculty-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Faculty Spotlight Cards */
.res-faculty-spotlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.res-faculty-spotlight-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.res-faculty-spotlight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transition: width 0.3s ease;
}

.res-faculty-spotlight-card.climate::before { background: #10b981; }
.res-faculty-spotlight-card.ai::before { background: #3b82f6; }
.res-faculty-spotlight-card.health::before { background: #f87171; }
.res-faculty-spotlight-card.social::before { background: #f59e0b; }

.res-faculty-spotlight-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.res-faculty-spotlight-card:hover::before {
    width: 6px;
}

.res-faculty-spotlight-card.active {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.res-faculty-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    min-width: 360px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.res-faculty-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 0, 0, 0.05);
}

.res-faculty-avatar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-faculty-avatar-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--res-text-light);
}

.res-faculty-label {
    flex: 1;
}

.res-faculty-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 4px;
}

.res-faculty-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--res-text-secondary);
    margin-bottom: 2px;
}

.res-faculty-dept {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--res-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-faculty-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.res-faculty-preview {
    font-size: 0.9rem;
    color: var(--res-text-secondary);
    line-height: 1.7;
    transition: opacity 0.3s ease;
    margin: 0;
}

.res-faculty-spotlight-card.active .res-faculty-preview {
    opacity: 0;
    position: absolute;
}

.res-faculty-details {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: calc(100% - 56px);
}

.res-faculty-spotlight-card.active .res-faculty-details {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.res-faculty-research {
    margin-bottom: 16px;
}

.res-faculty-details-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--res-text-light);
    margin-bottom: 10px;
}

.res-faculty-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.res-faculty-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.8rem;
    color: var(--res-text-secondary);
    line-height: 1.5;
}

.res-faculty-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.res-faculty-spotlight-card.climate .res-faculty-list li::before { color: #10b981; }
.res-faculty-spotlight-card.ai .res-faculty-list li::before { color: #3b82f6; }
.res-faculty-spotlight-card.health .res-faculty-list li::before { color: #f87171; }
.res-faculty-spotlight-card.social .res-faculty-list li::before { color: #f59e0b; }

.res-faculty-achievements {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.res-faculty-achievement {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--res-text-secondary);
}

.res-faculty-achievement svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.res-faculty-spotlight-card.climate .res-faculty-achievement svg { stroke: #10b981; }
.res-faculty-spotlight-card.ai .res-faculty-achievement svg { stroke: #3b82f6; }
.res-faculty-spotlight-card.health .res-faculty-achievement svg { stroke: #f87171; }
.res-faculty-spotlight-card.social .res-faculty-achievement svg { stroke: #f59e0b; }

.res-faculty-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.res-faculty-spotlight-card.climate .res-faculty-profile-link { color: #10b981; }
.res-faculty-spotlight-card.ai .res-faculty-profile-link { color: #3b82f6; }
.res-faculty-spotlight-card.health .res-faculty-profile-link { color: #f87171; }
.res-faculty-spotlight-card.social .res-faculty-profile-link { color: #f59e0b; }

.res-faculty-profile-link:hover {
    gap: 10px;
}

.res-faculty-profile-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.res-faculty-toggle {
    position: absolute;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.res-faculty-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--res-text-light);
    transition: transform 0.3s ease;
}

.res-faculty-spotlight-card.active .res-faculty-toggle {
    background: var(--res-text-primary);
}

.res-faculty-spotlight-card.active .res-faculty-toggle svg {
    color: #ffffff;
    transform: rotate(90deg);
}

/* Faculty CTA */
.res-faculty-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.res-faculty-cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--res-text-primary);
    margin-bottom: 12px;
}

.res-faculty-cta-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--res-text-secondary);
    margin-bottom: 24px;
}

.res-faculty-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.res-faculty-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.res-faculty-cta-btn.primary {
    background: linear-gradient(135deg, var(--res-blue) 0%, var(--res-teal) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.res-faculty-cta-btn.primary:hover {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-faculty-cta-btn.secondary {
    background: transparent;
    color: var(--res-blue);
    border: 2px solid var(--res-blue);
}

.res-faculty-cta-btn.secondary:hover {
    background: var(--res-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.res-faculty-cta-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ========================================
   CTA SECTION - CONTACT RESEARCH OFFICE
   ======================================== */
.res-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%);
    position: relative;
    overflow: hidden;
}

.res-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.res-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.res-cta-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.res-cta-content {
    text-align: center;
}

.res-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.res-cta-badge svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.9);
}

.res-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.res-cta-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 48px;
}

.res-cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.res-cta-option {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.res-cta-option:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.res-cta-option-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.res-cta-option-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

.res-cta-option-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.res-cta-option-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.res-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.res-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.res-cta-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.res-cta-btn.primary:hover {
    box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.res-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-cta-btn.tertiary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.res-cta-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.res-cta-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.res-cta-contact-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.res-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.res-cta-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE - IMPACT & STUDENT SECTIONS
   ======================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .res-impact-section,
    .res-students-section {
        padding: 70px 24px;
    }

    .res-impact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .res-impact-image-col {
        position: static;
        order: -1;
    }

    .res-impact-featured-image {
        height: 400px;
    }

    .res-students-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .res-students-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .res-students-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .res-students-btn-primary,
    .res-students-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .res-impact-section,
    .res-students-section {
        padding: 60px 20px;
    }

    .res-impact-featured-image {
        height: 350px;
    }

    .res-impact-image-content {
        padding: 28px;
    }

    .res-impact-image-title {
        font-size: 1.5rem;
    }

    .res-impact-image-desc {
        font-size: 0.9rem;
    }

    .res-accordion-header {
        padding: 20px;
    }

    .res-accordion-item.active .res-accordion-content {
        padding: 0 20px 20px;
    }

    .res-accordion-title {
        font-size: 1rem;
    }

    .res-accordion-icon {
        width: 40px;
        height: 40px;
    }

    .res-accordion-icon svg {
        width: 20px;
        height: 20px;
    }

    .res-accordion-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .res-accordion-stat-value {
        font-size: 1.25rem;
    }

    .res-student-card {
        margin-bottom: 0;
    }

    .res-students-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .res-student-image {
        height: 200px;
    }

    .res-student-content {
        padding: 20px;
    }

    .res-student-title {
        font-size: 1.2rem;
    }

    .res-student-desc {
        font-size: 0.875rem;
    }

    .res-students-cta-box {
        padding: 28px;
    }

    .res-students-cta-title {
        font-size: 1.4rem;
    }

    .res-students-cta-desc {
        font-size: 0.95rem;
    }

    /* Section 5 - Partnerships */
    .res-partnerships-section,
    .res-faculty-section {
        padding: 60px 24px;
    }

    .res-partner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .res-featured-collab {
        grid-template-columns: 1fr;
    }

    .res-featured-collab-content {
        padding: 32px;
    }

    .res-featured-collab-image {
        min-height: 240px;
    }

    .res-partnerships-cta,
    .res-faculty-cta {
        padding: 32px 24px;
    }

    .res-partnerships-cta-title,
    .res-faculty-cta-title {
        font-size: 1.4rem;
    }

    /* Section 6 - Faculty */
    .res-faculty-spotlight-card {
        flex-direction: column;
    }

    .res-faculty-left {
        min-width: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .res-faculty-right {
        padding: 20px 24px;
    }

    .res-faculty-list {
        grid-template-columns: 1fr;
    }

    .res-faculty-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .res-faculty-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* CTA Section */
    .res-cta-section {
        padding: 70px 24px;
    }

    .res-cta-title {
        font-size: 2rem;
    }

    .res-cta-desc {
        font-size: 1rem;
    }

    .res-cta-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .res-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .res-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .res-cta-contact-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .res-students-grid {
        grid-template-columns: 1fr;
    }

    .res-student-image {
        height: 200px;
    }

    .res-cta-title {
        font-size: 1.75rem;
    }
}
