﻿/*==========================
        HERO
===========================*/

.services-hero {
    position: relative;
    background: url('/images/services/hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 25, .72);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 70px;
}

.services-hero {
    min-height: 100vh;
    background-image: linear-gradient( to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65) ), url('/images/sevices_header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-content small {
        color: #F2B52A;
        font-size: 15px;
        letter-spacing: 3px;
        font-weight: 700;
    }

    .hero-content h1 {
        margin-top: 20px;
        font-size: 72px;
        line-height: 1.2;
        font-weight: 900;
    }

        .hero-content h1 span {
            display: block;
            color: #F2B52A;
        }

    .hero-content p {
        margin-top: 30px;
        color: #d8d8d8;
        line-height: 2.2;
        font-size: 19px;
        max-width: 520px;
    }

.hero-buttons {
    margin-top: 45px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #F2B52A;
    color: #12284a;
    padding: 18px 35px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

    .btn-call img {
        width: 22px;
        height: 22px;
    }

    .btn-call:hover {
        background: white;
        color: #12284a;
        transform: translateY(-5px);
    }

.hero-features {
    position: relative;
    z-index: 2;
    padding-bottom: 45px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 22px;
    transition: .35s;
}

    .hero-feature img {
        width: 48px;
        height: 48px;
    }

    .hero-feature h5 {
        color: white;
        margin-bottom: 8px;
        font-size: 20px;
    }

    .hero-feature span {
        color: #cfcfcf;
        font-size: 15px;
    }

    .hero-feature:hover {
        transform: translateY(-8px);
        border-color: #F2B52A;
        background: rgba(255,255,255,.10);
    }

/*=====================================
        SERVICES GRID
======================================*/

.services-grid {
    padding: 110px 0;
    background: #081320;
}

    .services-grid .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

        .services-grid .section-title small {
            color: #F2B52A;
            font-weight: 700;
            letter-spacing: 3px;
        }

        .services-grid .section-title h2 {
            margin-top: 15px;
            color: white;
            font-size: 46px;
            font-weight: 800;
        }

        .services-grid .section-title span {
            display: block;
            width: 75px;
            height: 4px;
            background: #F2B52A;
            margin: 20px auto 0;
            border-radius: 50px;
        }

.service-box {
    position: relative;
    background: linear-gradient(180deg,#122238,#0d1a2c);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 45px 35px;
    height: 100%;
    text-align: center;
    transition: .35s;
    overflow: hidden;
}

    .service-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
        transition: .8s;
    }

    .service-box:hover::before {
        left: 100%;
    }

    .service-box:hover {
        transform: translateY(-12px);
        border-color: #F2B52A;
        box-shadow: 0 25px 60px rgba(0,0,0,.35);
    }

.icon-box {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(242,181,42,.08);
    border: 1px solid rgba(242,181,42,.25);
    margin-bottom: 30px;
    transition: .35s;
}

    .icon-box img {
        width: 54px;
        height: 54px;
        transition: .35s;
    }

.service-box:hover .icon-box {
    background: #F2B52A;
}

    .service-box:hover .icon-box img {
        filter: brightness(0);
        transform: scale(1.12);
    }

.service-box h4 {
    color: white;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-box p {
    color: #bfc8d4;
    line-height: 2;
    margin: 0;
    font-size: 16px;
}

/*=====================================
        CONTACT SECTION
======================================*/

.contact-service {
    padding: 110px 0;
    background: #081320;
}

.contact-card {
    background: linear-gradient(180deg,#122238,#0d1a2c);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    padding: 70px 60px;
}

    .contact-content small {
        color: #F2B52A;
        letter-spacing: 3px;
        font-weight: 700;
    }

    .contact-content h2 {
        margin-top: 18px;
        color: white;
        font-size: 46px;
        font-weight: 800;
    }

    .contact-content span {
        display: block;
        width: 70px;
        height: 4px;
        background: #F2B52A;
        margin: 18px 0 30px;
        border-radius: 50px;
    }

    .contact-content p {
        color: #C7CFDA;
        line-height: 2.2;
        font-size: 17px;
        margin-bottom: 40px;
    }

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .contact-item img {
        width: 26px;
        height: 26px;
    }

    .contact-item h5 {
        color: white;
        margin-bottom: 6px;
        font-size: 18px;
    }

    .contact-item span {
        background: none;
        width: auto;
        height: auto;
        margin: 0;
        color: #d6d6d6;
    }

.contact-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #F2B52A;
    color: #12284a;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 14px;
    font-weight: 700;
    transition: .35s;
}

    .contact-btn:hover {
        background: white;
        color: #12284a;
        transform: translateY(-5px);
    }