﻿ 
/* =========================================
       SERVICE HUB
    ========================================= */
:root {
    --service-dark: #091c2e;
    --service-dark-2: #123653;
    --service-orange: #ff6818;
    --service-orange-dark: #e95108;
    --service-bg: #f5f7fa;
    --service-card: #ffffff;
    --service-text: #263746;
    --service-muted: #718096;
    --service-border: #e4e9ef;
}


body {
    background: var(--service-bg);
}


/* =========================================
       BREADCRUMB
    ========================================= */

.service-breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--service-border);
    padding: 14px 0;
    direction: rtl;
}

    .service-breadcrumb .breadcrumb {
        margin: 0;
        background: transparent;
        padding: 0;
        font-size: 13px;
    }

        .service-breadcrumb .breadcrumb a {
            color: var(--service-orange);
            text-decoration: none;
        }

        .service-breadcrumb .breadcrumb .active {
            color: var(--service-muted);
        }


/* =========================================
       HERO
    ========================================= */

.services-hero {
    background: radial-gradient( circle at 85% 20%, rgba(255,104,24,.23), transparent 32% ), linear-gradient( 135deg, #071724 0%, #0b1f33 55%, #143b5b 100% );
    padding: 65px 20px 75px;
    position: relative;
    overflow: hidden;
    direction: rtl;
}


    .services-hero:before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border: 80px solid rgba(255,255,255,.025);
        border-radius: 50%;
        left: -180px;
        top: -180px;
    }


.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: auto;
    text-align: center;
}


.hero-label {
    display: inline-block;
    color: #ff9b6a;
    background: rgba(255,104,24,.13);
    border: 1px solid rgba(255,104,24,.30);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 18px;
}


.services-hero h1 {
    color: #fff !important;
    font-size: 38px !important;
    line-height: 1.7 !important;
    font-weight: 900;
    margin: 0 auto 18px;
}


    .services-hero h1 span {
        color: #ff7830;
    }


.hero-text {
    color: #d2dce5;
    max-width: 850px;
    margin: auto;
    font-size: 17px;
    line-height: 2.1;
}


.hero-actions {
    margin-top: 30px;
}


.hero-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 15px 28px;
    border-radius: 10px;
    background: var(--service-orange);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(255,104,24,.25);
    transition: .25s;
}


    .hero-call:hover {
        background: var(--service-orange-dark);
        transform: translateY(-3px);
    }


/* =========================================
       QUICK INFO
    ========================================= */

.service-quick {
    position: relative;
    margin-top: -35px;
    z-index: 10;
    direction: rtl;
}


.quick-wrapper {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(9,28,46,.11);
    padding: 15px;
}


.quick-service {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    min-height: 75px;
    border-left: 1px solid var(--service-border);
}


    .quick-service:last-child {
        border-left: none;
    }


.quick-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 13px;
    background: #fff0e8;
    color: var(--service-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}


.quick-service strong {
    display: block;
    color: var(--service-dark);
    font-size: 14px;
    margin-bottom: 4px;
}


.quick-service small {
    color: var(--service-muted);
    font-size: 12px;
}


/* =========================================
       INTRO
    ========================================= */

.service-intro {
    padding: 70px 0 45px;
    direction: rtl;
}


    .service-intro h2 {
        text-align: center;
        color: var(--service-dark);
        font-size: 29px;
        font-weight: 900;
        margin: 0 0 15px;
    }


        .service-intro h2 span {
            color: var(--service-orange);
        }


.service-intro-text {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: var(--service-muted);
    line-height: 2;
    font-size: 15px;
}


/* =========================================
       SERVICE GRID
    ========================================= */

.service-list-section {
    padding: 20px 0 70px;
    direction: rtl;
}


.service-card-new {
    background: var(--service-card);
    border: 1px solid var(--service-border);
    border-radius: 18px;
    margin-bottom: 25px;
    overflow: hidden;
    height: calc(100% - 25px);
    box-shadow: 0 5px 22px rgba(9,28,46,.05);
    transition: .3s;
    position: relative;
}


    .service-card-new:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 38px rgba(9,28,46,.12);
        border-color: #ffd0bb;
    }


