/* ==========================================================
   BLACK HARBOR GROUP - SECTORS PAGE
   Advanced Vertical Tab UI and Sector Capabilities
   ========================================================== */

/* ===================================================
   HERO
=================================================== */
.sc-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            to right,
            rgba(11, 17, 26, 0.95) 20%,
            rgba(11, 17, 26, 0.6) 100%
        ),
        url("../images/heroes/sectors.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 130px 0 100px;
}

.sc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, rgba(178, 140, 64, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(178, 140, 64, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(178, 140, 64, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(178, 140, 64, 0.03) 75%);
    background-size: 40px 40px;
    opacity: 0.5;
}

.sc-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.sc-hero .hero-tag {
    display: inline-block;
    background: rgba(178, 140, 64, 0.08);
    border: 1px solid rgba(178, 140, 64, 0.25);
    padding: 7px 22px;
    border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 28px;
}

.sc-hero h1 {
    font-family: "Outfit", sans-serif;
    font-size: 66px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.sc-hero .hero-sub {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.sc-hero .hero-supporting {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sc-hero .hero-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 9px 22px;
    border-radius: 50px;
}

.sc-hero .hero-crumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}
.sc-hero .hero-crumbs a:hover {
    color: var(--gold-primary);
}
.sc-hero .hero-crumbs .sep {
    color: rgba(255, 255, 255, 0.2);
}
.sc-hero .hero-crumbs .cur {
    color: var(--gold-primary);
    font-weight: 600;
}

/* SHARED */
.sc-label {
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.sc-heading {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.sc-heading.dark {
    color: var(--text-dark);
}
.sc-heading.light {
    color: var(--text-dark);
}

/* ===================================================
   OVERVIEW
=================================================== */
.sc-overview {
    padding: 120px 0;
    background: var(--bg-white);
}

.sc-overview .ov-text {
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-slate-dark);
    margin-bottom: 20px;
}

/* ===================================================
   ADVANCED VERTICAL TABS (MAIN SECTOR DISPLAY)
=================================================== */
.sectors-showcase {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.advanced-sector-tabs {
    background: #0b111a;
    border-radius: 20px;
    padding: 20px 15px;
    position: sticky;
    top: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.1);
}

.advanced-sector-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.4s var(--transition-buttery);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
}

.advanced-sector-tabs .nav-link i {
    font-size: 24px;
    transition: all 0.4s ease;
}

.advanced-sector-tabs .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.advanced-sector-tabs .nav-link.active {
    background: linear-gradient(
        135deg,
        rgba(178, 140, 64, 0.15),
        rgba(178, 140, 64, 0.05)
    );
    color: #fff;
    border: 1px solid rgba(178, 140, 64, 0.3);
    box-shadow: 0 10px 25px rgba(178, 140, 64, 0.15);
}

.advanced-sector-tabs .nav-link.active i {
    color: var(--gold-primary);
}

.sector-content-pane {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 30px 80px rgba(var(--rgb-navy), 0.05);
    border: 1px solid rgba(var(--rgb-navy), 0.03);
}

.sector-pane-header {
    border-bottom: 1px solid rgba(var(--rgb-navy), 0.05);
    padding-bottom: 30px;
    /* margin-bottom: 40px; */
}

.sector-pane-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.sector-pane-header h4 {
    font-size: 26px;
    color: var(--gold-primary);
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    margin: 0;
}

.sector-thesis p {
    font-size: 18px;
    color: var(--text-slate-darker);
    line-height: 1.8;
    margin-bottom: 25px;
}

.sector-thesis p:last-child {
    margin-bottom: 0;
}

.sector-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.focus-card {
    background: var(--bg-white);
    border: 1px solid rgba(var(--rgb-navy), 0.04);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.focus-card:hover {
    background: var(--bg-white);
    border-color: rgba(178, 140, 64, 0.2);
    box-shadow: 0 20px 40px rgba(var(--rgb-navy), 0.06);
    transform: translateY(-5px);
}

.focus-card h5 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.focus-card h5::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px rgba(178, 140, 64, 0.5);
}

.focus-card p {
    font-size: 15px;
    color: var(--text-slate-dark);
    line-height: 1.7;
    margin: 0;
}

.quote-card {
    margin-top: 40px;
    padding: 35px 40px;
    background: rgba(178, 140, 64, 0.05);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 16px 16px 0;
}

.quote-card p {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-card span {
    font-size: 14px;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================================
   SECTOR STRATEGY & ADVANTAGE
=================================================== */
.sc-strategy {
    padding: 120px 0;
    background: var(--bg-white);
}

.sc-strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sc-strategy-list li {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.sc-strategy-list li i {
    color: var(--gold-primary);
    font-size: 22px;
}

.sc-cross {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.sc-cross::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(178, 140, 64, 0.05) 0%,
        transparent 70%
    );
    top: -300px;
    right: -200px;
}

/* ===================================================
   INVESTMENT CRITERIA BAR
=================================================== */
.sc-criteria {
    padding: 120px 0;
    background: var(--bg-white);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cr-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(var(--rgb-navy), 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(var(--rgb-navy), 0.03);
}

.cr-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(var(--rgb-navy), 0.08);
    border-color: rgba(178, 140, 64, 0.3);
}

.cr-box i {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.cr-box h5 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cr-box p {
    font-size: 15px;
    color: var(--text-slate);
    margin: 0;
}

/* ===================================================
   WHY BLACK HARBOR
=================================================== */
.sc-advantage {
    padding: 120px 0;
    background: var(--bg-white);
}

.adv-row {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-navy);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.15);
}

.adv-row-cell {
    flex: 1;
    min-width: 200px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.adv-row-cell:last-child {
    border-right: none;
}

.adv-row-cell i {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.adv-row-cell h4 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.adv-row-cell p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


/* ===================================================
   FULL ADVANCED REDESIGN STYLES
   Premium institutional aesthetic (Cinematic, Glass, Editorial)
=================================================== */

/* --- 1. Dashboard Navigation (Vertical Tabs) --- */
.advanced-sector-tabs {
    background: transparent;
    padding-right: 15px;
}
.advanced-sector-tabs .nav-link {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-slate-dark);
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.advanced-sector-tabs .nav-link i {
    font-size: 20px;
    transition: color 0.4s ease;
}
.advanced-sector-tabs .nav-link:hover {
    background: rgba(var(--rgb-navy), 0.03);
    color: var(--text-dark);
    transform: translateX(5px);
}
.advanced-sector-tabs .nav-link.active {
    background: var(--bg-navy) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 15px 35px rgba(var(--rgb-navy), 0.15);
}
.advanced-sector-tabs .nav-link.active i {
    color: var(--gold-primary);
}
.advanced-sector-tabs .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-primary);
}

/* --- 2. Cinematic Hero Banners --- */
.cinematic-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    margin-bottom: 60px;
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.15);
}
.cinematic-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}
.cinematic-hero:hover img {
    transform: scale(1.05);
}
.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--rgb-navy), 0.95) 0%, rgba(var(--rgb-navy), 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    pointer-events: none;
}
.cinematic-overlay h4 {
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: "Outfit", sans-serif;
}
.cinematic-overlay h2 {
    color: var(--text-dark);
    font-size: 48px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 10px 30px rgba(var(--rgb-navy),0.5);
}

