/* =========================================
   TWL DATA - HERO BANNER
========================================= */

#banner {
    background:
        linear-gradient(
            rgba(0,0,0,0.60),
            rgba(0,0,0,0.60)
        ),
        url("../../images/twlev-banner.png");

    background-size: cover;
    background-position: center;

    padding: 10em 2em 8em;

    text-align: center;

    color: #fff;
}

#banner h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5em;
}

#banner p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
}

/* =========================================
   DIVISION HEADER
========================================= */

.division-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 2em;
}

.division-heading img {
    height: 90px;
    width: auto;
}

.division-heading span {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

/* =========================================
   GENERAL CONTENT SECTIONS
========================================= */

.data-section,
.technology-section,
.projects-section,
.industries-section,
.contact-banner {
    margin-bottom: 5em;
}

.data-section h2,
.technology-section h2,
.projects-section h2,
.industries-section h2,
.contact-banner h2 {
    color: #003087;
    font-size: 2.5rem;
    margin-bottom: 1em;
}

.data-section p,
.technology-section p,
.contact-banner p {
    line-height: 1.9;
    font-size: 1.1rem;
}

/* =========================================
   STATS GRID
========================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin: 5em 0;
}

.stat-card {
    position: relative;

    min-height: 320px;

    border-radius: 12px;

    overflow: hidden;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;

    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.55);
}

.stat-content {
    position: relative;
    z-index: 2;

    color: white;

    text-align: center;

    padding: 20px;
}

.stat-content h3 {
    color: #ffb81c;

    font-size: 3.5rem;

    margin-bottom: 10px;
}

.stat-content p {
    font-weight: 600;
}

/* =========================================
   STAT IMAGES
========================================= */

.stat-gas {
    background-image: url("../../images/gas-facility.png");
}

.stat-oil {
    background-image: url("../../images/oil-barrels.png");
}

.stat-png {
    background-image: url("../../images/png-flag.png");
}

.stat-rank {
    background-image: url("../../images/offshore-platform.png");
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 3em;
    margin-bottom: 3em;
}

.service-card {
    background: white;

    padding: 2.5em;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: #003087;

    margin-bottom: 1em;
}

.service-card p {
    line-height: 1.8;
}

/* =========================================
   TECHNOLOGY SECTION
========================================= */

.tech-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 3em;
}

.tech-card {
    background: #f4f8fc;

    padding: 2.5em;

    text-align: center;

    border-radius: 12px;

    border-top: 4px solid #00a3ad;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tech-card h3 {
    color: #003087;

    margin-bottom: 1em;
}

/* =========================================
   ADVANTAGE SECTION
========================================= */

.advantage-banner {
    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url("../../images/gas-facility.png");

    background-size: cover;
    background-position: center;

    color: white;

    padding: 6em 3em;

    border-radius: 12px;

    margin-bottom: 5em;
}

.advantage-banner h2 {
    color: white;

    text-align: center;

    margin-bottom: 1.5em;
}

.advantage-banner ul {
    max-width: 900px;

    margin: auto;
}

.advantage-banner li {
    margin-bottom: 1em;

    font-size: 1.2rem;

    line-height: 1.8;
}

/* =========================================
   PROJECTS
========================================= */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 3em;
}

.project-card {
    background: #003087;

    color: white;

    padding: 3em 2em;

    text-align: center;

    border-radius: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}

.project-card:hover {
    background: #00a3ad;

    transform: translateY(-5px);
}

/* =========================================
   INDUSTRIES GRID
========================================= */

.industries-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 3em;
    margin-bottom: 3em;
}

.industry-card {
    background: #003087;

    color: white;

    padding: 2em;

    text-align: center;

    border-radius: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}

.industry-card:hover {
    background: #e4002b;

    transform: translateY(-5px);
}


/* =========================================
   CONTACT CTA
========================================= */

.contact-banner {
    background:
        linear-gradient(
            rgba(0,0,0,0.60),
            rgba(0,0,0,0.60)
        ),
        url("../../images/gas-development.png");

    background-size: cover;
    background-position: center;

    text-align: center;

    padding: 6em 3em;

    border-radius: 12px;

    color: white;
}

.contact-banner h2 {
    color: white;
}

.contact-banner p {
    max-width: 800px;

    margin: 0 auto 2em;
}

.contact-banner .button.primary {
    background: #e4002b;
    border: none;
}

.contact-banner .button.primary:hover {
    background: #c10025;
}

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

@media screen and (max-width: 980px) {

    .stats-grid,
    .services-grid,
    .tech-grid,
    .projects-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    #banner h2 {
        font-size: 2.4rem;
    }

    .division-heading {
        flex-direction: column;
    }

    .division-heading img {
        height: 65px;
    }

    .division-heading span {
        font-size: 2rem;
    }

    .stat-content h3 {
        font-size: 2.8rem;
    }
}