
/* ==========================================
   NT CORPORATE SOLUTIONS
   INDUSTRIES PAGE
========================================== */

/* ==========================================
   PAGE VARIABLES
========================================== */

.industries-page{
    --industry-navy:#081b3a;
    --industry-navy-light:#102d5f;
    --industry-gold:#d4af37;
    --industry-gold-dark:#bd9627;
    --industry-white:#ffffff;
    --industry-light:#f8f9fc;
    --industry-text:#555f6d;
    --industry-muted:#667085;
    --industry-border:#e5e9f0;
    --industry-shadow:0 12px 35px rgba(8,27,58,.08);
    --industry-shadow-hover:0 22px 45px rgba(8,27,58,.14);
}

/* ==========================================
   HERO
========================================== */

.industries-page .industries-hero{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:center;
    padding:150px 0 110px;
    background:
        linear-gradient(
            90deg,
            rgba(8,27,58,.96) 0%,
            rgba(8,27,58,.88) 55%,
            rgba(8,27,58,.72) 100%
        ),
        url("../images/industries-banner.jpg") center/cover no-repeat;
    overflow:hidden;
}

.industries-page .industries-hero::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-240px;
    width:520px;
    height:520px;
    border:1px solid rgba(212,175,55,.22);
    border-radius:50%;
    pointer-events:none;
}

.industries-page .industries-hero .container{
    position:relative;
    z-index:1;
}

.industries-page .hero-content{
    max-width:850px;
}

.industries-page .hero-label,
.industries-page .section-kicker,
.industries-page .section-title > span{
    display:inline-block;
    margin-bottom:18px;
    color:var(--industry-gold);
    font-size:.78rem;
    font-weight:800;
    line-height:1.4;
    letter-spacing:2px;
    text-transform:uppercase;
}

.industries-page .industries-hero h1{
    max-width:900px;
    margin-bottom:24px;
    color:var(--industry-white);
    font-size:clamp(2.6rem,5vw,4.5rem);
    font-weight:800;
    line-height:1.08;
}

.industries-page .industries-hero p{
    max-width:780px;
    margin-bottom:38px;
    color:#e3e9f1;
    font-size:1.12rem;
    line-height:1.85;
}

.industries-page .hero-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.industries-page .industries-hero .btn-outline{
    border-color:var(--industry-white);
    color:var(--industry-white);
}

.industries-page .industries-hero .btn-outline:hover{
    background:var(--industry-white);
    color:var(--industry-navy);
}

/* ==========================================
   SECTION TITLES
========================================== */

.industries-page .section-title{
    max-width:850px;
    margin:0 auto 58px;
    text-align:center;
}

.industries-page .section-title h2,
.industries-page .section-copy h2,
.industries-page .value-heading h2{
    margin-bottom:18px;
    color:var(--industry-navy);
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    line-height:1.18;
}

.industries-page .section-title p,
.industries-page .section-copy p{
    color:var(--industry-muted);
    line-height:1.85;
}

/* ==========================================
   INTRODUCTION
========================================== */

.industries-page .industries-intro{
    background:var(--industry-light);
}

.industries-page .industry-overview-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.industries-page .overview-card{
    position:relative;
    min-height:285px;
    padding:42px 34px 36px;
    background:var(--industry-white);
    border:1px solid var(--industry-border);
    border-radius:22px;
    box-shadow:var(--industry-shadow);
    overflow:hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.industries-page .overview-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--industry-gold);
}

.industries-page .overview-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.55);
    box-shadow:var(--industry-shadow-hover);
}

.industries-page .overview-number{
    display:block;
    margin-bottom:32px;
    color:rgba(8,27,58,.12);
    font-size:4rem;
    font-weight:800;
    line-height:1;
}

.industries-page .overview-card h3{
    margin-bottom:16px;
    color:var(--industry-navy);
    font-size:1.4rem;
}

.industries-page .overview-card p{
    color:var(--industry-muted);
    line-height:1.75;
}

/* ==========================================
   INDUSTRIES SECTION
========================================== */

.industries-page .industries-section{
    background:var(--industry-white);
}

.industries-page .section-heading-row{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    gap:60px;
    align-items:end;
    margin-bottom:60px;
}

.industries-page .section-copy{
    max-width:720px;
}

.industries-page .section-heading-row > p{
    color:var(--industry-muted);
    line-height:1.85;
}

.industries-page .industry-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.industries-page .industry-card{
    position:relative;
    height:100%;
    padding:36px 34px;
    background:var(--industry-white);
    border:1px solid var(--industry-border);
    border-radius:20px;
    box-shadow:var(--industry-shadow);
    overflow:hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.industries-page .industry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--industry-gold);
}

.industries-page .industry-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.5);
    box-shadow:var(--industry-shadow-hover);
}

.industries-page .industry-number{
    display:block;
    margin-bottom:22px;
    color:var(--industry-gold);
    font-size:.8rem;
    font-weight:800;
    letter-spacing:1.5px;
}

.industries-page .industry-card h3{
    margin-bottom:15px;
    color:var(--industry-navy);
    font-size:1.32rem;
    line-height:1.3;
}

.industries-page .industry-card p{
    margin-bottom:22px;
    color:var(--industry-muted);
    line-height:1.75;
}

.industries-page .industry-card ul{
    display:grid;
    gap:10px;
}

.industries-page .industry-card li{
    position:relative;
    padding-left:24px;
    color:#4f5968;
    line-height:1.6;
}

.industries-page .industry-card li::before{
    content:"";
    position:absolute;
    left:0;
    top:.65em;
    width:7px;
    height:7px;
    background:var(--industry-gold);
    border-radius:50%;
}

