/* Subject Coverage Section - Modern Design */

.subject-coverage {
    background: linear-gradient(135deg, #0a0a0f 0%, #0f0a15 50%, #0a0a0f 100%);
    padding: 80px var(--spacing-lg) !important;
    position: relative;
    overflow: hidden;
}

.subject-coverage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.subject-coverage::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.subject-coverage h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 5vw, 3rem);
}

.subject-coverage h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border-radius: 2px;
}

.coverage-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease-out;
}

.coverage-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
}

/* Coverage Step Card */
.coverage-step {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-left: 4px solid #a855f7;
    border-radius: 8px;
    padding: var(--spacing-lg) var(--spacing-xl);
    transition: all var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.8s ease-out both;
}

.coverage-step:nth-child(1) { animation-delay: 0.1s; }
.coverage-step:nth-child(2) { animation-delay: 0.2s; }
.coverage-step:nth-child(3) { animation-delay: 0.3s; }
.coverage-step:nth-child(4) { animation-delay: 0.4s; }
.coverage-step:nth-child(5) { animation-delay: 0.5s; }

.coverage-step:hover {
    transform: translateX(8px);
    border-color: rgba(236, 72, 153, 0.5);
    border-left-color: #ec4899;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.12);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
}

/* Coverage Step Title */
.coverage-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #a855f7;
    margin: 0 0 var(--spacing-sm) 0;
    transition: all var(--transition-base);
}

.coverage-step:hover .coverage-step-title {
    color: #ec4899;
}

/* Coverage Step Description */
.coverage-step-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Coverage Note Box */
.coverage-note {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: var(--spacing-lg) var(--spacing-xl);
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease-out 0.6s both;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-note p {
    color: #d1d5db;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .subject-coverage {
        padding: 60px var(--spacing-md) !important;
    }

    .coverage-steps {
        gap: var(--spacing-sm);
    }

    .coverage-step {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .coverage-step-title {
        font-size: 0.95rem;
    }

    .coverage-step:hover {
        transform: translateX(4px);
    }
}
