/* ===============================
   SERVICE PAGE DESIGN
================================= */

.service-intro-section,
.benefits-section,
.strategy-section,
.social-services-section,
.process-section {
    padding: 100px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.reverse-grid {
    direction: rtl;
}

.reverse-grid .service-content {
    direction: ltr;
}

.section-badge {
    display: inline-block;
    background: rgba(246, 142, 31, 0.1);
    color: #F68E1F;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-content h2,
.section-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #273578;
    margin-bottom: 24px;
}

.service-content p,
.section-heading p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 17px;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: #273578;
}

.service-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

.btn-outline {
    border: 2px solid #273578;
    color: #273578;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #273578;
    color: #fff;
}

/* BENEFITS */

.benefits-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 42px;
    color: #F68E1F;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #273578;
    margin-bottom: 15px;
}

/* STRATEGY */

.strategy-points {
    margin-top: 30px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.point-item i {
    color: #F68E1F;
}

/* SERVICES BOX */

.services-box-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box {
    background: #273578;
    color: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease;
}

.service-box:hover {
    background: #F68E1F;
    transform: translateY(-5px);
}

/* PROCESS */

.process-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: #F68E1F;
}

.process-card h3 {
    color: #273578;
    margin-bottom: 15px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .service-grid,
    .benefits-grid,
    .services-box-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-content h2,
    .section-heading h2 {
        font-size: 34px;
    }

    .service-buttons {
        flex-direction: column;
    }
}

/* =========================
   SERVICE SUB PAGES NAVBAR
========================= */

header.scrolled .nav-link,
header.scrolled .dropdown-toggle,
header.scrolled .dropdown-menu li a {
    color: var(--white) !important;
}

header.scrolled .nav-link:hover,
header.scrolled .dropdown-toggle:hover,
header.scrolled .dropdown-menu li a:hover {
    color: var(--accent) !important;
}

/* MOBILE MENU */

@media(max-width:768px){

    .nav-menu{
        background: var(--primary);
    }

    .nav-menu .nav-link,
    .nav-menu .dropdown-toggle,
    .nav-menu .dropdown-menu li a{
        color: var(--white) !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .dropdown-toggle:hover,
    .nav-menu .dropdown-menu li a:hover{
        color: var(--accent) !important;
    }
}