/* ========================================
   SECTOR DETAIL PAGE STYLES
   ======================================== */

:root {
    --primary-green: #058C4C;
    --secondary-navy: #1a2332;
    --text-dark: #1a1a1a;
    --text-gray: #606060;
    --text-light: #808080;
    --border-light: #E8E8E8;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   HERO SECTION
   ======================================== */

.sector_hero_section__ {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 500px;
}

.hero_background__ {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero_background__ img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_overlay__ {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 140, 76, 0.9) 0%, rgba(26, 35, 50, 0.85) 100%);
}

.hero_content__ {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb_nav__ {
    margin-bottom: 32px;
}

.breadcrumb__ {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb_item__ {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb_item__ a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb_item__ a:hover {
    color: var(--white);
}

.breadcrumb_item__.active__ {
    color: var(--white);
    font-weight: 500;
}

.breadcrumb_item__:not(:last-child)::after {
    content: '›';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* Hero Text */
.hero_text__ {
    margin-bottom: 48px;
    max-width: 800px;
}

.hero_title__ {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero_description__ {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Hero Stats */
.hero_stats__ {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat_item__ {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.stat_item__:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat_item__.highlight__ {
    background: rgba(5, 140, 76, 0.3);
    border-color: var(--primary-green);
}

.stat_icon__ {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat_icon__ svg {
    stroke: var(--white);
}

.stat_content__ {
    flex: 1;
}

.stat_value__ {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat_label__ {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   OVERVIEW SECTION
   ======================================== */

.overview_section__ {
    padding: 80px 0;
    background: var(--white);
}

.overview_content__ {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
}

.overview_main__ h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.overview_text__ {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 48px;
}

/* Features Grid */
.features_grid__ {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature_card__ {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.feature_card__:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature_icon__ {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #047a42 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature_icon__ svg {
    stroke: var(--white);
}

.feature_title__ {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature_description__ {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Stats Summary Sidebar */
.stats_summary__ {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.summary_title__ {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.summary_item__ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.summary_item__:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary_item__.highlight__ {
    padding-top: 20px;
    border-top: 2px solid var(--primary-green);
}

.summary_label__ {
    font-size: 14px;
    color: var(--text-gray);
}

.summary_value__ {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.summary_item__.highlight__ .summary_value__ {
    font-size: 32px;
}

/* ========================================
   SECTIONS COMMON STYLES
   ======================================== */

.subsectors_section__,
.browse_section__,
.related_section__,
.insights_section__ {
    padding: 80px 0;
}

.subsectors_section__ {
    background: var(--bg-light);
}

.browse_section__ {
    background: var(--white);
}

.related_section__ {
    background: var(--bg-light);
}

.insights_section__ {
    background: var(--white);
}

.section_header__ {
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section_title__ {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section_description__ {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   SECTORS GRID
   ======================================== */

.sectors_grid__ {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.sector_card__ {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.sector_card__:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card_image__ {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-navy) 100%);
}

.card_image__ img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector_card__:hover .card_image__ img {
    transform: scale(1.05);
}

.placeholder_image__ {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder_image__ svg {
    stroke: rgba(255, 255, 255, 0.5);
}

.card_overlay__ {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.card_content__ {
    padding: 20px;
}

.card_title__ {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card_badge__ {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* ========================================
   BROWSE SECTION
   ======================================== */

.browse_grid__ {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.browse_card__ {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.browse_card__:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.browse_icon__ {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #047a42 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.browse_icon__ svg {
    stroke: var(--white);
}

.browse_content__ {
    flex: 1;
}

.browse_title__ {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.browse_count__ {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.browse_arrow__ {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.5;
    transition: var(--transition);
}

.browse_card__:hover .browse_arrow__ {
    opacity: 1;
    transform: translateX(4px);
}

.browse_arrow__ svg {
    stroke: var(--primary-green);
}

/* ========================================
   INSIGHTS SECTION
   ======================================== */

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

.insight_card__ {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.insight_card__:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.insight_icon__ {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight_icon__ svg {
    stroke: var(--primary-green);
}

.insight_title__ {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.insight_value__ {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.insight_description__ {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.trend__ {
    font-size: 16px;
    margin-left: 8px;
}

.trend__.up__ {
    color: var(--primary-green);
}

.indicator__ {
    font-size: 20px;
    margin-right: 8px;
}

.indicator__.high__ {
    color: var(--primary-green);
}

.indicator__.active__ {
    color: var(--primary-green);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta_section__ {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-navy) 100%);
}

.cta_content__ {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.cta_text__ {
    max-width: 700px;
}

.cta_title__ {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta_description__ {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta_features__ {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.cta_feature__ {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.cta_feature__ svg {
    stroke: var(--white);
    flex-shrink: 0;
}

.cta_buttons__ {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link__.header_join_link__ {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-green);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.link__.header_join_link__:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta_secondary__ {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cta_secondary__:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta_secondary__ svg {
    stroke: var(--white);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .overview_content__ {
        grid-template-columns: 1fr;
    }

    .stats_summary__ {
        position: static;
    }

    .cta_content__ {
        grid-template-columns: 1fr;
    }

    .cta_buttons__ {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero_title__ {
        font-size: 36px;
    }

    .hero_description__ {
        font-size: 16px;
    }

    .hero_stats__ {
        grid-template-columns: 1fr;
    }

    .section_title__ {
        font-size: 28px;
    }

    .features_grid__ {
        grid-template-columns: 1fr;
    }

    .sectors_grid__ {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .browse_grid__ {
        grid-template-columns: 1fr;
    }

    .insights_grid__ {
        grid-template-columns: 1fr;
    }

    .cta_title__ {
        font-size: 28px;
    }

    .cta_buttons__ {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero_title__ {
        font-size: 28px;
    }

    .stat_value__ {
        font-size: 24px;
    }

    .section_title__ {
        font-size: 24px;
    }

    .sectors_grid__ {
        grid-template-columns: 1fr;
    }

    .summary_value__ {
        font-size: 20px;
    }

    .summary_item__.highlight__ .summary_value__ {
        font-size: 24px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
