/* Services Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 0;
    background: #f8fafc;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.service-icon i {
    font-size: 2rem;
    color: #1e40af;
}

.service-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-price {
    text-align: right;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.25rem;
}

.price-note {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-details {
    padding: 2rem;
}

.deliverables h3,
.timeline h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.deliverables ul {
    list-style: none;
    margin-bottom: 2rem;
}

.deliverables li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 1rem;
}

.deliverables li i {
    color: #059669;
    font-size: 0.9rem;
    width: 16px;
}

.timeline {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #1e40af;
}

.timeline p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.timeline i {
    color: #1e40af;
}

.pricing-note {
    background: #fef3c7;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #d97706;
}

.pricing-note p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note i {
    color: #d97706;
}

.service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.maintenance-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tier {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tier h4 {
    color: #1e40af;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier ul {
    list-style: none;
}

.tier li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.tier li i {
    color: #059669;
    font-size: 0.8rem;
    width: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .service-price {
        text-align: center;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .maintenance-tiers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 1.5rem;
    }
    
    .service-header {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-info h2 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
}

