/* ========================================
   STUDENT OPPORTUNITIES PAGE - BLOOMINGTON UNIVERSITY
   Modern, Warm, Dynamic, World-Class Design
   ======================================== */

/* ========================================
   HERO SECTION - STUDENT OPPORTUNITIES
   ======================================== */
.so-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        #001529 0%, 
        #003d5c 25%, 
        #005a7a 50%, 
        #4a9bab 100%);
    overflow: hidden;
    padding: 140px 60px 120px;
}

/* Animated gradient overlay */
.so-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 155, 171, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 1;
    }
}

/* Dynamic grid pattern */
.so-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridFloat 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes gridFloat {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating opportunity icons */
.so-hero-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.so-float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.so-float-icon svg {
    width: 30px;
    height: 30px;
    stroke: rgba(201, 162, 39, 0.8);
    stroke-width: 1.5;
}

.so-float-icon-1 {
    top: 15%;
    left: 10%;
    animation-name: float1;
}

.so-float-icon-2 {
    top: 25%;
    right: 8%;
    animation-name: float2;
    animation-delay: -5s;
}

.so-float-icon-3 {
    bottom: 20%;
    left: 15%;
    animation-name: float3;
    animation-delay: -10s;
}

.so-float-icon-4 {
    top: 50%;
    right: 12%;
    animation-name: float4;
    animation-delay: -15s;
}

.so-float-icon-5 {
    bottom: 30%;
    right: 20%;
    animation-name: float5;
    animation-delay: -7s;
}

.so-float-icon-6 {
    top: 40%;
    left: 8%;
    animation-name: float6;
    animation-delay: -12s;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -40px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 35px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, 30px) rotate(8deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-35px, -25px) rotate(-6deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -30px) rotate(4deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 40px) rotate(-7deg); }
}

/* Main container */
.so-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left content */
.so-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.so-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    width: fit-content;
    transition: all 0.4s ease;
}

.so-hero-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-2px);
}

.so-hero-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--er-gold) 0%, #f0d469 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.so-hero-badge-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--er-deep);
    stroke-width: 2.5;
}

.so-hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.so-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
}

.so-hero-title .accent {
    background: linear-gradient(135deg, var(--er-gold) 0%, #f0d469 50%, var(--er-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    display: inline-block;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.so-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.so-hero-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.so-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.so-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.so-hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.so-hero-btn.primary {
    background: linear-gradient(135deg, var(--er-gold) 0%, #d6a928 100%);
    color: var(--er-deep);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
}

.so-hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.35);
}

.so-hero-btn.primary:hover svg {
    transform: translateX(4px);
}

.so-hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.so-hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Right side - Visual Cards */
.so-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Opportunities showcase cards */
.so-opportunities-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.so-opp-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.so-opp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--er-gold) 0%, #f0d469 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.so-opp-card:hover::before {
    transform: scaleX(1);
}

.so-opp-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.so-opp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.so-opp-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--er-gold);
    stroke-width: 2;
}

.so-opp-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.so-opp-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.so-opp-count {
    font-size: 0.8rem;
    color: var(--er-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.so-opp-count svg {
    width: 12px;
    height: 12px;
    stroke: var(--er-gold);
    stroke-width: 2;
}

/* Feature highlight card */
.so-feature-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(74, 155, 171, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s ease;
}

.so-feature-highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.so-feature-icon-large {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--er-gold) 0%, #f0d469 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.so-feature-icon-large svg {
    width: 28px;
    height: 28px;
    stroke: var(--er-deep);
    stroke-width: 2.5;
}

.so-feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.so-feature-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* Bottom statistics bar */
.so-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 21, 41, 0.6);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.so-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.so-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.so-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 162, 39, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.so-stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--er-gold);
    stroke-width: 2;
}