/* ==========================================
   SERVICE PILLARS
========================================== */

.industries-page .industry-pillars{
    background:var(--industry-light);
}

.industries-page .pillar-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.industries-page .pillar-card{
    position:relative;
    padding:42px 36px;
    background:var(--industry-white);
    border:1px solid var(--industry-border);
    border-radius:22px;
    box-shadow:var(--industry-shadow);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.industries-page .pillar-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.5);
    box-shadow:var(--industry-shadow-hover);
}

.industries-page .pillar-label{
    display:inline-block;
    margin-bottom:26px;
    padding:8px 14px;
    color:var(--industry-gold-dark);
    background:rgba(212,175,55,.12);
    border-radius:50px;
    font-size:.74rem;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.industries-page .pillar-card h3{
    margin-bottom:15px;
    color:var(--industry-navy);
    font-size:1.8rem;
}

.industries-page .pillar-card p{
    margin-bottom:24px;
    color:var(--industry-muted);
    line-height:1.8;
}

.industries-page .text-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--industry-navy);
    font-weight:700;
    transition:.3s ease;
}

.industries-page .text-link::after{
    content:"→";
    color:var(--industry-gold);
    transition:transform .3s ease;
}

.industries-page .text-link:hover{
    color:var(--industry-gold-dark);
}

.industries-page .text-link:hover::after{
    transform:translateX(5px);
}

/* ==========================================
   VALUE AND STATS SECTION
========================================== */

.industries-page .industry-value{
    background:
        linear-gradient(
            135deg,
            var(--industry-navy),
            var(--industry-navy-light)
        );
}

.industries-page .value-heading{
    max-width:800px;
    margin:0 auto 55px;
    text-align:center;
}

.industries-page .value-heading h2{
    color:var(--industry-white);
}

.industries-page .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

.industries-page .stat{
    padding:38px 28px;
    text-align:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    backdrop-filter:blur(8px);
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.industries-page .stat:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.1);
    border-color:rgba(212,175,55,.45);
}

.industries-page .stat > span{
    display:block;
    margin-bottom:20px;
    color:rgba(255,255,255,.3);
    font-size:2rem;
    font-weight:800;
}

.industries-page .stat h3{
    margin-bottom:10px;
    color:var(--industry-gold);
    font-size:1.45rem;
}

.industries-page .stat p{
    color:#e1e8f1;
    line-height:1.65;
}

/* ==========================================
   CALL TO ACTION
========================================== */

.industries-page .cta{
    position:relative;
    padding:100px 0;
    text-align:center;
    background:
        linear-gradient(
            135deg,
            #06152d,
            var(--industry-navy-light)
        );
    overflow:hidden;
}

.industries-page .cta::before{
    content:"";
    position:absolute;
    left:-190px;
    bottom:-270px;
    width:520px;
    height:520px;
    border:1px solid rgba(212,175,55,.18);
    border-radius:50%;
}

.industries-page .cta .container{
    position:relative;
    z-index:1;
}

.industries-page .cta h2{
    margin-bottom:20px;
    color:var(--industry-white);
    font-size:clamp(2rem,4vw,3.2rem);
}

.industries-page .cta p{
    max-width:820px;
    margin:0 auto 34px;
    color:#dce4ef;
    line-height:1.85;
}

.industries-page .cta-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.industries-page .cta .btn-outline{
    border-color:var(--industry-white);
    color:var(--industry-white);
}

.industries-page .cta .btn-outline:hover{
    background:var(--industry-white);
    color:var(--industry-navy);
}

/* ==========================================
   ACCESSIBILITY
========================================== */

.industries-page a:focus-visible{
    outline:3px solid var(--industry-gold);
    outline-offset:4px;
}

.industries-page section[id]{
    scroll-margin-top:100px;
}

/* ==========================================
   LARGE TABLET
========================================== */

@media(max-width:1100px){

    .industries-page .industry-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .industries-page .stats-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

    .industries-page .industries-hero{
        min-height:570px;
        padding:130px 0 95px;
    }

    .industries-page .industry-overview-grid,
    .industries-page .pillar-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .industries-page .section-heading-row{
        grid-template-columns:1fr;
        gap:25px;
        align-items:start;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .industries-page .industries-hero{
        min-height:auto;
        padding:115px 0 80px;
        text-align:center;
        background-position:60% center;
    }

    .industries-page .hero-content{
        margin:0 auto;
    }

    .industries-page .industries-hero p{
        font-size:1rem;
    }

    .industries-page .hero-buttons,
    .industries-page .cta-buttons{
        justify-content:center;
    }

    .industries-page .hero-buttons .btn,
    .industries-page .cta-buttons .btn{
        width:100%;
        max-width:360px;
    }

    .industries-page .industry-overview-grid,
    .industries-page .industry-grid,
    .industries-page .pillar-grid,
    .industries-page .stats-grid{
        grid-template-columns:1fr;
    }

    .industries-page .overview-card{
        min-height:auto;
    }

    .industries-page .overview-card,
    .industries-page .industry-card,
    .industries-page .pillar-card,
    .industries-page .stat{
        padding:28px;
    }

    .industries-page .cta{
        padding:75px 0;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .industries-page .industries-hero{
        padding:105px 0 70px;
    }

    .industries-page .overview-card,
    .industries-page .industry-card,
    .industries-page .pillar-card,
    .industries-page .stat{
        padding:24px;
        border-radius:17px;
    }

    .industries-page .overview-number{
        margin-bottom:24px;
        font-size:3.2rem;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media(prefers-reduced-motion:reduce){

    .industries-page *,
    .industries-page *::before,
    .industries-page *::after{
        scroll-behavior:auto !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }

}
