/* Service Area Banner */
.service-area-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
}

.service-area-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.service-area-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.service-area-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-area-icon {
    font-size: 4rem;
    color: #ffd700;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.service-area-text {
    flex: 1;
    color: white;
}

.service-area-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-area-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.service-area-text strong {
    font-weight: 800;
    color: #ffd700;
    font-size: 1.2rem;
}

.service-area-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #764ba2;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-weight: 900;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1;
}

.service-area-badge span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.3rem;
    opacity: 0.8;
}

/* Service Area Note in Sections */
.service-area-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-area-note i {
    font-size: 1.1rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-area-banner {
        padding: 0.5rem 3%;
    }

    .service-area-content {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        padding: 0.8rem;
        border-radius: 12px;
    }

    .service-area-icon {
        display: none;
    }

    .service-area-text h3 {
        font-size: 1.15rem;
        margin-bottom: 0.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .service-area-text h3::before {
        content: '\f3c5';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #ffd700;
        font-size: 1rem;
    }

    .service-area-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .service-area-text strong {
        font-size: 0.85rem;
    }

    .service-area-badge {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
        border-width: 1px;
        order: 2;
        /* Move it below the button/text */
        margin: 0;
    }

    .service-area-badge span {
        display: inline;
        font-size: 0.6rem;
        margin-left: 3px;
    }

    .service-area-note {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-top: 0.3rem;
    }
}