/* ===================================
   SERVICES PAGE - CLEAN MINIMAL DESIGN
   =================================== */

/* Service Detail Section */
/* Service Detail Section */
.services-detail-section {
    padding: 1.5rem 0;
    background: transparent;
}

.services-detail-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-detail {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail:last-child {
    margin-bottom: 0;
}

/* Two Column Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1rem;
}

/* Service Content - Left Column */
.service-detail-content {
    max-width: 100%;
}

/* Reverse Layout - Image on Left */
.service-detail-grid.reverse {
    grid-template-columns: 350px 1fr;
}

/* Service Image - Right Column */
.service-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.service-detail-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.service-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    color: #ffffff;
    padding: 0.3rem 0.875rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-detail-content .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.service-detail-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.service-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0 0.75rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.features-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.feature-box {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.12);
    border-color: rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.feature-box i {
    font-size: 1.25rem;
    color: #0066CC;
    margin-bottom: 0.375rem;
    display: block;
}

.feature-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: grid;
    gap: 0.375rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    font-size: 0.9rem;
    color: var(--darker-gray);
    line-height: 1.5;
}

.check-list li i {
    color: #0066CC;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .features-grid,
    .features-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-detail-section {
        padding: 1rem 0;
    }

    .service-detail {
        margin-bottom: 1.5rem;
    }

    .service-detail-grid {
        gap: 1rem;
    }

    /* Hide images on mobile as requested */
    .service-detail-image {
        display: none;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail h3 {
        font-size: 1.125rem;
    }

    .features-grid,
    .features-grid-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .service-detail-content h2 {
        font-size: 1.375rem;
    }

    .service-detail-content .lead {
        font-size: 1rem;
    }

    .feature-box {
        padding: 1.25rem;
    }
}