/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.animated-hero {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animated-card-left {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animated-card-right {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.service-hero-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1.0rem;
    opacity: 0.9;
    color: var(--brand-blue);
    min-width: 0;
}

.back-to-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    color: var(--brand-blue);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.back-to-home-link:hover {
    opacity: 1;
    transform: translateX(-4px);

}

/* ==========================================================================
    CARDS LEFT (INFORMATION) & RIGHT (ASSESSMENT)
   ========================================================================== */
.assessment-section {
    margin-top: 0;
    align-items: stretch;
}

.assessment-info-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.assessment-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
}

.assessment-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.assessment-info-card p:last-of-type {
    margin-bottom: 0;
}

.assessment-process-card {
    padding: 40px;
    background: rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.btn-fee-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    padding: 12px 24px;
    font-size: 1.0rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-fee-schedule:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* ==========================================================================
   CARD RIGHT (ASSESSMENT) LIST
   ========================================================================== */
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateX(5px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.process-item:hover .process-number {
    background: var(--brand-blue);
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 600px) {
    .service-hero-header {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 0px 0;
    }

    .assessment-title {
        font-size: 2.0rem;
    }

    .assessment-description {
        font-size: 1rem;
    }
        
}