/* ===== Opportunities Page Styles ===== */
/* Victory Engine Aesthetic: Dark Navy + Gold Accents */

/* Hero Section */
.opportunities-hero {
    position: relative;
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-gold {
    background: var(--gold-primary);
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-green {
    background: var(--victory-green);
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.opportunities-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 157, 92, 0.15);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(200, 157, 92, 0.3);
}

.hero-badge i {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-opportunities-primary,
.btn-opportunities-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-opportunities-primary {
    background: linear-gradient(135deg, var(--gold-primary), #d4a962);
    color: #0f1419;
    border: none;
    box-shadow: 0 10px 40px rgba(200, 157, 92, 0.4);
}

.btn-opportunities-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(200, 157, 92, 0.6);
}

.btn-opportunities-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-opportunities-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Three Pillars Section */
.three-pillars-section {
    background: var(--background);
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 157, 92, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.section-badge i {
    width: 18px;
    height: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.title-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.pillar-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.pillar-featured {
    border-color: var(--gold-primary);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.05), rgba(76, 175, 80, 0.05));
}

.pillar-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gold-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.3);
}

.pillar-icon i {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pillar-description {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pillar-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.pillar-features i {
    width: 20px;
    height: 20px;
    color: var(--victory-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(200, 157, 92, 0.1);
    border: 1px solid var(--gold-primary);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-top: auto;
}

.pillar-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.pillar-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-primary);
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
    padding: 6rem 0;
    color: var(--white);
}

.how-it-works-section .section-title,
.how-it-works-section .section-description {
    color: var(--white);
}

.how-it-works-section .section-description {
    opacity: 0.85;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.process-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-primary), var(--victory-green));
    margin: -1.5rem 0 -1.5rem 28.5px;
    border-radius: 2px;
}

/* Marketplace Section */
.marketplace-section {
    background: var(--background);
    padding: 6rem 0;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.marketplace-side {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.side-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.side-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.3);
}

.side-icon i {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.side-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.side-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.side-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 157, 92, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.marketplace-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-primary), #d4a962);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.0625rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.3);
}

.marketplace-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.5);
}

.marketplace-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, var(--gold-primary), var(--victory-green));
    border-radius: 2px;
}

.divider-badge {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.4);
}

/* Programs Section */
.programs-section {
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
    padding: 6rem 0;
}

.programs-section .section-title,
.programs-section .section-description {
    color: var(--white);
}

.programs-section .section-description {
    opacity: 0.85;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.program-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 157, 92, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(200, 157, 92, 0.3);
}

.program-featured {
    border-color: var(--gold-primary);
    border-width: 3px;
    background: rgba(200, 157, 92, 0.1);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--victory-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.program-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(200, 157, 92, 0.3);
}

.program-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.program-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.program-agency {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.program-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-details li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 900;
}

.program-details strong {
    color: var(--white);
    font-weight: 800;
}

.program-opportunity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(200, 157, 92, 0.15);
    border: 1px solid var(--gold-primary);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.program-opportunity i {
    width: 20px;
    height: 20px;
}

/* Advantage Section */
.advantage-section {
    background: var(--background);
    padding: 6rem 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-primary), var(--victory-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.3);
}

.advantage-icon i {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200, 157, 92, 0.1), transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-final-primary,
.btn-final-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-primary {
    background: linear-gradient(135deg, var(--gold-primary), #d4a962);
    color: #0f1419;
    border: none;
    box-shadow: 0 10px 40px rgba(200, 157, 92, 0.4);
}

.btn-final-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(200, 157, 92, 0.6);
}

.btn-final-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-final-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 600;
}

.trust-item i {
    width: 20px;
    height: 20px;
    color: var(--victory-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .marketplace-divider {
        flex-direction: row;
        justify-content: center;
    }
    
    .divider-line {
        width: 100px;
        height: 2px;
    }
}

@media (max-width: 768px) {
    .opportunities-hero {
        padding: 5rem 0 4rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .pillars-grid,
    .programs-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-number-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-connector {
        margin-left: 23.5px;
    }
    
    .hero-cta-container,
    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-opportunities-primary,
    .btn-opportunities-secondary,
    .btn-final-primary,
    .btn-final-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .final-cta-trust {
        gap: 1.5rem;
    }
}
