/* Climate Risk & Transition Planning Page Specific Styles */

/* Climate Hero Section */
.climate-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
    position: relative;
    overflow: hidden;
}

.climate-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="%23ea580c" 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;
}

.climate-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;
}

.climate-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;
    border: 1px solid #fed7aa;
}

.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, #ea580c, #dc2626);
    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;
    font-size: 0.95rem;
}

/* FIXED: Climate Stats Section */
.climate-stats {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.climate-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.climate-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #dc2626);
}

.climate-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.climate-stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.climate-stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.climate-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.climate-stat-card .stat-label {
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    font-size: 1.1rem;
}

/* Climate Overview Section */
.climate-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: 1.5rem;
    line-height: 1.7;
}

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

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ea580c;
}

.benefit i {
    color: #ea580c;
    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: 0;
    font-size: 0.95rem;
}

.climate-framework {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #fed7aa;
}

.climate-framework h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.framework-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fffbeb;
    border-radius: 8px;
    border-left: 4px solid #ea580c;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 5px;
}

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

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

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

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

.service-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #dc2626);
}

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

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

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

.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: #fed7aa;
    color: #9a3412;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.service-applicability ul {
    color: #64748b;
    padding-left: 1.2rem;
    margin: 0;
}

.service-applicability li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Risk Types Section */
.risk-types {
    padding: 80px 0;
    background: #fef7ed;
}

.risk-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

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

.risk-category:hover {
    transform: translateY(-5px);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fef7ed;
}

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

.risk-header h3 {
    color: #1e293b;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.risk-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.risk-badge.acute {
    background: #dc2626;
}

.risk-badge.chronic {
    background: #ea580c;
}

.risk-badge.policy {
    background: #16a34a;
}

.risk-badge.technology {
    background: #2563eb;
}

.risk-badge.market {
    background: #7c3aed;
}

.risk-badge.reputation {
    background: #db2777;
}

.risk-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.risk-examples h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.risk-examples ul {
    color: #64748b;
    padding-left: 1.2rem;
    margin: 0;
}

.risk-examples li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.risk-examples strong {
    color: #1e293b;
}

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

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 50px;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

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

.step-marker {
    position: relative;
    z-index: 2;
}

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

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ea580c;
}

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

.step-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    color: #64748b;
    padding-left: 1.2rem;
    margin: 0;
}

.step-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

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

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

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

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

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

.industry-risks h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.industry-risks ul {
    color: #64748b;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.industry-risks li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.industry-opportunities h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

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

.opportunity-tags span {
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Tools & Methodologies Section */
.tools-methodologies {
    padding: 80px 0;
    background: #fef7ed;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.tool-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;
    border: 1px solid #fed7aa;
}

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

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

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

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

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-features span {
    background: #fed7aa;
    color: #9a3412;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

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

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

.client-industry {
    display: inline-block;
    background: #ea580c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

.result {
    text-align: center;
}

.result-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.3rem;
}

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

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

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

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

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

.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: #f97316;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .climate-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .industry-grid,
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .climate-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .risk-categories {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .climate-pillars {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .industry-grid,
    .success-grid,
    .climate-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        margin-left: 0;
    }
    
    .success-results {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .climate-stat-card {
        padding: 30px 20px;
    }
    
    .climate-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .climate-stat-card .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}