﻿/* --- Premium Services Section --- */
.premium-services-area {
    padding: 100px 0;
    background-color: #f8fafc;
    direction: rtl;
    overflow: hidden;
    font-family: inherit;
}

/* Section Title */
.premium-section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .premium-section-title .subtitle {
        display: inline-block;
        color: #007bff;
        background: rgba(0, 123, 255, 0.1);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .premium-section-title h2 {
        font-size: 34px;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 20px;
    }

        .premium-section-title h2 span {
            color: #007bff;
        }

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    margin: 0 auto;
    border-radius: 2px;
}

/* Service Cards */
.premium-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

    .premium-service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0, 123, 255, 0.1);
        border-color: rgba(0, 123, 255, 0.1);
    }

/* Icon Styling */
.card-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 25px;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.premium-service-card:hover .card-icon-wrapper {
    transform: rotate(0deg) scale(1.1);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
}

.icon-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.premium-service-card:hover .icon-bg-glow {
    opacity: 0.1;
}

.card-icon-wrapper i {
    position: relative;
    z-index: 2;
    display: flex;
}

.card-icon-wrapper img {
    width: 45px;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.premium-service-card:hover .card-icon-wrapper img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Text Content */
.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.premium-service-card:hover .card-content h3 {
    color: #007bff;
}

.card-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    text-align-last: center;
}

/* Bottom Decorative Line */
.card-footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.premium-service-card:hover .card-footer-decoration {
    transform: scaleX(1);
    transform-origin: left;
}

/* Native Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal-up.active {
        opacity: 1;
        transform: translateY(0);
    }
