/* ==========================================
   VOCALX - PROBLEM PAGES STYLES
   Specialized styling for problem detail pages
   ========================================== */

/* Problem Hero Section */
.problem-hero {
    padding: 8rem 0 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.problem-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.problem-icon-large svg {
    width: 60px;
    height: 60px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.problem-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle-large {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Nav Back Button */
.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.nav-back:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-text);
}

.nav-back svg {
    width: 18px;
    height: 18px;
}

/* Stats with Animated Suffix */
.reveal-stats .stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-left: 0.25rem;
}

/* Service Page Footer */
.service-page .footer {
    background: var(--color-bg-secondary);
    padding: 2rem 0;
}

.service-page .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-page .footer-legal {
    display: flex;
    gap: 1.5rem;
}

.service-page .footer-legal a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-page .footer-legal a:hover {
    color: var(--color-primary);
}

/* CTA Section Enhancements */
.cta-section {
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .problem-hero {
        padding: 6rem 0 3rem;
    }
    
    .problem-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .problem-icon-large svg {
        width: 50px;
        height: 50px;
    }
    
    .service-page .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
