/* =====================================================
   COMMON PROBLEMS SECTION - PREMIUM DESIGN
   ===================================================== */

.common-problems-premium {
    position: relative;
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #1565C0 100%);
    padding: 6rem 0;
    overflow: hidden;
    color: white;
}

/* Animated Background Icons */
.problems-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.problems-floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    animation: float 20s infinite ease-in-out;
}

.problems-floating-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.problems-floating-icon.icon-2 {
    top: 60%;
    left: 10%;
    animation-delay: -3s;
}

.problems-floating-icon.icon-3 {
    top: 30%;
    right: 8%;
    animation-delay: -6s;
}

.problems-floating-icon.icon-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: -9s;
}

.problems-floating-icon.icon-5 {
    top: 70%;
    right: 20%;
    animation-delay: -12s;
}

.problems-floating-icon.icon-6 {
    top: 25%;
    left: 25%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) translateX(-20px) rotate(3deg);
    }
}

/* Content Container */
.common-problems-premium .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.problems-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problems-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.problems-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.problems-header .section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Problem Card */
.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 0;
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.problem-card:hover::before {
    opacity: 1;
}

/* Problem Icon */
.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

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

/* Problem Content */
.problem-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white !important;
    position: relative;
    z-index: 1;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    position: relative;
    z-index: 1;
}

/* Emergency CTA Box */
.emergency-cta-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.emergency-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.emergency-cta-box h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    color: #2196F3 !important;
}

.emergency-cta-box p {
    color: #4a5568 !important;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Emergency phone button styling - purple gradient with high priority */
.emergency-cta-box .emergency-phone-btn {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
    color: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .common-problems-premium {
        padding: 4rem 0;
    }

    .problems-header {
        margin-bottom: 2.5rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .emergency-cta-box {
        padding: 2rem 1.5rem;
    }

    .emergency-phone-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