.service-card-image {
    position: relative;
    overflow: hidden;
    background: #eef2f5;
}


    .service-card-image img {
        width: 100%;
        height: 215px;
        object-fit: cover;
        display: block;
        transition: transform .45s ease;
    }


.service-card-new:hover .service-card-image img {
    transform: scale(1.05);
}


.service-badge {
    position: absolute;
    right: 15px;
    top: 15px;
    background: var(--service-orange);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}


.service-card-body {
    padding: 22px;
}


    .service-card-body h2 {
        font-size: 18px !important;
        line-height: 1.8 !important;
        margin: 0 0 10px;
        font-weight: 800;
    }


        .service-card-body h2 a {
            color: var(--service-dark);
            text-decoration: none;
        }


            .service-card-body h2 a:hover {
                color: var(--service-orange);
            }


    .service-card-body p {
        color: var(--service-muted);
        font-size: 14px;
        line-height: 1.9;
        margin: 0 0 18px;
    }


.service-more {
    color: var(--service-orange);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}


/* =========================================
       SPECIALTY BOX
    ========================================= */

.specialty-section {
    background: #fff;
    padding: 70px 0;
    direction: rtl;
}


.specialty-box {
    background: linear-gradient( 135deg, #091c2e, #123653 );
    border-radius: 22px;
    padding: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
}


    .specialty-box:after {
        content: "24";
        position: absolute;
        left: 20px;
        bottom: -85px;
        font-size: 260px;
        line-height: 1;
        font-weight: 900;
        color: rgba(255,255,255,.025);
    }


    .specialty-box h2 {
        color: #fff;
        font-size: 28px;
        font-weight: 900;
        margin: 0 0 15px;
    }


        .specialty-box h2 span {
            color: #ff7830;
        }


    .specialty-box p {
        color: #c9d5df;
        line-height: 2;
        font-size: 15px;
        max-width: 800px;
    }


.brand-list {
    margin-top: 25px;
}


.brand-tag {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 8px 15px;
    margin: 4px;
    border-radius: 40px;
    font-size: 13px;
}


/* =========================================
       LOCATION
    ========================================= */

.location-section {
    padding: 70px 0;
    direction: rtl;
    background: #f0f3f7;
}


.location-title {
    text-align: center;
    color: var(--service-dark);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}


.location-description {
    max-width: 750px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--service-muted);
    line-height: 2;
}


.location-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(9,28,46,.06);
    text-align: center;
}


.location-tag {
    display: inline-block;
    background: #f6f8fa;
    color: var(--service-dark);
    border: 1px solid var(--service-border);
    padding: 9px 16px;
    margin: 5px;
    border-radius: 50px;
    font-size: 13px;
}


/* =========================================
       PAGINATION
    ========================================= */

.service-pagination {
    text-align: center;
    margin: 20px 0 60px;
    direction: rtl;
}


    .service-pagination a,
    .service-pagination span {
        display: inline-block;
        padding: 9px 14px;
        margin: 3px;
        border-radius: 8px;
        border: 1px solid var(--service-border);
        background: #fff;
        color: var(--service-dark);
        text-decoration: none;
    }


/* =========================================
       MOBILE
    ========================================= */

@media(max-width:767px) {

    .services-hero {
        padding: 45px 18px 60px;
    }


        .services-hero h1 {
            font-size: 26px !important;
        }


    .hero-text {
        font-size: 14px;
    }


    .hero-call {
        width: 100%;
    }


    .service-quick {
        margin-top: -20px;
        padding: 0 10px;
    }


    .quick-service {
        border-left: none;
        border-bottom: 1px solid var(--service-border);
    }


        .quick-service:last-child {
            border-bottom: none;
        }


    .service-intro {
        padding: 50px 15px 30px;
    }


        .service-intro h2 {
            font-size: 23px;
        }


    .service-card-image img {
        height: 200px;
    }


    .specialty-box {
        padding: 30px 22px;
    }


        .specialty-box h2 {
            font-size: 23px;
        }


    .location-title {
        font-size: 23px;
    }
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card-new {
    width: 100%;
    background: #fff;
    border: 1px solid #e3e8ed;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(9,28,46,.06);
    transition: all .3s ease;
    position: relative;
    margin: 0;
}


    .service-card-new:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(9,28,46,.13);
        border-color: #ffcbb5;
    }


