﻿/* investment-sector.css */
:root {
    --navy: #0D1B3E;
    --navy-mid: #152548;
    --navy-light: #1E3260;
    --gold: #C9A227;
    --gold-bright: #E8BC3C;
    --gold-pale: #F9F0D8;
    --white: #FFFFFF;
    --off-white: #F4F6FA;
    --text-body: #3D4A5C;
    --text-muted: #7A8799;
    --border: #E3E8F0;
    --shadow: 0 4px 24px rgba(13,27,62,.08);
    --shadow-lg: 0 16px 48px rgba(13,27,62,.14);
    --r: 16px;
    --r-sm: 10px;
}
.page-title-area .hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.85;
    max-width: 600px;
    margin: 12px auto 0;
    color: var(--gold, #C9A227) !important; /* Gold color with fallback */
    text-align: center;
    line-height: 1.6;
}

/* Optional: if you want the gold color for part of the title, you can wrap a span inside the Localizer */
.page-title-area h2 span {
    color: var(--gold-bright); /* or the gold color from your theme */
}
.investment-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a4580 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 0;
}

    .investment-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,162,39,.12) 0%, transparent 70%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.hero-inner {
    padding: 80px 0 64px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: .65;
    margin-bottom: 20px;
}

    .breadcrumb i {
        font-size: 14px;
    }

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

    .hero-title span {
        color: var(--gold-bright);
    }

.hero-subtitle {
    font-size: 16px;
    opacity: .75;
    max-width: 520px;
    font-weight: 300;
}

/* Sticky Nav */
.investment-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13,27,62,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,39,.2);
}

.sticky-nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .sticky-nav-inner::-webkit-scrollbar {
        display: none;
    }

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}

    .nav-link i {
        font-size: 16px;
    }

    .nav-link:hover {
        color: var(--gold);
    }

    .nav-link.active {
        color: var(--gold);
        border-bottom-color: var(--gold);
    }

/* Main Content */
.investment-page-body {
    padding: 64px 0 96px;
}

.section-wrap {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
    margin-bottom: 80px;
}

    .section-wrap.visible {
        opacity: 1;
        transform: none;
    }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(201,162,39,.25);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.01em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-intro {
    font-size: 16px;
    color: var(--text-body);
    /*    max-width: 720px;
*/ margin-bottom: 40px;
    line-height: 1.8;
    color: #445566;
    font-size: clamp(.88rem, 2.2vw, .97rem);
    line-height: 1.85;
    padding: 16px 20px;
    background: #F2F5F9;
    border-radius: 10px;
    border-inline-start: 3px solid #C8991F;
    margin-bottom: 24px;
}

/* Overview Lead */
.overview-lead {
    background: var(--white);
    border-radius: var(--r);
    padding: 36px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.overview-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 24px;
    box-shadow: 0 6px 18px rgba(13,27,62,.2);
}

.overview-text {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.85;
}

/* Cards */
.cards-5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.card-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 26px 22px;
    box-shadow: var(--shadow);
    transition: box-shadow .3s, transform .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

    .card-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-bright));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s;
    }

html[dir="rtl"] .card-item::after {
    transform-origin: right;
}

.card-item:hover::after {
    transform: scaleX(1);
}

.card-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(201,162,39,.3);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.card-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 8px;
}

.card-body {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow .3s, transform .3s;
}

    .stat-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
    }

.stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 4px;
}

.stat-note {
    font-size: 11.5px;
    color: var(--text-muted);
}

.stat-card.hero-stat {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-color: transparent;
    color: var(--white);
}

    .stat-card.hero-stat .stat-value {
        color: var(--gold-bright);
    }

    .stat-card.hero-stat .stat-label {
        color: rgba(255,255,255,.8);
    }

    .stat-card.hero-stat .stat-note {
        color: rgba(255,255,255,.5);
    }

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.adv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: box-shadow .3s, border-color .3s;
}

    .adv-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,162,39,.3);
    }

.adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.adv-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 6px;
}

.adv-body {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.fact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: box-shadow .3s, transform .3s;
}

    .fact-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
    }

.fact-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
    line-height: 1;
}

.fact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.fact-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FDI Layout */
.fdi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.donut-svg {
    width: 200px;
    height: 200px;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-body);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-pct {
    margin-left: auto;
    font-weight: 700;
    color: var(--navy);
}

html[dir="rtl"] .legend-pct {
    margin-left: 0;
    margin-right: auto;
}

.fdi-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 14px;
}

.fdi-text {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.investor-banner {
    background: var(--gold-pale);
    border: 1px solid rgba(201,162,39,.3);
    border-radius: var(--r-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

    .investor-banner i {
        color: var(--gold);
        font-size: 20px;
        flex-shrink: 0;
    }

/* Strategy Box */
.strategy-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--r);
    padding: 40px;
    color: var(--white);
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 32px;
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: rgba(201,162,39,.15);
    border: 1px solid rgba(201,162,39,.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    flex-shrink: 0;
}

.strategy-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: 10px;
}

.strategy-body {
    font-size: 14.5px;
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    margin-bottom: 20px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .03em;
}

/* Targets & Progress Bars */
.targets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    padding: 23px;
}

.target-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.target-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.target-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.bar-track {
    height: 8px;
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1) .3s;
}

.section-wrap.visible .bar-fill {
    width: var(--target-w);
}

.bar-caption {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Dividers */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-grid, .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fdi-layout {
        grid-template-columns: 1fr;
    }

    .targets-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .investment-page-body {
        padding: 40px 0 64px;
    }

    .hero-inner {
        padding: 52px 0 44px;
    }

    .sticky-nav-inner {
        padding: 0;
    }

    .stats-grid, .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .overview-lead {
        flex-direction: column;
    }

    .strategy-box {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 420px) {
    .stats-grid, .facts-grid {
        grid-template-columns: 1fr;
    }
}


.investment-page-body {
    padding: 64px 0 96px;
    background: #fff; /* white background */
}