/* --- 3. Soft Glass Investment Cards --- */
.sector-focus-grid .focus-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(var(--rgb-navy), 0.03);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.sector-focus-grid .focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    opacity: 0;
}
.sector-focus-grid .focus-card:hover {
    background: var(--bg-white);
    box-shadow: 0 25px 50px rgba(var(--rgb-navy), 0.08);
    transform: translateY(-8px);
    border-color: rgba(178, 140, 64, 0.3);
}
.sector-focus-grid .focus-card:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* --- 4. Checklist Enhancements --- */
.sector-checklist li {
    padding: 12px 0;
}
.sector-checklist li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(178, 140, 64, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 14px;
    margin-right: 5px;
}

/* --- 5. Editorial Overlapping Quote Section --- */
.editorial-quote-section {
    position: relative;
    margin-top: 80px;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.12);
}
.editorial-quote-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.editorial-quote-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(var(--rgb-navy), 0.1);
    border-left: 5px solid var(--gold-primary);
}
.editorial-quote-card p {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}
.editorial-quote-card span {
    font-size: 14px;
    color: var(--gold-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.editorial-quote-desc {
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-slate-dark);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .editorial-quote-image { height: 350px; }
    .editorial-quote-card { position: relative; bottom: auto; left: auto; right: auto; margin: -50px 20px 0; }
    .cinematic-hero { height: 350px; }
    .cinematic-overlay h2 { font-size: 32px; }
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 991px) {
    .sc-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }
    .sector-content-pane {
        padding: 40px 30px;
    }
    .sector-pane-header h2 {
        font-size: 40px;
    }
    .sector-focus-grid {
        grid-template-columns: 1fr;
    }
    .criteria-grid {
        grid-template-columns: 1fr 1fr;
    }
    .adv-row-cell {
        min-width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .advanced-sector-tabs {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .sc-hero {
        padding: 100px 0 80px;
    }
    .sc-hero h1 {
        font-size: 40px;
    }
    .sc-heading {
        font-size: 36px;
    }
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    .adv-row-cell {
        min-width: 100%;
        border-right: none;
    }
}

/* ===================================================
   HERO
=================================================== */
.sc-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            to right,
            rgba(var(--rgb-navy), 0.92) 30%,
            rgba(var(--rgb-navy), 0.4) 100%
        ),
        url("../images/heroes/sectors.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 130px 0 100px;
}

.sc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, rgba(178, 140, 64, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(178, 140, 64, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(178, 140, 64, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(178, 140, 64, 0.03) 75%);
    background-size: 40px 40px;
    opacity: 0.5;
}

.sc-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.sc-hero .hero-tag {
    display: inline-block;
    background: rgba(178, 140, 64, 0.08);
    border: 1px solid rgba(178, 140, 64, 0.25);
    padding: 7px 22px;
    border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 28px;
}

.sc-hero h1 {
    font-family: "Outfit", sans-serif;
    font-size: 66px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.sc-hero .hero-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sc-hero .hero-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 9px 22px;
    border-radius: 50px;
}

.sc-hero .hero-crumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}
.sc-hero .hero-crumbs a:hover {
    color: var(--gold-primary);
}
.sc-hero .hero-crumbs .sep {
    color: rgba(255, 255, 255, 0.2);
}
.sc-hero .hero-crumbs .cur {
    color: var(--gold-primary);
    font-weight: 600;
}

/* SHARED */
.sc-label {
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.sc-heading {
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.sc-heading.dark {
    color: var(--text-dark);
}
.sc-heading.light {
    color: var(--text-dark);
}

/* ===================================================
   OVERVIEW
=================================================== */
.sc-overview {
    padding: 110px 0;
    background: var(--bg-white);
}

.sc-overview .ov-text {
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-slate-dark);
    margin-bottom: 15px;
}

/* ===================================================
   SECTOR GRID NAV
=================================================== */
.sc-grid-nav {
    padding: 0 0 100px;
    background: var(--bg-white);
}

.grid-nav-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-white);
    border: 1px solid rgba(var(--rgb-navy), 0.04);
    border-radius: 14px;
    padding: 22px 26px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none !important;
}

