/* Services Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0 4rem;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detail {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.service-detail-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.service-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.service-detail-content {
    padding: 3rem;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-offerings {
    margin-bottom: 3rem;
}

.service-offerings h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offering-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.offering-item i {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.offering-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.offering-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-benefits {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.service-benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.service-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-benefits li {
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 8px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.service-benefits li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.service-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Pricing Info Section */
.pricing-info {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.pricing-card h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.pricing-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-cta {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .service-detail-header h2 {
        font-size: 2rem;
    }

    .service-detail-content {
        padding: 2rem;
    }

    .service-intro {
        font-size: 1.1rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card h2 {
        font-size: 2rem;
    }

    .pricing-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
    }

    .service-detail-icon i {
        font-size: 2rem;
    }
}