/* MGC Safety Nets - Service Page Styles */

.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
}

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

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.location {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call, .btn-estimate {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-call {
    background: linear-gradient(135deg, #00cc66, #009944);
    color: white;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.4);
}

.btn-estimate {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.btn-estimate:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: var(--light-color);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.details-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.details-content h3 {
    font-size: 24px;
    color: #667eea;
    margin-top: 35px;
    margin-bottom: 15px;
}

.details-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.features-list, .safety-standards {
    list-style: none;
    padding: 0;
}

.features-list li, .safety-standards li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.6;
}

.features-list li:last-child, .safety-standards li:last-child {
    border-bottom: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.areas-grid span {
    padding: 10px 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.type-card {
    padding: 25px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.type-card h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 18px;
}

.type-card p {
    margin: 0;
    font-size: 14px;
}

.process-list {
    padding-left: 20px;
    line-height: 2;
}

.process-list li {
    margin-bottom: 15px;
    color: #555;
}

.process-list strong {
    color: #667eea;
}

.inline-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.trust-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-card h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.trust-card p {
    margin: 0;
    font-size: 14px;
}

.faq-section {
    margin-top: 20px;
}

.faq-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.faq-item strong {
    color: #1a1a2e;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    margin: 0;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-card h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.sidebar-form textarea {
    resize: vertical;
}

.sidebar-form .submit-btn {
    width: 100%;
    padding: 12px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.contact-info-sidebar p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info-sidebar a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-sidebar a:hover {
    text-decoration: underline;
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 10px;
}

.related-services a {
    display: block;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.related-services a:hover {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 70px 0 40px;
    }
    
    .service-hero h1 {
        font-size: 32px;
    }
    
    .location {
        font-size: 16px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .btn-call, .btn-estimate {
        width: 100%;
        text-align: center;
    }
    
    .details-content {
        padding: 25px;
    }
    
    .details-content h2 {
        font-size: 26px;
    }
    
    .details-content h3 {
        font-size: 20px;
    }
    
    .types-grid, .trust-points {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 24px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .details-content {
        padding: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}