.grid-nav-card .nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(178, 140, 64, 0.08),
        rgba(178, 140, 64, 0.15)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.grid-nav-card .nav-icon i {
    font-size: 20px;
    color: var(--gold-primary);
    transition: all 0.3s;
}

.grid-nav-card h5 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s;
}

.grid-nav-card:hover {
    background: var(--bg-navy);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--rgb-navy), 0.12);
}

.grid-nav-card:hover h5 {
    color: #fff;
}
.grid-nav-card:hover .nav-icon {
    background: var(--gold-primary);
    box-shadow: 0 8px 20px rgba(178, 140, 64, 0.3);
}
.grid-nav-card:hover .nav-icon i {
    color: #fff;
}

/* ===================================================
   INDIVIDUAL SECTOR SECTIONS
=================================================== */
.sector-detail {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sector-detail.bg-white {
    background: var(--bg-white);
}
.sector-detail.bg-light {
    background: var(--bg-white);
}

.sector-detail .sector-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(var(--rgb-navy), 0.1);
}

.sector-detail .sector-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-detail .sector-img-wrap:hover img {
    transform: scale(1.05);
}

.sector-detail .sector-img-wrap .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(var(--rgb-navy), 0.7) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.sector-detail .sector-img-wrap .img-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(178, 140, 64, 0.9);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    z-index: 2;
}

.sector-detail .sector-text h3 {
    font-family: "Outfit", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.sector-detail .sector-text p {
    font-size: 17px;
    color: var(--text-slate-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.sector-detail .focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sector-detail .focus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-slate-darker);
    padding: 10px 14px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.sector-detail .focus-list li:hover {
    background: var(--bg-navy);
    color: #fff;
    transform: translateX(5px);
}

.sector-detail .focus-list li .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-primary);
    flex-shrink: 0;
}

/* ===================================================
   CROSS-SECTOR & INTEGRATED APPROACH
=================================================== */
.sc-cross {
    padding: 110px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.sc-cross::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(178, 140, 64, 0.04) 0%,
        transparent 70%
    );
    top: -200px;
    right: -100px;
}

.cross-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 14px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cross-item .cr-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(178, 140, 64, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.cross-item .cr-icon i {
    font-size: 18px;
    color: var(--gold-primary);
    transition: all 0.3s;
}

.cross-item h5 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.cross-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

.cross-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(178, 140, 64, 0.25);
    transform: translateX(8px);
}

