/* Special Opportunities - Combined Card Design */
.opportunities-combined {
    padding: 80px 0;
    background: white;
}

.opportunities-header-combined {
    text-align: center;
    margin-bottom: 48px;
}

.opportunities-header-combined h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.opportunities-header-combined p {
    font-size: 16px;
    color: #64748b;
}

.combined-opportunity-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    overflow: hidden;
}

.opportunity-section {
    padding: 48px 40px;
    text-align: center;
    position: relative;
}

.divider-vertical {
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
}

.opp-badge-combined {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opp-badge-combined.badge-weekly {
    background: #1e40af;
    color: white;
}

.opp-icon-combined {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 18px;
    color: white;
}

.opportunity-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.opp-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.opp-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-tag {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.btn-opp-combined {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-opp-combined.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.btn-opp-combined.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.btn-opp-combined.btn-secondary {
    background: white;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-opp-combined.btn-secondary:hover {
    background: #1e40af;
    color: white;
}

/* Clients Section - New Design */
.clients-section {
    padding: 60px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 64, 175, 0.1);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header-center h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--color-text);
    font-weight: 700;
}

.section-header-center p {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.clients-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card-new {
    background: #f8fafc;
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px solid transparent;
}

.client-card-new:hover {
    background: white;
    border-color: #e0f2fe;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
}

.client-logo-box {
    text-align: center;
    width: 100%;
}

.client-logo-box img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card-new:hover .client-logo-box img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name-fallback {
    display: none;
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    font-family: var(--font-heading);
}

@media (max-width: 968px) {
    .opportunities-combined {
        padding: 60px 0;
    }
    
    .combined-opportunity-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .divider-vertical {
        display: none;
    }
    
    .opportunity-section {
        padding: 40px 32px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .opportunity-section:last-child {
        border-bottom: none;
    }
    
    .clients-section {
        padding: 50px 0;
    }
    
    .clients-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .client-card-new {
        padding: 24px 16px;
        min-height: 100px;
    }
    
    .client-logo-box img {
        max-width: 120px;
        max-height: 50px;
    }
}

@media (max-width: 640px) {
    .opportunities-header-combined h2 {
        font-size: 28px;
    }
    
    .opportunity-section {
        padding: 32px 24px;
    }
    
    .opportunity-section h3 {
        font-size: 20px;
    }
    
    .opp-features-inline {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-tag {
        text-align: center;
    }
    
    .clients-grid-new {
        grid-template-columns: 1fr;
    }
}


/* Cursive Font Styling for Services Page */
.opportunities-header h2 .gradient-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
}

.opp-card-new h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
}

.opp-badge {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.section-badge {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.section-header-center h2 .gradient-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
}

.pricing-teaser-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
}
