/*
 * Purpose: Stylesheet for individual service detail pages
 * Author: AI Assistant
 * Last Modified: 2024
 * Description: Styles for detailed service pages with consistent layout
 */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, #2d5a5a 0%, #1a4040 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

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

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.6;
}

/* Service Overview */
.service-overview {
    padding: 6rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #2d5a5a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.key-benefits {
    margin-top: 2rem;
}

.key-benefits h3 {
    font-size: 1.5rem;
    color: #2d5a5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.key-benefits ul {
    list-style: none;
}

.key-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.key-benefits li i {
    color: #2d5a5a;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Overview Stats */
.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #2d5a5a 0%, #1a4040 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 90, 90, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Service Details */
.service-details {
    padding: 6rem 0;
    background: #f8fafa;
}

.service-details h2 {
    font-size: 2.5rem;
    color: #2d5a5a;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.service-sections {
    display: grid;
    gap: 3rem;
}

.service-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a5a 0%, #1a4040 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.section-content h3 {
    font-size: 1.8rem;
    color: #2d5a5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-content ul {
    list-style: none;
}

.section-content li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.section-content li:before {
    content: '•';
    color: #2d5a5a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Success Metrics */
.success-metrics {
    padding: 6rem 0;
    background: white;
}

.success-metrics h2 {
    font-size: 2.5rem;
    color: #2d5a5a;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.metric-item {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafa;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5a5a 0%, #1a4040 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.metric-item h3 {
    font-size: 1.3rem;
    color: #2d5a5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a5a;
    margin-bottom: 1rem;
}

.metric-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #f8fafa;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #2d5a5a;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5a5a 0%, #1a4040 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #2d5a5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section Updates */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-card {
        flex: 1;
        margin: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-overview,
    .service-details,
    .success-metrics,
    .process-section {
        padding: 4rem 0;
    }
    
    .service-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
    }
    
    .section-icon {
        margin: 0 auto;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        margin: 0;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .overview-content h2,
    .service-details h2,
    .success-metrics h2,
    .process-section h2 {
        font-size: 2rem;
    }
    
    .service-section {
        padding: 1.5rem;
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .metric-item {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .service-hero {
        background: white;
        color: black;
        padding: 2rem 0;
    }
    
    .cta-section {
        display: none;
    }
    
    .service-section:hover {
        transform: none;
    }
}