.cross-item:hover .cr-icon {
    background: var(--gold-primary);
    box-shadow: 0 8px 20px rgba(178, 140, 64, 0.3);
}

.cross-item:hover .cr-icon i {
    color: #fff;
}

/* ===================================================
   INVESTMENT CRITERIA BAR
=================================================== */
.sc-criteria {
    padding: 110px 0;
    background: var(--bg-white);
}

.criteria-row {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-navy);
    border-radius: 18px;
    overflow: hidden;
}

.criteria-row .cr-cell {
    flex: 1;
    min-width: 200px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: background 0.4s ease;
}

.criteria-row .cr-cell:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(178, 140, 64, 0.12);
}

.criteria-row .cr-cell:hover {
    background: rgba(178, 140, 64, 0.05);
}

.criteria-row .cr-cell h5 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.criteria-row .cr-cell span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

/* ===================================================
   SECTOR ADVANTAGE
=================================================== */
.sc-advantage {
    padding: 110px 0;
    background: transparent;
}

.adv-card {
    background: var(--bg-white);
    border: 1px solid rgba(var(--rgb-navy), 0.05);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: visible;
}

.adv-card .adv-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), #d4a84e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(178, 140, 64, 0.3);
    transition: all 0.4s ease;
}

.adv-card .adv-badge i {
    font-size: 20px;
    color: #fff;
}

.adv-card h4 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.adv-card p {
    font-size: 15px;
    color: var(--text-slate);
    line-height: 1.7;
    margin: 0;
}

.adv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.08);
    border-color: rgba(178, 140, 64, 0.2);
}

.adv-card:hover .adv-badge {
    transform: translateX(-50%) scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(178, 140, 64, 0.4);
}

/* ===================================================
   SECTOR TAB CONTENT — IMAGE+TEXT SPLIT ROWS
   Beautiful two-column layouts for sector content
=================================================== */

/* --- Thesis intro row (text + image side by side) --- */
.sector-content-pane .sector-thesis.row {
    margin-top: 40px;
    padding: 40px 0;
}

.sector-content-pane .sector-thesis.row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Image-text split rows (Investment Discipline, Value Creation, etc.) --- */
.sector-content-pane .row.align-items-center {
    padding: 50px 0;
    align-items: stretch !important; /* Force equal height for tall text blocks */
}

.sector-content-pane .row.align-items-center > .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Sector content headings --- */
.sector-content-pane h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}

