/* =============================================
   SERVICES PAGE CSS - Blackwatch Security
   ============================================= */

.services-section {
    padding: 70px 0 90px;
    background: var(--light-gray);
}

.services-section .section-title {
    margin-bottom: 36px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 90px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition);
}

.service-item:hover {
    transform: translateY(-6px);
}

.service-circle-img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
    box-shadow: var(--shadow);
}

.service-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-circle-img img {
    transform: scale(1.08);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0;
    color: #000;
}

/* ---- Service Detail Sections ---- */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-section:nth-child(even) {
    background: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.service-detail-section:nth-child(even) .service-detail-text {
    order: 2;
}

.service-detail-section:nth-child(even) .service-detail-img {
    order: 1;
}

.service-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.service-detail-text p {
    color: var(--gray);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.service-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

.service-feature-row i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Service Operations Section ---- */
.services-ops-section {
    background: var(--light-gray);
    padding: 80px 0 30px;
}

.services-ops-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
    margin-bottom: 62px;
}

.services-ops-row:last-child {
    margin-bottom: 0;
}

.services-ops-row--reverse .services-ops-image {
    order: 1;
}

.services-ops-row--reverse .services-ops-text {
    order: 2;
}

.services-ops-image img {
    width: 100%;
    max-width: 440px;
    height: 275px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.services-ops-text {
    text-align: center;
}

.services-ops-text h2 {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.services-ops-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000;
    font-weight: 700;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-section:nth-child(even) .service-detail-text,
    .service-detail-section:nth-child(even) .service-detail-img {
        order: unset;
    }

    .services-ops-row {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 50px;
    }

    .services-ops-row--reverse .services-ops-image,
    .services-ops-row--reverse .services-ops-text {
        order: unset;
    }

    .services-ops-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0 65px;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-circle-img {
        width: 180px;
        height: 180px;
    }

    .services-ops-section {
        padding: 56px 0 20px;
    }

    .services-ops-row {
        gap: 24px;
        margin-bottom: 40px;
    }

    .services-ops-text h2 {
        font-size: 1.7rem;
        margin-bottom: 14px;
    }

    .services-ops-text p {
        font-size: 0.88rem;
        line-height: 1.7;
        font-weight: 600;
    }

    .services-ops-image img {
        height: 230px;
    }
}