/**=====================
    Premium Customer Services Section
==========================**/

/* Enhanced Service Section with Premium Styling */
.service-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(216, 113, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 111, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-section .container {
    position: relative;
    z-index: 1;
}

/* Premium Service Card Wrapper */
.service-section .service-wrap {
    display: flex;
    align-items: center;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 113, 38, 0.08);
    height: 100%;
}

/* Glassmorphism Effect on Hover */
.service-section .service-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 113, 38, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-section .service-wrap:hover::before {
    left: 100%;
}

.service-section .service-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(216, 113, 38, 0.15);
    border-color: rgba(216, 113, 38, 0.2);
}

/* Icon Container with Premium Styling */
.service-section .service-wrap .service-icon {
    position: relative;
    margin-right: 25px;
    flex-shrink: 0;
}

[dir="rtl"] .service-section .service-wrap .service-icon {
    margin-right: 0;
    margin-left: 25px;
}

.service-section .service-wrap .service-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(216, 113, 38, 0.1) 0%, rgba(255, 111, 0, 0.1) 100%);
    border-radius: 18px;
    position: relative;
    transition: all 0.4s ease;
    color: #d87126;
    font-size: 32px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Icon Glow Effect */
.service-section .service-wrap .service-icon i::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d87126 0%, #ff6f00 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-section .service-wrap:hover .service-icon i::before {
    opacity: 0.15;
}

.service-section .service-wrap:hover .service-icon i {
    transform: scale(1.08) rotate(5deg);
    background: linear-gradient(135deg, rgba(216, 113, 38, 0.15) 0%, rgba(255, 111, 0, 0.15) 100%);
}

/* Content Styling */
.service-section .service-wrap .service-content {
    flex: 1;
}

.service-section .service-wrap .service-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-section .service-wrap:hover .service-content h3 {
    color: #d87126;
}

.service-section .service-wrap .service-content span {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    display: block;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .service-section {
        padding: 60px 0;
    }

    .service-section .service-wrap {
        padding: 28px 24px;
    }

    .service-section .service-wrap .service-icon i {
        width: 60px;
        height: 60px;
        font-size: 42px !important;
    }

    .service-section .service-wrap .service-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .service-section .service-wrap .service-content span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .service-section {
        padding: 50px 0;
    }

    .service-section .service-wrap {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .service-section .service-wrap .service-icon {
        margin-right: 20px;
    }

    [dir="rtl"] .service-section .service-wrap .service-icon {
        margin-left: 20px;
    }

    .service-section .service-wrap .service-icon i {
        width: 55px;
        height: 55px;
        font-size: 38px !important;
        border-radius: 14px;
    }

    .service-section .service-wrap .service-content h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .service-section .service-wrap .service-content span {
        font-size: 12.5px;
    }
}

@media (max-width: 575px) {
    .service-section {
        padding: 40px 0;
    }

    .service-section .service-wrap {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .service-section .service-wrap .service-icon i {
        width: 50px;
        height: 50px;
        font-size: 34px !important;
        border-radius: 12px;
    }

    .service-section .service-wrap .service-content h3 {
        font-size: 15px;
    }

    .service-section .service-wrap .service-content span {
        font-size: 12px;
    }
}

/* Animation on Page Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-section .service-wrap {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-section .row>div:nth-child(1) .service-wrap {
    animation-delay: 0.1s;
}

.service-section .row>div:nth-child(2) .service-wrap {
    animation-delay: 0.2s;
}

.service-section .row>div:nth-child(3) .service-wrap {
    animation-delay: 0.3s;
}

.service-section .row>div:nth-child(4) .service-wrap {
    animation-delay: 0.4s;
}
