/* =========================================================
   INDUSTRIES HERO
========================================================= */

.industry-hero {
    position: relative;
    min-height: 620px;
    height: 70vh;
    max-height: 760px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Overlay */
.industry-hero .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.56) 45%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

/* Hero Content */
.industry-hero .page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 55px 0;
    box-sizing: border-box;
}

/* Eyebrow */
.industry-hero .eyebrow {
    display: block;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* Heading */
.industry-hero h1 {
    color: #ffffff;
    font-size: clamp(52px, 5.4vw, 78px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 800px;
    margin: 0 0 28px;
}

/* Description */
.industry-hero p {
    color: rgba(255, 255, 255, 0.90);
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   INDUSTRY GRID
========================================================= */

.industry-grid {
    padding: 110px 0;
}

.industry-grid .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-grid .card {
    padding: 42px;
    min-height: 280px;
    background: #f4f6f5;
    box-sizing: border-box;
    transition: transform 0.25s ease, background 0.25s ease;
}

.industry-grid .card:hover {
    transform: translateY(-5px);
    background: #eef1f0;
}

.industry-grid .number {
    display: block;
    color: #6c797e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 48px;
}

.industry-grid .card h3 {
    color: #172026;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.industry-grid .card p {
    color: #6c797e;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   INDUSTRY CTA SECTION & BUTTON FIX
========================================================= */

.industry-bottom {
    padding: 100px 0;
    background: #172026;
    color: #ffffff;
}

.industry-bottom h2 {
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
}

.industry-bottom p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 30px;
}

/* White/Gold CTA Button specifically for the dark #172026 section */
.industry-bottom .btn {
    display: inline-flex;
    align-items: center;
    background-color: #071014;
    color: #FFFFFF;
    
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-bottom .btn i {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85em;
    color: #c6a15b;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.industry-bottom .btn:hover {
    background-color: #fce8bd; /* Warm gold accent on hover */
    border-color: #fce8bd;
    color: #172026;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.industry-bottom .btn:hover i {
    transform: translate(3px, -3px);
    color: #172026;
}


/* =========================================================
   GENERAL BUTTON & ICON BASE STYLES
========================================================= */

.btn i {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85em;
    color: #c6a15b;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */

/* Tablet (Max Width: 900px) */
@media (max-width: 900px) {
    .industry-hero {
        min-height: 600px;
    }

    .industry-hero .page-hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .industry-hero h1 {
        font-size: clamp(46px, 8vw, 68px);
    }

    .industry-grid .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        padding: 80px 0;
    }
}

/* Mobile (Max Width: 600px) */
@media (max-width: 600px) {
    .industry-hero {
        min-height: 600px;
        background-position: center;
    }

    .industry-hero .page-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.42)
        );
    }

    .industry-hero .page-hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .industry-hero h1 {
        font-size: 44px;
        line-height: 1;
    }

    .industry-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .industry-grid .cards {
        grid-template-columns: 1fr;
    }

    .industry-grid .card {
        padding: 30px;
        min-height: 240px;
    }

    .industry-grid .number {
        margin-bottom: 35px;
    }

    .industry-bottom {
        padding: 75px 0;
    }
}