/* ===== Services Page Styles ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #047857 0%, #0d9488 100%);
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Full */
.services-full {
    background: #f8fafc;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-detail-card {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light);
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-detail-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.15) 0%, rgba(13, 148, 136, 0.15) 100%);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.938rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-features li {
        text-align: left;
    }
}