/* =========================================
   IMAGE
========================================= */

.service-card-image {
    width: 100%;
    height: 235px;
    position: relative;
    overflow: hidden;
    background: #edf1f4;
}


    .service-card-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .45s ease;
    }


.service-card-new:hover .service-card-image img {
    transform: scale(1.06);
}


/* =========================================
   BADGE
========================================= */

.service-badge {
    position: absolute;
    right: 16px;
    top: 16px;
    background: #ff6818;
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}


/* =========================================
   CARD BODY
========================================= */

.service-card-body {
    padding: 24px;
    direction: rtl;
}


    .service-card-body h2 {
        padding: 0 !important;
        margin: 0 0 12px !important;
        font-size: 19px !important;
        line-height: 1.8 !important;
        font-weight: 800 !important;
    }


        .service-card-body h2 a {
            color: #091c2e;
            text-decoration: none;
        }


            .service-card-body h2 a:hover {
                color: #ff6818;
            }


    .service-card-body p {
        color: #687887;
        font-size: 14px;
        line-height: 2;
        margin: 0 0 20px;
        min-height: 56px;
    }


.service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6818 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}


    .service-more span {
        transition: .2s;
    }


.service-card-new:hover .service-more span {
    transform: translateX(-5px);
}

/* =========================================
   SERVICE LIST
========================================= */

.service-list-section {
    padding: 20px 0 75px;
    direction: rtl;
    background: #f5f7fa;
}


/* =========================================
   SERVICE GRID
========================================= */

.service-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card-new {
    width: 100%;
    background: #fff;
    border: 1px solid #e3e8ed;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(9,28,46,.06);
    transition: all .3s ease;
    position: relative;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}


    .service-card-new:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(9,28,46,.13);
        border-color: #ffcbb5;
    }


/* =========================================
   IMAGE
========================================= */

.service-card-image {
    width: 100%;
    height: 235px;
    position: relative;
    overflow: hidden;
    background: #edf1f4;
    flex-shrink: 0;
}


    .service-card-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .45s ease;
    }


.service-card-new:hover .service-card-image img {
    transform: scale(1.06);
}


/* =========================================
   BADGE
========================================= */

.service-badge {
    position: absolute;
    right: 16px;
    top: 16px;
    background: #ff6818;
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}


/* =========================================
   CARD BODY
========================================= */

.service-card-body {
    padding: 24px;
    direction: rtl;
    display: flex;
    flex-direction: column;
    flex: 1;
}


    .service-card-body h2 {
        padding: 0 !important;
        margin: 0 0 12px !important;
        font-size: 19px !important;
        line-height: 1.8 !important;
        font-weight: 800 !important;
    }


        .service-card-body h2 a {
            color: #091c2e;
            text-decoration: none;
        }


            .service-card-body h2 a:hover {
                color: #ff6818;
            }


    .service-card-body p {
        color: #687887;
        font-size: 14px;
        line-height: 2;
        margin: 0 0 20px;
    }


.service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6818 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    margin-top: auto;
}


    .service-more span {
        transition: .2s;
    }


.service-card-new:hover .service-more span {
    transform: translateX(-5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width:991px) {

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width:600px) {

    .service-list-section {
        padding: 15px 10px 50px;
    }


    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .service-card-image {
        height: 220px;
    }


    .service-card-body {
        padding: 20px;
    }


        .service-card-body h2 {
            font-size: 18px !important;
        }
}

 