.so-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.so-stat-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.so-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .so-hero-container {
        gap: 60px;
    }
    
    .so-hero-title {
        font-size: 3.2rem;
    }
    
    .so-opportunities-stack {
        grid-template-columns: 1fr;
    }
    
    .so-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .so-hero {
        min-height: auto;
        padding: 120px 40px 80px;
    }
    
    .so-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .so-hero-title {
        font-size: 2.8rem;
    }
    
    .so-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .so-opportunities-stack {
        grid-template-columns: 1fr 1fr;
    }
    
    .so-float-icon {
        width: 50px;
        height: 50px;
    }
    
    .so-float-icon svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .so-hero {
        padding: 100px 30px 60px;
    }
    
    .so-hero-title {
        font-size: 2.2rem;
    }
    
    .so-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .so-hero-body {
        font-size: 0.95rem;
    }
    
    .so-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .so-hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .so-opportunities-stack {
        grid-template-columns: 1fr;
    }
    
    .so-stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 30px;
    }
    
    .so-float-icon {
        display: none;
    }
}

@media (max-width: 576px) {
    .so-hero-title {
        font-size: 1.9rem;
    }
    
    .so-hero-badge {
        padding: 8px 18px;
    }
    
    .so-hero-badge-icon {
        width: 28px;
        height: 28px;
    }
    
    .so-hero-badge span {
        font-size: 0.8rem;
    }
    
    .so-opp-card {
        padding: 22px;
    }
    
    .so-feature-highlight {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}

/* ========================================
   SECTION 1 - OPPORTUNITY CATEGORIES
   ======================================== */
.so-categories-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.so-categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.so-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.so-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(74, 155, 171, 0.1));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
}

.so-section-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--er-gold);
    stroke-width: 2;
}

.so-section-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--er-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.so-section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--er-deep);
    margin: 0 0 16px;
    line-height: 1.2;
}

.so-section-subtitle {
    font-size: 1.1rem;
    color: var(--er-text-light);
    line-height: 1.7;
    margin: 0;
}

.so-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.so-category-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.so-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--er-gold), var(--er-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.so-category-card:hover::before {
    transform: scaleX(1);
}

.so-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.so-category-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(74, 155, 171, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.so-category-card:hover .so-category-icon-wrapper {
    background: linear-gradient(135deg, var(--er-gold), var(--er-teal));
    transform: scale(1.1) rotate(5deg);
}

.so-category-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: var(--er-gold);
    stroke-width: 2;
    transition: all 0.4s ease;
}

.so-category-card:hover .so-category-icon-wrapper svg {
    stroke: #fff;
}

.so-category-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--er-deep);
    margin: 0 0 12px;
}

.so-category-desc {
    font-size: 0.95rem;
    color: var(--er-text-light);
    line-height: 1.7;
    margin: 0 0 24px;
}

.so-category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--er-teal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.so-category-link:hover {
    gap: 12px;
}

.so-category-link svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

/* ========================================
   SECTION 2 - FEATURED PROGRAMS
   ======================================== */
.so-featured-section {
    padding: 100px 60px;
    background: var(--er-deep);
    position: relative;
    overflow: hidden;
}

.so-featured-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.so-featured-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.so-featured-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.so-featured-header .so-section-title {
    color: #fff;
}

.so-featured-header .so-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.so-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.so-featured-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 30px;
    transition: all 0.4s ease;
}

.so-featured-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.so-featured-image {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.so-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.so-featured-card:hover .so-featured-image img {
    transform: scale(1.1);
}

.so-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--er-gold);
    color: var(--er-deep);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.so-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.so-featured-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.so-featured-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 24px;
    flex: 1;
}

.so-featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.so-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.so-meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--er-gold);
    stroke-width: 2;
}

.so-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.so-featured-btn:hover {
    background: var(--er-gold);
    border-color: var(--er-gold);
    color: var(--er-deep);
}

.so-featured-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* ========================================
   SECTION 3 - SUCCESS STORIES
   ======================================== */
