/* LCA & EPD Services Page Specific Styles */

/* LCA Hero Section */
.lca-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.lca-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%231e40af" opacity="0.05"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z"/></svg>') no-repeat;
    background-size: cover;
}

.lca-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.lca-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pillar {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.pillar span {
    font-weight: 600;
    color: #1e293b;
}

/* LCA Stats Section */
.lca-stats {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lca-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.lca-stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

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

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* LCA Overview Section */
.lca-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.lca-benefits {
    margin-top: 2.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
}

.benefit i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 1rem;
}

.lca-timeline {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.lca-timeline h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

.timeline-items {
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: #3b82f6;
    border-radius: 50%;
}

.timeline-date {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* LCA Services Section */
.lca-services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-applicability h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-applicability ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-applicability li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.service-applicability li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

/* LCA Process Section */
.lca-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.lca-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 3rem;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.lca-step:hover {
    transform: translateX(10px);
}

.lca-step:last-child {
    margin-bottom: 0;
}

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

.step-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-content li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Industry Applications */
.industry-applications {
    padding: 80px 0;
    background: white;
}

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

.industry-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.industry-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.industry-metrics h4,
.industry-frameworks h4 {
    color: #475569;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.industry-metrics ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.industry-metrics li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.industry-metrics li::before {
    content: '•';
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.framework-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.framework-tags span {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Standards & Compliance */
.standards-compliance {
    padding: 80px 0;
    background: #f8fafc;
}

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

.standard-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.standard-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.standard-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.standard-scope h4 {
    color: #475569;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.standard-scope ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-scope li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.standard-scope li::before {
    content: '•';
    color: #8b5cf6;
    position: absolute;
    left: 0;
}

/* Client Success Stories */
.client-success {
    padding: 80px 0;
    background: white;
}

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

.success-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.client-industry {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-results {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.result {
    text-align: center;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* LCA CTA Section */
.lca-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature i {
    color: #60a5fa;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lca-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .lca-hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .lca-pillars {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .lca-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}