/* Services Page Specific Styles */

.services-page-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for readability */
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    padding-top: 80px;
    /* Add padding to prevent navbar overlap if screen is short */
}

.services-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: capitalize;
}

.services-list-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 55px;
    display: inline-block;
    text-align: left;
}

.services-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--btn-color);
    /* Brand accent color */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .services-list {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 2rem;
    }
}

.services-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-list li::before {
    content: '✓';
    color: var(--btn-color);
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-hero-content {
        padding: 1rem;
        padding-top: 0;
        /* Remove top padding to center vertically */
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .services-hero-title {
        font-size: 2.5rem;
        /* Slightly larger for impact */
        margin-bottom: 0;
        line-height: 1.3;
    }

    /* Hide the services list card on mobile */
    .services-list-container {
        display: none;
    }
}