.so-stories-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.so-stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.so-stories-slider {
    position: relative;
    margin-top: 60px;
}

.so-story-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: all 0.4s ease;
}

.so-story-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.so-story-image {
    position: relative;
    overflow: hidden;
}

.so-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.so-story-card:hover .so-story-image img {
    transform: scale(1.05);
}

.so-story-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.so-story-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--er-deep);
    line-height: 1.8;
    margin: 0 0 24px;
    position: relative;
}

.so-story-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--er-gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.so-story-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.so-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--er-gold);
}

.so-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.so-author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--er-deep);
    margin: 0 0 4px;
}

.so-author-info p {
    font-size: 0.9rem;
    color: var(--er-text-light);
    margin: 0;
}

/* ========================================
   SECTION 4 - HOW TO GET INVOLVED
   ======================================== */
.so-howto-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--er-teal) 0%, var(--er-deep) 100%);
    position: relative;
}

.so-howto-container {
    max-width: 1200px;
    margin: 0 auto;
}

.so-howto-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.so-howto-header .so-section-title {
    color: #fff;
}

.so-howto-header .so-section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.so-steps-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.so-step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.so-step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid var(--er-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--er-gold);
    position: relative;
    z-index: 10;
}

.so-step-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
}

.so-step-content:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.so-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.so-step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   SECTION 5 - RESOURCES & SUPPORT
   ======================================== */
.so-resources-section {
    padding: 100px 60px;
    background: #fff;
}

.so-resources-container {
    max-width: 1400px;
    margin: 0 auto;
}

.so-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.so-resource-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.so-resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--er-gold);
}

.so-resource-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(74, 155, 171, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.so-resource-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--er-gold);
    stroke-width: 2;
}

.so-resource-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--er-deep);
    margin: 0 0 8px;
}

.so-resource-card p {
    font-size: 0.85rem;
    color: var(--er-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .so-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .so-featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .so-categories-section,
    .so-featured-section,
    .so-stories-section,
    .so-howto-section,
    .so-resources-section {
        padding: 80px 40px;
    }
    
    .so-section-title {
        font-size: 2.2rem;
    }
    
    .so-story-card {
        grid-template-columns: 1fr;
    }
    
    .so-story-image {
        height: 300px;
    }
    
    .so-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .so-categories-section,
    .so-featured-section,
    .so-stories-section,
    .so-howto-section,
    .so-resources-section {
        padding: 60px 30px;
    }
    
    .so-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .so-section-title {
        font-size: 1.9rem;
    }
    
    .so-featured-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .so-featured-image {
        width: 100%;
        height: 250px;
    }
    
    .so-step-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .so-step-number {
        margin: 0 auto;
    }
    
    .so-resources-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   CTA SECTION
   ======================================== */
.so-cta-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--er-deep) 0%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.so-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 150, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.so-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.so-cta-content {
    text-align: center;
}

.so-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.so-cta-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--er-gold);
}

.so-cta-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.so-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.so-cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.so-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.so-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.so-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.so-cta-btn-primary {
    background: var(--er-gold);
    color: var(--er-deep);
    border: 2px solid var(--er-gold);
}

.so-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.4);
}

.so-cta-btn-primary:hover svg {
    transform: scale(1.1);
}

.so-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.so-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.so-cta-btn-secondary:hover svg {
    transform: scale(1.1);
}

.so-cta-info {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.so-cta-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.so-cta-info-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--er-gold);
    flex-shrink: 0;
}

.so-cta-info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.so-cta-info-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--er-gold);
}

.so-cta-info-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .so-cta-section {
        padding: 80px 30px;
    }

    .so-cta-title {
        font-size: 2rem;
    }

    .so-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .so-cta-buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }

    .so-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .so-cta-info {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .so-cta-info-item {
        flex-direction: column;
        text-align: center;
    }

    .so-cta-info-item div {
        align-items: center;
    }
}