/* --- Checklist: clean single-column list with gold checks --- */
.sector-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-checklist li {
    font-size: 15px;
    color: var(--text-slate-darker);
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid rgba(var(--rgb-navy), 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sector-checklist li:last-child {
    border-bottom: none;
}

.sector-checklist li i {
    color: var(--gold-primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* --- Gold subtitle (e.g. "Our underwriting examines:") --- */
.sector-subtitle {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

/* --- Image containers in split rows --- */
.sector-content-pane .row.align-items-center > .col-lg-6 > div[style*="border-radius"] {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(var(--rgb-navy), 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
    min-height: 400px;
}

.sector-content-pane .row.align-items-center > .col-lg-6 > div[style*="border-radius"] img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sector-content-pane .row.align-items-center > .col-lg-6 > div[style*="border-radius"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(var(--rgb-navy), 0.12);
}

/* --- Quote section rows (bottom sections with border-top) --- */
.sector-content-pane .row[style*="border-top"] {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Quote cards inside rows */
.sector-content-pane .row .quote-card {
    margin-top: 0 !important;
    padding: 30px 35px;
    background: rgba(178, 140, 64, 0.04) !important;
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 20px 20px 0 !important;
    margin-bottom: 25px;
}

.sector-content-pane .row .quote-card p {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.sector-content-pane .row .quote-card span {
    font-size: 13px;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Highlighted closing paragraph (border-left accent) --- */
.sector-content-pane p[style*="border-left: 4px solid"] {
    font-size: 16px !important;
    line-height: 1.7 !important;
    padding: 25px !important;
    background: var(--bg-white) !important;
    border-radius: 0 12px 12px 0 !important;
    margin-top: 20px;
}

/* --- Single column list with arrow icons --- */
.sector-content-pane ul[style*="padding-left: 0"] li[style*="ti-angle-right"] {
    font-size: 15px;
    color: var(--text-slate-darker);
}

/* --- Focus grid margin adjustment --- */
.sector-content-pane .sector-focus-grid {
    margin-top: 25px;
}


/* ===================================================
   FULL ADVANCED REDESIGN STYLES
   Premium institutional aesthetic (Cinematic, Glass, Editorial)
=================================================== */

/* --- 1. Dashboard Navigation (Vertical Tabs) --- */
.advanced-sector-tabs {
    background: transparent;
    padding-right: 15px;
}
.advanced-sector-tabs .nav-link {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-slate-dark);
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.advanced-sector-tabs .nav-link i {
    font-size: 20px;
    transition: color 0.4s ease;
}
.advanced-sector-tabs .nav-link:hover {
    background: rgba(var(--rgb-navy), 0.03);
    color: var(--text-dark);
    transform: translateX(5px);
}
.advanced-sector-tabs .nav-link.active {
    background: var(--bg-navy) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 15px 35px rgba(var(--rgb-navy), 0.15);
}
.advanced-sector-tabs .nav-link.active i {
    color: var(--gold-primary);
}
.advanced-sector-tabs .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-primary);
}

/* --- 2. Cinematic Hero Banners --- */
.cinematic-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    margin-bottom: 60px;
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.15);
}
.cinematic-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}
.cinematic-hero:hover img {
    transform: scale(1.05);
}
.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--rgb-navy), 0.95) 0%, rgba(var(--rgb-navy), 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    pointer-events: none;
}
.cinematic-overlay h4 {
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: "Outfit", sans-serif;
}
.cinematic-overlay h2 {
    color: var(--text-dark);
    font-size: 48px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 10px 30px rgba(var(--rgb-navy),0.5);
}

/* --- 3. Soft Glass Investment Cards --- */
.sector-focus-grid .focus-card {
    background: #202226;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(var(--rgb-navy), 0.03);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.sector-focus-grid .focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    opacity: 0;
}
.sector-focus-grid .focus-card:hover {
    background: var(--bg-white);
    box-shadow: 0 25px 50px rgba(var(--rgb-navy), 0.08);
    transform: translateY(-8px);
    border-color: rgba(178, 140, 64, 0.3);
}
.sector-focus-grid .focus-card:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* --- 4. Checklist Enhancements --- */
.sector-checklist li {
    padding: 12px 0;
}
.sector-checklist li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(178, 140, 64, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 14px;
    margin-right: 5px;
}

/* --- 5. Editorial Overlapping Quote Section --- */
.editorial-quote-section {
    position: relative;
    margin-top: 80px;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.12);
}
.editorial-quote-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.editorial-quote-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(var(--rgb-navy), 0.1);
    border-left: 5px solid var(--gold-primary);
}
.editorial-quote-card p {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}
.editorial-quote-card span {
    font-size: 14px;
    color: var(--gold-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.editorial-quote-desc {
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-slate-dark);
    line-height: 1.8;
}

.sector-highlight-box {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    padding: 25px;
    background: var(--bg-white);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 12px 12px 0;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .editorial-quote-image { height: 350px; }
    .editorial-quote-card { position: relative; bottom: auto; left: auto; right: auto; margin: -50px 20px 0; }
    .cinematic-hero { height: 350px; }
    .cinematic-overlay h2 { font-size: 32px; }
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 991px) {
    .sc-hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }
    .sc-heading {
        font-size: 36px;
    }
    .sector-detail .focus-list {
        grid-template-columns: 1fr;
    }
    .criteria-row {
        flex-direction: column;
    }
    .criteria-row .cr-cell:not(:last-child)::after {
        display: none;
    }
    .sector-detail .sector-img-wrap img {
        height: 280px;
    }

    /* Sector content rows: stack on tablet */
    .sector-content-pane .row.align-items-center {
        padding: 30px 0;
    }

    .sector-content-pane .sector-thesis.row {
        padding: 25px 0;
    }

    .sector-content-pane .row[style*="border-top"] {
        margin-top: 30px;
        padding-top: 30px;
    }

    /* On tablet, revert order so images appear above text */
    .sector-content-pane .row .order-lg-1,
    .sector-content-pane .row .order-lg-2 {
        order: unset !important;
    }
}

@media (max-width: 767px) {
    .sc-hero {
        padding: 100px 0 80px;
    }
    .sc-hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .sc-heading {
        font-size: 30px;
    }
    .sector-detail .sector-text h3 {
        font-size: 28px;
    }
    .sector-detail .sector-img-wrap img {
        height: 220px;
    }

    .sector-content-pane h3 {
        font-size: 24px;
    }

    .sector-focus-grid {
        grid-template-columns: 1fr !important;
    }

    .sector-content-pane .row.align-items-center {
        padding: 20px 0;
    }
}
