/* Service Pages Specific Styles */

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Service Overview */
.service-overview {
    padding: 100px 0;
}

.service-overview h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 40px;
}

/* Ant Types / Service Types Grid */
.ant-types,
.service-types {
    background: #f8fafc;
    padding: 80px 0;
}

.ant-types-grid,
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ant-type-card,
.service-type-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ant-type-card:hover,
.service-type-card:hover {
    transform: translateY(-5px);
}

.ant-icon,
.service-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ant-icon i,
.service-type-icon i {
    font-size: 30px;
    color: white;
}

.ant-type-card h3,
.service-type-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.ant-type-card p,
.service-type-card p {
    color: #6b7280;
}

/* Treatment Process */
.treatment-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Service Section */
.why-choose-service {
    background: #f8fafc;
    padding: 100px 0;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: #374151;
}

.benefits-list li i {
    color: #10b981;
    font-size: 18px;
    width: 20px;
}

.service-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Service Stats */
.service-stats {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #60a5fa;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.15);
}

.area-item h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 5px;
}

.area-item p {
    color: #6b7280;
    font-size: 14px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.field-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

/* Emergency Service Banner */
.emergency-banner {
    background: #ef4444;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
}

.emergency-banner i {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Adjustments for Service Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .service-overview {
        padding: 60px 0;
    }
    
    .service-overview h2 {
        font-size: 28px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-list li {
        font-size: 15px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form {
        padding: 25px;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 24px;
    }
    
    .service-overview h2 {
        font-size: 24px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
}