/*
Theme Name: GSPL Custom Theme
Theme URI: https://gspl-sg.com/
Author: WayToDigi
Description: Custom WordPress theme for Global Seas Pte. Ltd.
Version: 1.0.0
Text Domain: gspl-theme
*/

/*
===========================================================
 GLOBAL SEAS PTE. LTD.
 TRANSPORT / LOGISTICS HOMEPAGE
 NAVY + GOLD BRAND THEME
===========================================================
*/

/* =========================================================
   BRAND COLORS
========================================================= */

.gspl-homepage {

    --gspl-primary: #172B63;
    --gspl-primary-dark: #0D1B3E;

    --gspl-gold: #C8B96B;
    --gspl-gold-light: #E1D79A;
    --gspl-gold-dark: #A99A4E;

    --gspl-dark: #172B63;
    --gspl-dark-2: #172B63;

    --gspl-text: #333333;
    --gspl-text-light: #666666;

    --gspl-light: #F7F6F0;
    --gspl-white: #FFFFFF;

    --gspl-border: #E2E0D4;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--gspl-text);

    line-height: 1.7;
}


/* =========================================================
   GLOBAL
========================================================= */

.gspl-homepage *,
.gspl-homepage *::before,
.gspl-homepage *::after {
    box-sizing: border-box;
}

.gspl-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.gspl-section {
    padding: 90px 0;
}


```css
/* =========================================================
   HERO
========================================================= */

.gspl-hero {

    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    background-position: center center;

    background-size: cover;

    background-repeat: no-repeat;

    overflow: hidden;

}


/* Navy overlay matching Global Seas logo */

.gspl-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(13, 27, 62, 0.96) 0%,
            rgba(23, 43, 99, 0.88) 42%,
            rgba(23, 43, 99, 0.48) 72%,
            rgba(23, 43, 99, 0.18) 100%
        );

}


.gspl-hero-content {

    position: relative;

    z-index: 2;

}


.gspl-hero-text {

    max-width: 700px;

}


.gspl-eyebrow {

    display: inline-block;

    margin-bottom: 15px;

    color: #E1D79A;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.gspl-hero h1 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 700;

}


.gspl-hero h1 strong {

    color: #C8B96B;

}


.gspl-hero p {

    max-width: 620px;

    margin: 0 0 35px;

    color:
        rgba(255,255,255,.90);

    font-size: 18px;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.gspl-hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

}


.gspl-btn-gold {
    background: #C8B96B;
    color: #0D1B3E;
    border: 2px solid #C8B96B;
}

.gspl-btn-gold:hover {
    background: #172B63;
    color: #FFFFFF;
    border-color: #172B63;
}


.gspl-btn-outline {

    margin-left: 0;

    color: #ffffff;

    background: transparent;

    border:
        2px solid #C8B96B;

}


.gspl-btn-outline:hover {

    color: #0D1B3E;

    background: #C8B96B;

    border-color: #C8B96B;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .gspl-hero {

        min-height: 620px;

        background-position:
            65% center;

    }


    .gspl-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(13,27,62,.96),
                rgba(13,27,62,.72)
            );

    }


    .gspl-hero h1 {

        font-size: 43px;

    }


    .gspl-hero p {

        font-size: 16px;

    }


    .gspl-hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 480px) {

    .gspl-hero {

        min-height: 580px;

    }


    .gspl-hero h1 {

        font-size: 36px;

    }

}

/* =========================================================
   HEADER - GET A QUOTE BUTTON
========================================================= */

.gspl-header-cta {
    flex-shrink: 0;
}

.gspl-header-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 26px;

    background: #C8B96B;
    color: #0D1B3E;

    border: 2px solid #C8B96B;
    border-radius: 2px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.gspl-header-quote:hover {
    background: #172B63;
    color: #FFFFFF;
    border-color: #172B63;
    transform: translateY(-2px);
}


/* =========================================================
   HEADER NAVIGATION - GLOBAL SEAS COLORS
========================================================= */

.gspl-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E0D4;
}

.gspl-menu > li > a {
    color: #172B63;
}

.gspl-menu > li > a:hover,
.gspl-menu > li.current-menu-item > a,
.gspl-menu > li.current_page_item > a {
    color: #A99A4E;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .gspl-header-cta {
        display: none;
    }

}

/* =========================================================
   GLOBAL SEAS - QUICK INFO BAR
   FORCE 5 ITEMS IN ONE ROW
========================================================= */

.gspl-info-bar {
    width: 100%;
    padding: 18px 0;
    background: #172B63;
    border-top: 2px solid #C8B96B;
    border-bottom: 2px solid #C8B96B;
    overflow: hidden;
}


/* MAIN ROW */

.gspl-info-bar .gspl-info-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid !important;

    grid-template-columns:
        repeat(5, minmax(0, 1fr)) !important;

    grid-template-rows: 1fr !important;

    gap: 15px !important;

    align-items: stretch;
}


/* EACH ITEM */

.gspl-info-bar .gspl-info-item {

    min-width: 0 !important;
    width: 100% !important;
    min-height: 145px;

    padding: 20px 12px;

    display: flex !important;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        rgba(13, 27, 62, 0.55);

    border:
        1px solid #C8B96B;

    border-radius:
        24px;

    box-sizing: border-box;

    transition:
        all .3s ease;
}


/* ICON */

.gspl-info-bar .gspl-info-icon {

    width: 55px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 8px;

    font-size: 30px;

    line-height: 1;

}


/* NUMBER / TITLE */

.gspl-info-bar .gspl-info-item strong {

    display: block;

    margin: 0 0 5px;

    color: #FFFFFF;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.2;

}


/* DESCRIPTION */

.gspl-info-bar .gspl-info-item span {

    display: block;

    color: #FFFFFF;

    font-size: 14px;

    line-height: 1.3;

}


/* HOVER */

.gspl-info-bar .gspl-info-item:hover {

    background:
        rgba(200, 185, 107, 0.18);

    border-color:
        #E1D79A;

    transform:
        translateY(-3px);

}


/* =========================================================
   IMPORTANT:
   FORCE 5 COLUMNS EVEN IF OTHER THEME CSS EXISTS
========================================================= */

@media (min-width: 1001px) {

    .gspl-info-bar .gspl-info-grid {

        display: grid !important;

        grid-template-columns:
            repeat(5, 1fr) !important;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) and (min-width: 651px) {

    .gspl-info-bar .gspl-info-grid {

        grid-template-columns:
            repeat(5, minmax(0, 1fr)) !important;

        gap: 8px !important;

    }

    .gspl-info-bar .gspl-info-item {

        min-height: 125px;

        padding: 15px 5px;

    }

    .gspl-info-bar .gspl-info-item strong {

        font-size: 16px;

    }

    .gspl-info-bar .gspl-info-item span {

        font-size: 12px;

    }

    .gspl-info-bar .gspl-info-icon {

        font-size: 25px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .gspl-info-bar .gspl-info-grid {

        grid-template-columns:
            repeat(2, 1fr) !important;

        grid-template-rows:
            auto !important;

        gap: 10px !important;

    }

    .gspl-info-bar .gspl-info-item {

        min-height: 140px;

    }

}
/* =========================================================
   ABOUT
========================================================= */

.gspl-image-column {

    position: relative;

}


.gspl-image-main img {

    width: 100%;

    display: block;

    border-radius: 3px;

}


.gspl-experience-box {

    position: absolute;

    right: -25px;

    bottom: -25px;

    width: 170px;

    height: 150px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        var(--gspl-primary);

    color: #ffffff;

    border-top:
        5px solid var(--gspl-gold);

}


.gspl-experience-box strong {

    color:
        var(--gspl-gold);

    font-size: 42px;

    line-height: 1;

}


.gspl-experience-box span {

    font-size: 14px;

    margin-top: 8px;

}


.gspl-content-column h2,
.gspl-section-heading h2 {

    margin: 0 0 20px;

    color:
        var(--gspl-primary-dark);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

}


.gspl-content-column h2 span,
.gspl-section-heading h2 span {

    color:
        var(--gspl-gold-dark);

}


.gspl-content-column p {

    margin-bottom: 18px;

}


.gspl-check-list {

    list-style: none;

    margin: 25px 0 30px;

    padding: 0;

}


.gspl-check-list li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 10px;

    font-weight: 600;

}


.gspl-check-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color:
        var(--gspl-gold-dark);

    font-weight: 800;

}


/* =========================================================
   SERVICES
========================================================= */

.gspl-services {

    background:
        var(--gspl-light);

    border-top:
        1px solid var(--gspl-border);

    border-bottom:
        1px solid var(--gspl-border);

}


.gspl-section-heading {

    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;

}


.gspl-services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}


.gspl-service-card {

    position: relative;

    padding: 35px 28px;

    background:
        #ffffff;

    border:
        1px solid var(--gspl-border);

    border-top:
        3px solid transparent;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.gspl-service-card:hover {

    transform:
        translateY(-8px);

    border-top-color:
        var(--gspl-gold);

    box-shadow:
        0 15px 40px rgba(13,27,62,.10);

}


.gspl-service-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    color:
        var(--gspl-primary);

    background:
        rgba(200,185,107,.16);

    border:
        1px solid rgba(200,185,107,.35);

    font-size: 28px;

}


.gspl-service-card h3 {

    margin: 0 0 12px;

    color:
        var(--gspl-primary);

    font-size: 21px;

}


.gspl-service-card p {

    font-size: 14px;

    margin-bottom: 20px;

}


.gspl-service-card a {

    color:
        var(--gspl-gold-dark);

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

}


.gspl-service-card a:hover {

    color:
        var(--gspl-primary);

}


/* =========================================================
   DARK / WHY CHOOSE SECTION
========================================================= */

.gspl-dark-section {

    padding: 90px 0;

    background:
        var(--gspl-primary-dark);

    color:
        rgba(255,255,255,.82);

}


.gspl-dark-section h2 {

    color:
        #ffffff;

}


.gspl-section-label.light {

    color:
        var(--gspl-gold);

}


.gspl-dark-section
.gspl-content-column h2 span {

    color:
        var(--gspl-gold);

}


.gspl-feature-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    margin-top: 35px;

}


.gspl-feature {

    display: flex;

    gap: 15px;

}


.gspl-feature > strong {

    color:
        var(--gspl-gold);

    font-size: 25px;

}


.gspl-feature h3 {

    margin: 0;

    color: #ffffff;

    font-size: 17px;

}


.gspl-feature p {

    margin: 2px 0 0;

    font-size: 13px;

}


.gspl-dark-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    display: block;

    border:
        4px solid var(--gspl-gold);

}


/* =========================================================
   STATS
========================================================= */

.gspl-stats {

    padding: 55px 0;

    background:
        var(--gspl-gold);

    color:
        var(--gspl-primary-dark);

}


.gspl-stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    text-align: center;

}


.gspl-stat {

    padding: 10px 20px;

    border-right:
        1px solid rgba(13,27,62,.20);

}


.gspl-stat:last-child {

    border-right: none;

}


.gspl-stat strong {

    display: block;

    font-size: 42px;

    line-height: 1.1;

    color:
        var(--gspl-primary-dark);

}


.gspl-stat span {

    display: block;

    margin-top: 8px;

    color:
        var(--gspl-primary-dark);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   CTA
========================================================= */

.gspl-cta {

    padding: 75px 0;

    background:
        var(--gspl-primary);

    color: #ffffff;

    border-top:
        4px solid var(--gspl-gold);

}


.gspl-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.gspl-cta h2 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.15;

}


.gspl-cta h2 span {

    color:
        var(--gspl-gold);

}


.gspl-cta p {

    margin: 0;

    color:
        rgba(255,255,255,.80);

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.gspl-testimonials {

    background:
        #ffffff;

}


.gspl-testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.gspl-testimonial {

    padding: 35px;

    background:
        var(--gspl-light);

    border-left:
        4px solid var(--gspl-gold);

    box-shadow:
        0 5px 20px rgba(13,27,62,.04);

}


.gspl-stars {

    margin-bottom: 15px;

    color:
        var(--gspl-gold-dark);

    letter-spacing: 3px;

}


.gspl-testimonial p {

    margin-bottom: 25px;

    font-size: 15px;

    font-style: italic;

}


.gspl-testimonial strong {

    display: block;

    color:
        var(--gspl-primary);

}


.gspl-testimonial span {

    font-size: 13px;

    color:
        var(--gspl-text-light);

}


/* =========================================================
   FINAL CTA
========================================================= */

.gspl-final-cta {

    padding: 90px 20px;

    text-align: center;

    background:
        var(--gspl-light);

    border-top:
        1px solid var(--gspl-border);

}


.gspl-final-cta h2 {

    margin: 0 0 15px;

    color:
        var(--gspl-primary-dark);

    font-size:
        clamp(34px, 4vw, 52px);

}


.gspl-final-cta p {

    max-width: 650px;

    margin: 0 auto 30px;

}


.gspl-final-buttons {

    display: flex;

    justify-content: center;

    gap: 10px;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .gspl-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .gspl-two-column {

        gap: 45px;

    }

    .gspl-testimonial-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 768px) {

    .gspl-section {

        padding: 65px 0;

    }

    .gspl-hero {

        min-height: 600px;

    }

    .gspl-hero h1 {

        font-size: 43px;

    }

    .gspl-hero p {

        font-size: 16px;

    }

    .gspl-hero-buttons {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .gspl-btn-outline {

        margin-left: 0;

    }

    .gspl-info-grid {

        grid-template-columns: 1fr;

    }

    .gspl-info-item {

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,.15);

    }

    .gspl-info-item:last-child {

        border-bottom: none;

    }

    .gspl-two-column {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .gspl-experience-box {

        right: 15px;

        bottom: -20px;

    }

    .gspl-services-grid {

        grid-template-columns: 1fr;

    }

    .gspl-feature-grid {

        grid-template-columns: 1fr;

    }

    .gspl-dark-image img {

        height: 350px;

    }

    .gspl-stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .gspl-stat {

        margin-bottom: 25px;

        border-right: none;

    }

    .gspl-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

    .gspl-cta h2 {

        font-size: 34px;

    }

    .gspl-testimonial-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 480px) {

    .gspl-container {

        width: 90%;

    }

    .gspl-hero {

        min-height: 560px;

    }

    .gspl-hero h1 {

        font-size: 36px;

    }

    .gspl-stats-grid {

        grid-template-columns: 1fr;

    }

    .gspl-stat {

        border-bottom:
            1px solid rgba(13,27,62,.20);

        padding-bottom: 20px;

    }

    .gspl-stat:last-child {

        border-bottom: none;

    }

    .gspl-final-buttons {

        flex-direction: column;

        align-items: stretch;

    }

}
/* =========================================================
   GSPL FINAL LAYOUT FIX
   Prevents WordPress/theme CSS from collapsing or overlapping
   the hero and quick-info sections.
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

.gspl-homepage {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    position: relative;
}

.gspl-homepage *,
.gspl-homepage *::before,
.gspl-homepage *::after {
    box-sizing: border-box;
}

/* -------------------------
   CONTAINER
------------------------- */

.gspl-homepage .gspl-container {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------
   HERO
------------------------- */

.gspl-homepage .gspl-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 650px;
    height: auto;
    margin: 0;
    padding: 110px 0 90px;
    overflow: hidden;
    clear: both;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gspl-homepage .gspl-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gspl-homepage .gspl-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.gspl-homepage .gspl-hero-text {
    width: 100%;
    max-width: 760px;
    margin: 0;
}

.gspl-homepage .gspl-eyebrow {
    display: block;
    margin: 0 0 18px;
    line-height: 1.3;
}

.gspl-homepage .gspl-hero h1 {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: 0 0 24px;
    padding: 0;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gspl-homepage .gspl-hero h1 strong {
    display: inline;
    margin: 0;
    padding: 0;
}

.gspl-homepage .gspl-hero p {
    display: block;
    max-width: 700px;
    margin: 0 0 32px;
    padding: 0;
    line-height: 1.65;
}

.gspl-homepage .gspl-hero-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.gspl-homepage .gspl-hero-buttons .gspl-btn {
    flex: 0 0 auto;
    margin: 0;
}

/* -------------------------
   BUTTONS
------------------------- */

.gspl-homepage .gspl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    min-height: 58px;
    margin: 0;
    padding: 14px 28px;
    border-radius: 2px;
    border: 2px solid #C8B96B;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: all .25s ease;
}

.gspl-homepage .gspl-btn-outline {
    color: #FFFFFF;
    background: transparent;
    border-color: #C8B96B;
}

.gspl-homepage .gspl-btn-outline:hover {
    color: #0D1B3E;
    background: #C8B96B;
    border-color: #C8B96B;
}

/* -------------------------
   QUICK INFO BAR
   Completely separate block below hero.
------------------------- */

.gspl-homepage .gspl-info-bar {
    position: relative;
    z-index: 5;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 24px 0 30px;
    clear: both;
    background: #172B63;
    border-top: 2px solid #C8B96B;
    border-bottom: 2px solid #C8B96B;
    overflow: visible;
}

.gspl-homepage .gspl-info-bar .gspl-info-grid {
    position: relative;
    z-index: 6;
    display: grid !important;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
    gap: 18px !important;
    align-items: stretch;
}

.gspl-homepage .gspl-info-bar .gspl-info-item {
    position: relative;
    z-index: 7;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 150px;
    height: auto;
    margin: 0;
    padding: 24px 15px;
    text-align: center;
    background: rgba(13, 27, 62, 0.65);
    border: 1px solid rgba(200, 185, 107, 0.9);
    border-radius: 24px;
    box-sizing: border-box;
    overflow: hidden;
    transform: none;
}

.gspl-homepage .gspl-info-bar .gspl-info-item:hover {
    transform: translateY(-3px);
}

.gspl-homepage .gspl-info-bar .gspl-info-icon {
    flex: 0 0 auto;
    width: 55px;
    height: 45px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
}

.gspl-homepage .gspl-info-bar .gspl-info-content {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.gspl-homepage .gspl-info-bar .gspl-info-item strong {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.gspl-homepage .gspl-info-bar .gspl-info-item span {
    display: block;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.35;
}

/* -------------------------
   SECTIONS AFTER INFO BAR
------------------------- */

.gspl-homepage > .gspl-section {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    clear: both;
}

.gspl-homepage .gspl-about {
    padding-top: 90px;
}

/* -------------------------
   RESPONSIVE TABLET
------------------------- */

@media (max-width: 1000px) {

    .gspl-homepage .gspl-hero {
        min-height: 620px;
        padding: 90px 0 75px;
    }

    .gspl-homepage .gspl-hero-text {
        max-width: 680px;
    }

    .gspl-homepage .gspl-hero h1 {
        font-size: clamp(42px, 6vw, 60px);
    }

    .gspl-homepage .gspl-info-bar .gspl-info-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item {
        min-height: 130px;
        padding: 18px 8px;
        border-radius: 18px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item strong {
        font-size: 16px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item span {
        font-size: 12px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-icon {
        font-size: 25px;
    }
}

/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 650px) {

    .gspl-homepage .gspl-container {
        width: calc(100% - 32px);
    }

    .gspl-homepage .gspl-hero {
        min-height: 620px;
        padding: 80px 0 65px;
        align-items: center;
    }

    .gspl-homepage .gspl-hero-text {
        max-width: 100%;
    }

    .gspl-homepage .gspl-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 10vw, 50px);
        line-height: 1.05;
    }

    .gspl-homepage .gspl-hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.55;
    }

    .gspl-homepage .gspl-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .gspl-homepage .gspl-hero-buttons .gspl-btn {
        width: 100%;
        min-width: 0;
    }

    .gspl-homepage .gspl-info-bar {
        padding: 18px 0 22px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item {
        min-height: 125px;
        padding: 18px 8px;
        border-radius: 16px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {

    .gspl-homepage .gspl-hero {
        min-height: 600px;
        padding: 70px 0 55px;
    }

    .gspl-homepage .gspl-hero h1 {
        font-size: 36px;
    }

    .gspl-homepage .gspl-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item {
        min-height: 120px;
    }

    .gspl-homepage .gspl-info-bar .gspl-info-item strong {
        font-size: 15px;
    }
}

/* =========================================================
   ABOUT SECTION - FINAL FIX
========================================================= */

/* Main two-column layout */
.gspl-homepage .gspl-two-column {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: center;
    gap: 70px;
    width: 100%;
}

/* About section */
.gspl-homepage .gspl-about {
    padding: 90px 0;
    background: #ffffff;
    overflow: visible;
}

/* Image column */
.gspl-homepage .gspl-image-column {
    position: relative;
    width: 100%;
    min-width: 0;
}

/* Image wrapper */
.gspl-homepage .gspl-image-main {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

/* Actual image */
.gspl-homepage .gspl-image-main img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center;
    border-radius: 4px;
}

/* Experience box */
.gspl-homepage .gspl-experience-box {
    position: absolute;
    right: -25px;
    bottom: -25px;

    width: 175px;
    min-height: 155px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #172B63;
    color: #ffffff;

    border-top: 5px solid #C8B96B;

    z-index: 5;

    box-sizing: border-box;
}

/* Experience number */
.gspl-homepage .gspl-experience-box strong {
    display: block;
    margin: 0;

    color: #C8B96B;

    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

/* Experience text */
.gspl-homepage .gspl-experience-box span {
    display: block;

    margin-top: 10px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.5;
}

/* About content */
.gspl-homepage .gspl-content-column {
    width: 100%;
    min-width: 0;
}

/* About heading */
.gspl-homepage .gspl-content-column h2 {
    margin: 10px 0 25px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;

    color: #172B63;
}

/* Gold heading text */
.gspl-homepage .gspl-content-column h2 span {
    color: #A99A4E;
}

/* About paragraphs */
.gspl-homepage .gspl-content-column p {
    margin: 0 0 18px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}

/* Check list */
.gspl-homepage .gspl-check-list {
    margin: 25px 0 30px;
    padding: 0;

    list-style: none;
}

.gspl-homepage .gspl-check-list li {
    position: relative;

    margin: 0 0 14px;
    padding-left: 30px;

    color: #333333;

    font-size: 15px;
    line-height: 1.6;
}

.gspl-homepage .gspl-check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #A99A4E;

    font-weight: 800;
    font-size: 18px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .gspl-homepage .gspl-two-column {
        grid-template-columns: 1fr !important;
        gap: 55px;
    }

    .gspl-homepage .gspl-image-main {
        height: 500px;
    }

    .gspl-homepage .gspl-content-column {
        max-width: 850px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .gspl-homepage .gspl-about {
        padding: 60px 0;
    }

    .gspl-homepage .gspl-two-column {
        gap: 45px;
    }

    .gspl-homepage .gspl-image-main {
        height: 380px;
    }

    .gspl-homepage .gspl-experience-box {
        right: 15px;
        bottom: -20px;

        width: 145px;
        min-height: 125px;

        padding: 18px;
    }

    .gspl-homepage .gspl-experience-box strong {
        font-size: 34px;
    }

    .gspl-homepage .gspl-experience-box span {
        font-size: 13px;
    }

    .gspl-homepage .gspl-content-column h2 {
        font-size: 34px;
    }

}

/* =========================================================
   MISSION / VISION / VALUES
   GSPL CORPORATE STYLE
========================================================= */

.gspl-homepage .gspl-mvv-section {
    position: relative;
    padding: 105px 0 110px;
    background: #0D1B3E;
    overflow: hidden;
}


/* Subtle background detail */

.gspl-homepage .gspl-mvv-section::before {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 42%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent 0%,
            rgba(201, 162, 39, 0.04) 100%
        );

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.gspl-homepage .gspl-mvv-heading {
    position: relative;

    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;

    z-index: 2;
}


.gspl-homepage .gspl-mvv-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #C9A227;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


.gspl-homepage .gspl-mvv-heading h2 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1px;
}


.gspl-homepage .gspl-mvv-heading h2 span {
    color: #C9A227;
}


.gspl-homepage .gspl-mvv-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.gspl-homepage .gspl-mvv-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    z-index: 2;
}


/* =========================================================
   CARD
========================================================= */

.gspl-homepage .gspl-mvv-card {
    position: relative;

    min-height: 390px;

    padding: 38px 35px 40px;

    background: #13254D;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 0;

    box-sizing: border-box;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* Gold top line */

.gspl-homepage .gspl-mvv-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #C9A227;

    transition: width 0.35s ease;
}


.gspl-homepage .gspl-mvv-card:hover {
    transform: translateY(-7px);

    background: #172B63;

    border-color: rgba(201, 162, 39, 0.65);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);
}


.gspl-homepage .gspl-mvv-card:hover::before {
    width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.gspl-homepage .gspl-mvv-top {
    display: flex;

    align-items: center;

    margin-bottom: 38px;
}


.gspl-homepage .gspl-mvv-number {
    flex: 0 0 auto;

    color: #C9A227;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


.gspl-homepage .gspl-mvv-line {
    width: 55px;
    height: 1px;

    margin-left: 15px;

    background: rgba(201, 162, 39, 0.5);
}


/* =========================================================
   ICON
========================================================= */

.gspl-homepage .gspl-mvv-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: rgba(201, 162, 39, 0.1);

    border: 1px solid rgba(201, 162, 39, 0.35);

    border-radius: 50%;
}


.gspl-homepage .gspl-mvv-icon svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke: #C9A227;

    stroke-width: 2.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   HEADING
========================================================= */

.gspl-homepage .gspl-mvv-card h3 {
    margin: 0 0 17px;

    color: #FFFFFF;

    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================================
   TEXT
========================================================= */

.gspl-homepage .gspl-mvv-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   BOTTOM ACCENT
========================================================= */

.gspl-homepage .gspl-mvv-card::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 70px;
    height: 70px;

    border-right: 1px solid rgba(201, 162, 39, 0.25);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .gspl-homepage .gspl-mvv-section {
        padding: 80px 0 85px;
    }

    .gspl-homepage .gspl-mvv-heading {
        margin-bottom: 50px;
    }

    .gspl-homepage .gspl-mvv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gspl-homepage .gspl-mvv-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .gspl-homepage .gspl-mvv-section {
        padding: 65px 0 70px;
    }

    .gspl-homepage .gspl-mvv-heading {
        margin-bottom: 40px;

        text-align: left;
    }

    .gspl-homepage .gspl-mvv-heading h2 {
        font-size: 34px;
    }

    .gspl-homepage .gspl-mvv-heading p {
        font-size: 15px;
    }

    .gspl-homepage .gspl-mvv-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .gspl-homepage .gspl-mvv-card:last-child {
        grid-column: auto;
    }

    .gspl-homepage .gspl-mvv-card {
        min-height: auto;

        padding: 30px 27px 35px;
    }

    .gspl-homepage .gspl-mvv-top {
        margin-bottom: 30px;
    }

    .gspl-homepage .gspl-mvv-card h3 {
        font-size: 25px;
    }

}

/* =========================================================
   GSPL SERVICES SLIDER
========================================================= */

.gspl-homepage .gspl-services-section {
    position: relative;

    padding: 100px 0 110px;

    background: #f7f6f1;

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.gspl-homepage .gspl-services-header {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}


.gspl-homepage .gspl-section-label {
    display: block;

    margin-bottom: 12px;

    color: #172b63;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 500;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.gspl-homepage .gspl-services-header h2 {
    margin: 0 0 25px;

    color: #0d1b3e;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1px;
}


.gspl-homepage .gspl-services-header h2 span {
    display: block;

    color: #a99a4e;
}


.gspl-homepage .gspl-services-header p {
    max-width: 700px;

    margin: 0 auto;

    color: #333c4d;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.gspl-homepage .gspl-services-slider-wrapper {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
}


/* =========================================================
   SLIDER
========================================================= */

.gspl-homepage .gspl-services-slider {
    width: 100%;

    overflow: hidden;

    padding: 5px 5px 15px;
}


.gspl-homepage .gspl-services-track {
    display: flex;

    gap: 28px;

    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: transform;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.gspl-homepage .gspl-service-slide {
    flex: 0 0 calc((100% - 56px) / 3);

    background: #ffffff;

    border: 1px solid #dedbd0;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.gspl-homepage .gspl-service-slide:hover {
    transform: translateY(-7px);

    border-color: #c9a227;

    box-shadow:
        0 18px 40px rgba(13, 27, 62, 0.13);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.gspl-homepage .gspl-service-image {
    position: relative;

    width: 100%;

    height: 230px;

    overflow: hidden;

    background: #172b63;
}


.gspl-homepage .gspl-service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(13, 27, 62, 0.25)
        );

    pointer-events: none;
}


.gspl-homepage .gspl-service-image img {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.gspl-homepage .gspl-service-slide:hover
.gspl-service-image img {
    transform: scale(1.06);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.gspl-homepage .gspl-service-content {
    position: relative;

    min-height: 260px;

    padding: 28px 30px 32px;

    box-sizing: border-box;
}


/* Number */

.gspl-homepage .gspl-service-number {
    display: block;

    margin-bottom: 13px;

    color: #a99a4e;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Heading */

.gspl-homepage .gspl-service-content h3 {
    margin: 0 0 15px;

    color: #172b63;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;
}


/* Description */

.gspl-homepage .gspl-service-content p {
    margin: 0 0 25px;

    color: #4b5563;

    font-size: 15px;

    line-height: 1.7;
}


/* Learn More */

.gspl-homepage .gspl-service-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #a88f36;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.gspl-homepage .gspl-service-link span {
    font-size: 18px;

    line-height: 1;
}


.gspl-homepage .gspl-service-link:hover {
    color: #172b63;

    gap: 12px;
}


/* =========================================================
   ARROWS
========================================================= */

.gspl-homepage .gspl-slider-arrow {
    position: relative;

    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    background: #172b63;

    color: #ffffff;

    border: 1px solid #172b63;

    border-radius: 50%;

    font-size: 21px;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.gspl-homepage .gspl-slider-arrow:hover {
    background: #c9a227;

    color: #172b63;

    border-color: #c9a227;

    transform: scale(1.08);
}


.gspl-homepage .gspl-slider-prev {
    margin-right: 20px;
}


.gspl-homepage .gspl-slider-next {
    margin-left: 20px;
}


/* =========================================================
   DOTS
========================================================= */

.gspl-homepage .gspl-services-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 30px;
}


.gspl-homepage .gspl-service-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    background: #c9c5b8;

    border: 0;

    border-radius: 50%;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}


.gspl-homepage .gspl-service-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #c9a227;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .gspl-homepage .gspl-service-slide {
        flex-basis: calc((100% - 28px) / 2);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .gspl-homepage .gspl-services-section {
        padding: 70px 0 80px;
    }


    .gspl-homepage .gspl-services-header {
        margin-bottom: 40px;
    }


    .gspl-homepage .gspl-services-header h2 {
        font-size: 38px;
    }


    .gspl-homepage .gspl-services-header p {
        font-size: 15px;
    }


    .gspl-homepage .gspl-services-slider-wrapper {
        padding: 0;
    }


    .gspl-homepage .gspl-services-slider {
        padding-left: 0;
        padding-right: 0;
    }


    .gspl-homepage .gspl-service-slide {
        flex-basis: 100%;
    }


    .gspl-homepage .gspl-service-image {
        height: 220px;
    }


    .gspl-homepage .gspl-service-content {
        min-height: auto;

        padding: 25px;
    }


    .gspl-homepage .gspl-slider-arrow {
        position: absolute;

        top: 195px;

        width: 42px;
        height: 42px;

        z-index: 10;
    }


    .gspl-homepage .gspl-slider-prev {
        left: 12px;

        margin: 0;
    }


    .gspl-homepage .gspl-slider-next {
        right: 12px;

        margin: 0;
    }

}

/* =========================================================
   FIX - WHY CHOOSE GSPL DARK SECTION TEXT
========================================================= */

.gspl-dark-section {
    background: #0D1B3E !important;
    color: #FFFFFF !important;
}


/* Small heading */

.gspl-dark-section .gspl-section-label,
.gspl-dark-section .gspl-section-label.light {
    color: #C8B96B !important;
}


/* Main heading */

.gspl-dark-section .gspl-content-column h2 {
    color: #FFFFFF !important;
}


/* Gold part of heading */

.gspl-dark-section .gspl-content-column h2 span {
    color: #C8B96B !important;
}


/* Main paragraph */

.gspl-dark-section .gspl-content-column > p {
    color: rgba(255, 255, 255, 0.78) !important;
}


/* Feature titles */

.gspl-dark-section .gspl-feature h3 {
    color: #FFFFFF !important;
}


/* Feature descriptions */

.gspl-dark-section .gspl-feature p {
    color: rgba(255, 255, 255, 0.68) !important;
}


/* Feature numbers */

.gspl-dark-section .gspl-feature > strong {
    color: #C8B96B !important;
}


/* Image border */

.gspl-dark-section .gspl-dark-image img {
    border-color: #C8B96B !important;
}

/* =========================================================
   DARK CTA / LOGISTICS SECTION
   KEEP CONTENT - DESIGN ONLY
========================================================= */

.gspl-dark-section {
    position: relative;
    background: #0D1B3E !important;
    color: #ffffff;
    padding: 95px 0 100px;
    overflow: hidden;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.gspl-dark-section .gspl-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 75px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.gspl-dark-section .gspl-content-column {
    width: 100%;
    max-width: 680px;
}


/* Section label */

.gspl-dark-section .gspl-section-label {
    display: block;
    margin-bottom: 18px;

    color: #C8B96B !important;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.gspl-dark-section .gspl-content-column h2 {
    margin: 0 0 25px !important;

    color: #ffffff !important;

    font-size: clamp(40px, 4vw, 58px) !important;
    line-height: 1.12 !important;

    font-weight: 700;
    letter-spacing: -1.2px;
}


/* Gold "maritime solutions" */

.gspl-dark-section .gspl-content-column h2 span {
    color: #C8B96B !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.gspl-dark-section .gspl-content-column > p {
    margin: 0 0 38px !important;

    max-width: 650px;

    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 16px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   FEATURES
========================================================= */

.gspl-dark-section .gspl-feature-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px 40px;

    margin: 0 !important;
    padding: 0;
}


.gspl-dark-section .gspl-feature {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 13px;

    align-items: start;

    padding: 0 0 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}


/* Numbers */

.gspl-dark-section .gspl-feature > strong {
    color: #C8B96B !important;

    font-size: 20px !important;
    line-height: 1.3;

    font-weight: 700;
}


/* Feature title */

.gspl-dark-section .gspl-feature h3 {
    margin: 0 0 7px !important;

    color: #ffffff !important;

    font-size: 17px !important;
    line-height: 1.35;

    font-weight: 700;
}


/* Feature description */

.gspl-dark-section .gspl-feature p {
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.62) !important;

    font-size: 14px !important;
    line-height: 1.55 !important;
}


/* =========================================================
   ONE BUTTON
========================================================= */

.gspl-dark-section .gspl-content-column::after {
    content: "";
    display: block;
}


/* Create button using a wrapper inserted by CSS is not
   recommended. Add the actual button in PHP instead. */


/* =========================================================
   RIGHT IMAGE
========================================================= */

.gspl-dark-section .gspl-dark-image {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin-left: auto;
}


.gspl-dark-section .gspl-dark-image::before {
    content: "";

    position: absolute;

    top: -10px;
    right: -10px;

    width: 75px;
    height: 75px;

    border-top: 3px solid #C8B96B;
    border-right: 3px solid #C8B96B;

    z-index: 2;

    pointer-events: none;
}


.gspl-dark-section .gspl-dark-image::after {
    content: "";

    position: absolute;

    bottom: -10px;
    left: -10px;

    width: 75px;
    height: 75px;

    border-bottom: 3px solid #C8B96B;
    border-left: 3px solid #C8B96B;

    z-index: 2;

    pointer-events: none;
}


.gspl-dark-section .gspl-dark-image img {
    display: block !important;

    width: 100% !important;

    height: 520px !important;

    max-width: none !important;

    margin: 0 !important;

    object-fit: cover !important;

    object-position: center;

    border: 1px solid rgba(200, 185, 107, 0.5);
}


/* =========================================================
   BUTTON
========================================================= */

.gspl-dark-section .gspl-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 34px;

    padding: 15px 27px;

    background: #C8B96B;

    color: #0D1B3E !important;

    border: 2px solid #C8B96B;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    text-decoration: none;

    transition: all 0.25s ease;
}


.gspl-dark-section .gspl-cta-button span {
    font-size: 19px;

    transition: transform 0.25s ease;
}


.gspl-dark-section .gspl-cta-button:hover {
    background: transparent;

    color: #C8B96B !important;

    transform: translateY(-2px);
}


.gspl-dark-section .gspl-cta-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .gspl-dark-section {
        padding: 80px 0 90px;
    }

    .gspl-dark-section .gspl-two-column {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .gspl-dark-section .gspl-content-column {
        max-width: 760px;
    }

    .gspl-dark-section .gspl-dark-image {
        max-width: 700px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .gspl-dark-section {
        padding: 65px 0 75px;
    }

    .gspl-dark-section .gspl-content-column h2 {
        font-size: 39px !important;

        line-height: 1.12 !important;

        letter-spacing: -0.6px;
    }

    .gspl-dark-section .gspl-content-column > p {
        font-size: 15px !important;

        line-height: 1.7 !important;
    }

    .gspl-dark-section .gspl-feature-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .gspl-dark-section .gspl-dark-image img {
        height: 350px !important;
    }

    .gspl-dark-section .gspl-dark-image::before,
    .gspl-dark-section .gspl-dark-image::after {
        width: 45px;
        height: 45px;
    }

    .gspl-dark-section .gspl-cta-button {
        width: 100%;
        box-sizing: border-box;
    }

}

.gspl-dark-section .gspl-content-column h2 {
    margin: 0 0 22px !important;

    color: #ffffff !important;

    font-size: 42px !important;
    line-height: 1.15 !important;

    font-weight: 700;
    letter-spacing: -0.5px;
}

.gspl-dark-section .gspl-content-column h2 span {
    color: #C8B96B !important;
}

@media (max-width: 650px) {

    .gspl-dark-section .gspl-content-column h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

}

/* =========================================================
   GSPL ABOUT PAGE
========================================================= */

.gspl-about-page {
    background: #ffffff;
    color: #0D1B3E;
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.gspl-about-page .gspl-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gspl-about-page .gspl-section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #A89442;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gspl-about-page .gspl-section-label.light {
    color: #C8B96B;
}

.gspl-about-page h1,
.gspl-about-page h2,
.gspl-about-page h3,
.gspl-about-page p {
    margin-top: 0;
}

.gspl-about-page h1 span,
.gspl-about-page h2 span {
    color: #C8B96B;
}

.gspl-about-page p {
    color: #4D5565;
    font-size: 17px;
    line-height: 1.75;
}


/* GOLD LINE */

.gspl-gold-line {
    width: 65px;
    height: 4px;
    background: #C8B96B;
    margin: 20px 0 25px;
}


/* =========================================================
   BUTTON
========================================================= */

.gspl-about-page .gspl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 155px;
    min-height: 52px;

    padding: 0 28px;

    background: #0D1B3E;
    color: #ffffff !important;

    border: 1px solid #0D1B3E;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;

    transition: all .3s ease;
}

.gspl-about-page .gspl-btn:hover {
    background: #C8B96B;
    border-color: #C8B96B;
    color: #0D1B3E !important;
}

.gspl-about-page .gspl-btn-gold {
    background: #C8B96B;
    border-color: #C8B96B;
    color: #0D1B3E !important;
}

.gspl-about-page .gspl-btn-gold:hover {
    background: #ffffff;
    border-color: #ffffff;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.gspl-about-hero {
    padding: 110px 0 100px;
    background: #ffffff;
}

.gspl-about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.gspl-about-hero-content h1 {
    max-width: 650px;
    margin-bottom: 0;

    font-size: 58px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #0D1B3E;
}

.gspl-about-hero-content p {
    max-width: 610px;
    margin-bottom: 30px;
}

.gspl-about-hero-image {
    position: relative;
}

.gspl-image-frame {
    position: relative;
    overflow: hidden;
}

.gspl-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gspl-about-hero-image .gspl-image-frame {
    height: 470px;
}

.gspl-about-hero-image img {
    transition: transform .6s ease;
}

.gspl-about-hero-image:hover img {
    transform: scale(1.03);
}

.gspl-about-hero-image .gspl-image-frame:after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200,185,107,.7);
    pointer-events: none;
}

.gspl-experience-badge {
    position: absolute;
    left: -35px;
    bottom: -35px;

    width: 170px;
    height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 25px;

    background: #0D1B3E;
    border-top: 5px solid #C8B96B;

    box-shadow: 0 15px 35px rgba(13,27,62,.18);
}

.gspl-experience-badge strong {
    color: #C8B96B;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}

.gspl-experience-badge span {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   SERVICES
========================================================= */

.gspl-about-services {
    padding: 105px 0;
    background: #F7F6F1;
}

.gspl-section-heading {
    max-width: 750px;
    margin-bottom: 55px;
}

.gspl-section-heading h2 {
    margin-bottom: 18px;
    color: #0D1B3E;
    font-size: 48px;
    line-height: 1.15;
}

.gspl-section-heading p {
    max-width: 720px;
    margin-bottom: 0;
}


/* SERVICE ROW */

.gspl-service-list {
    border-top: 1px solid rgba(13,27,62,.18);
}

.gspl-service-row {
    display: grid;
    grid-template-columns: 70px 1fr 1.25fr;
    gap: 30px;

    align-items: start;

    padding: 38px 0;

    border-bottom: 1px solid rgba(13,27,62,.18);

    transition: all .3s ease;
}

.gspl-service-row:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: #ffffff;
}

.gspl-service-number {
    color: #C8B96B;
    font-size: 18px;
    font-weight: 700;
}

.gspl-service-title h3 {
    margin: 0;
    color: #0D1B3E;
    font-size: 23px;
    line-height: 1.3;
}

.gspl-service-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   DARK VISION SECTION
========================================================= */

.gspl-about-dark {
    padding: 110px 0;
    background: #0D1B3E;
}

.gspl-about-dark-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.gspl-about-dark-content h2 {
    max-width: 650px;
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 48px;
    line-height: 1.15;
}

.gspl-about-dark-content p {
    max-width: 650px;
    color: #D9DFEA;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.gspl-about-dark-image .gspl-image-frame {
    height: 500px;
}

.gspl-about-dark-image .gold-frame {
    border: 4px solid #C8B96B;
}

.gspl-dark-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;

    margin-top: 35px;
    padding: 20px 0;

    border-top: 1px solid rgba(200,185,107,.35);
}

.gspl-dark-highlight > span {
    color: #C8B96B;
    font-size: 20px;
    font-weight: 700;
}

.gspl-dark-highlight strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.gspl-dark-highlight p {
    margin: 0;
    font-size: 14px;
    color: #BFC8D8;
}


/* =========================================================
   STRATEGIC OUTLOOK
========================================================= */

.gspl-strategic {
    padding: 110px 0;
    background: #ffffff;
}

.gspl-strategic-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.gspl-strategic-image .gspl-image-frame {
    height: 480px;
}

.gspl-strategic-image .gspl-image-frame:after {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    right: -18px;
    bottom: -18px;

    border: 2px solid #C8B96B;

    z-index: -1;
}

.gspl-strategic-content h2 {
    color: #0D1B3E;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 0;
}

.gspl-strategic-content p {
    max-width: 570px;
}


/* =========================================================
   CTA
========================================================= */

.gspl-about-cta {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #0D1B3E 0%,
            #172B63 100%
        );

    text-align: center;
}

.gspl-about-cta .gspl-section-label {
    margin-bottom: 15px;
}

.gspl-about-cta h2 {
    max-width: 800px;
    margin: 0 auto 20px;

    color: #ffffff;

    font-size: 55px;
    line-height: 1.1;
}

.gspl-about-cta p {
    max-width: 600px;
    margin: 0 auto 30px;

    color: #DCE2ED;
}

.gspl-about-cta .gspl-btn {
    min-width: 180px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .gspl-about-hero-grid,
    .gspl-about-dark-grid,
    .gspl-strategic-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gspl-about-hero {
        padding: 80px 0;
    }

    .gspl-about-hero-content h1 {
        font-size: 48px;
    }

    .gspl-about-hero-image .gspl-image-frame {
        height: 430px;
    }

    .gspl-experience-badge {
        left: 20px;
        bottom: -25px;
    }

    .gspl-service-row {
        grid-template-columns: 60px 1fr;
    }

    .gspl-service-content {
        grid-column: 2;
    }

    .gspl-about-dark-image .gspl-image-frame,
    .gspl-strategic-image .gspl-image-frame {
        height: 420px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gspl-about-page .gspl-container {
        width: min(100% - 30px, 1180px);
    }

    .gspl-about-hero {
        padding: 65px 0 80px;
    }

    .gspl-about-hero-content h1 {
        font-size: 38px;
        letter-spacing: -.5px;
    }

    .gspl-about-hero-content p {
        font-size: 15px;
    }

    .gspl-about-hero-image .gspl-image-frame {
        height: 300px;
    }

    .gspl-experience-badge {
        width: 145px;
        height: 125px;
        left: 10px;
        bottom: -20px;
    }

    .gspl-experience-badge strong {
        font-size: 34px;
    }

    .gspl-experience-badge span {
        font-size: 13px;
    }

    .gspl-about-services,
    .gspl-about-dark,
    .gspl-strategic {
        padding: 70px 0;
    }

    .gspl-section-heading h2,
    .gspl-about-dark-content h2,
    .gspl-strategic-content h2 {
        font-size: 36px;
    }

    .gspl-service-row {
        display: block;
        padding: 30px 0;
    }

    .gspl-service-number {
        margin-bottom: 10px;
    }

    .gspl-service-title h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .gspl-service-content p {
        font-size: 15px;
    }

    .gspl-about-dark-image .gspl-image-frame,
    .gspl-strategic-image .gspl-image-frame {
        height: 300px;
    }

    .gspl-about-cta {
        padding: 70px 0;
    }

    .gspl-about-cta h2 {
        font-size: 38px;
    }

}

/*
Theme Name: GSPL Custom
Description: GSPL custom website styling including Manpower page.
Version: 1.0
*/

/*
Theme Name: GSPL Custom
Description: GSPL custom website styling including Manpower page.
Version: 1.0
*/

/*
Theme Name: GSPL Custom
Description: GSPL custom website styling including Manpower page.
Version: 1.0
*/

/* =========================================================
   GSPL MANPOWER PAGE
========================================================= */

.gspl-manpower-page {
    --gspl-navy: #102335;
    --gspl-gold: #c79a45;
    --gspl-text: #68727d;
    --gspl-light: #f5f7f8;
    --gspl-border: #e4e8eb;
}

/* =========================================================
   HERO
========================================================= */

.gspl-manpower-page .gspl-manpower-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(90deg, rgba(8,22,38,.92), rgba(8,22,38,.55)),
        url('images/manpower-hero.jpg') center center / cover no-repeat;
}

.gspl-manpower-page .gspl-manpower-hero-content {
    width: 100%;
}

.gspl-manpower-page .gspl-manpower-hero-text {
    max-width: 760px;
    padding: 90px 0;
}

.gspl-manpower-page .gspl-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gspl-gold);
}

.gspl-manpower-page .gspl-manpower-hero h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 700;
}

.gspl-manpower-page .gspl-manpower-hero p {
    max-width: 680px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================================
   BUTTONS
========================================================= */

.gspl-manpower-page .gspl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gspl-manpower-page .gspl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.gspl-manpower-page .gspl-btn-primary {
    background: var(--gspl-gold);
    color: #fff;
}

.gspl-manpower-page .gspl-btn-primary:hover {
    background: #ad8134;
    color: #fff;
}

.gspl-manpower-page .gspl-btn-outline {
    border-color: rgba(255,255,255,.65);
    color: #fff;
    background: transparent;
}

.gspl-manpower-page .gspl-btn-outline:hover {
    background: #fff;
    color: var(--gspl-navy);
}

/* =========================================================
   GENERAL SECTIONS
========================================================= */

.gspl-manpower-page .gspl-section {
    padding: 90px 0;
}

.gspl-manpower-page .gspl-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.gspl-manpower-page .gspl-section-heading h2,
.gspl-manpower-page .gspl-content-column h2,
.gspl-manpower-page .gspl-quality-content h2 {
    margin: 0 0 18px;
    color: var(--gspl-navy);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
}

.gspl-manpower-page .gspl-section-heading p,
.gspl-manpower-page .gspl-content-column p,
.gspl-manpower-page .gspl-quality-content p {
    color: var(--gspl-text);
    line-height: 1.75;
}

.gspl-manpower-page .gspl-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.gspl-manpower-page .gspl-section-image {
    width: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
}

.gspl-manpower-page .gspl-text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gspl-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.gspl-manpower-page .gspl-text-link:hover {
    color: var(--gspl-gold);
}

/* =========================================================
   QUICK INFO BAR
========================================================= */

.gspl-manpower-page .gspl-info-bar {
    background: var(--gspl-navy);
}

.gspl-manpower-page .gspl-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gspl-manpower-page .gspl-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 70px;
    padding: 10px 15px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.gspl-manpower-page .gspl-info-item:last-child {
    border-right: 0;
}

.gspl-manpower-page .gspl-info-icon {
    font-size: 20px;
}

.gspl-manpower-page .gspl-info-item strong {
    color: #fff;
    font-size: 14px;
}

/* =========================================================
   MANPOWER CAPABILITIES
========================================================= */

.gspl-manpower-page .gspl-manpower-services {
    background: var(--gspl-light);
}

.gspl-manpower-page .gspl-manpower-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gspl-manpower-page .gspl-manpower-card {
    padding: 35px 28px;
    background: #fff;
    border: 1px solid var(--gspl-border);
    transition: all .3s ease;
}

.gspl-manpower-page .gspl-manpower-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.gspl-manpower-page .gspl-card-number,
.gspl-manpower-page .gspl-process-number {
    display: block;
    color: var(--gspl-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gspl-manpower-page .gspl-manpower-card h3 {
    margin: 20px 0 15px;
    color: var(--gspl-navy);
    font-size: 21px;
}

.gspl-manpower-page .gspl-manpower-card p {
    margin: 0;
    color: var(--gspl-text);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   DARK SECTION
========================================================= */

.gspl-manpower-page .gspl-dark-section {
    padding: 95px 0;
    background: var(--gspl-navy);
}

.gspl-manpower-page .gspl-dark-section h2 {
    color: #fff;
}

.gspl-manpower-page .gspl-dark-section p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.gspl-manpower-page .gspl-eyebrow-light {
    color: var(--gspl-gold);
}

.gspl-manpower-page .gspl-dark-image {
    min-height: 520px;
}

/* =========================================================
   FEATURES
========================================================= */

.gspl-manpower-page .gspl-feature-list {
    margin-top: 35px;
}

.gspl-manpower-page .gspl-feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.gspl-manpower-page .gspl-feature-item > span {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gspl-gold);
    color: var(--gspl-gold);
    font-size: 13px;
}

.gspl-manpower-page .gspl-feature-item h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 17px;
}

.gspl-manpower-page .gspl-feature-item p {
    margin: 0;
    font-size: 14px;
}

/* =========================================================
   WORKFORCE
========================================================= */

.gspl-manpower-page .gspl-workforce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #dfe4e8;
    border: 1px solid #dfe4e8;
}

.gspl-manpower-page .gspl-workforce-item {
    padding: 32px 26px;
    background: #fff;
}

.gspl-manpower-page .gspl-workforce-item > span {
    color: var(--gspl-gold);
    font-size: 12px;
    font-weight: 700;
}

.gspl-manpower-page .gspl-workforce-item h3 {
    margin: 18px 0 10px;
    color: var(--gspl-navy);
    font-size: 19px;
}

.gspl-manpower-page .gspl-workforce-item p {
    margin: 0;
    color: var(--gspl-text);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   PROCESS
========================================================= */

.gspl-manpower-page .gspl-process-section {
    background: var(--gspl-light);
}

.gspl-manpower-page .gspl-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gspl-manpower-page .gspl-process-item {
    padding: 30px 22px;
    background: #fff;
    border-top: 3px solid var(--gspl-gold);
}

.gspl-manpower-page .gspl-process-item h3 {
    margin: 20px 0 12px;
    color: var(--gspl-navy);
    font-size: 18px;
}

.gspl-manpower-page .gspl-process-item p {
    margin: 0;
    color: var(--gspl-text);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   QUALITY & SAFETY
========================================================= */

.gspl-manpower-page .gspl-quality-section {
    padding: 90px 0;
    background: #fff;
}

.gspl-manpower-page .gspl-quality-content h2 {
    margin: 0 0 22px;
}

.gspl-manpower-page .gspl-quality-content .gspl-btn {
    margin-top: 15px;
}

.gspl-manpower-page .gspl-quality-stats {
    display: grid;
    gap: 15px;
}

.gspl-manpower-page .gspl-quality-stat {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 28px;
    background: var(--gspl-light);
    border-left: 4px solid var(--gspl-gold);
}

.gspl-manpower-page .gspl-quality-stat strong {
    color: var(--gspl-gold);
    font-size: 28px;
}

.gspl-manpower-page .gspl-quality-stat span {
    color: var(--gspl-navy);
    font-size: 18px;
    font-weight: 700;
}

/* =========================================================
   FINAL CTA
========================================================= */

.gspl-manpower-page .gspl-manpower-cta {
    text-align: center;
}

.gspl-manpower-page .gspl-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.gspl-manpower-page .gspl-cta-content h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
}

.gspl-manpower-page .gspl-cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .gspl-manpower-page .gspl-manpower-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gspl-manpower-page .gspl-workforce-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gspl-manpower-page .gspl-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gspl-manpower-page .gspl-two-column {
        gap: 40px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gspl-manpower-page .gspl-manpower-hero {
        min-height: 550px;
    }

    .gspl-manpower-page .gspl-manpower-hero-text {
        padding: 70px 0;
    }

    .gspl-manpower-page .gspl-manpower-hero h1 {
        font-size: 38px;
    }

    .gspl-manpower-page .gspl-manpower-hero p {
        font-size: 16px;
    }

    .gspl-manpower-page .gspl-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gspl-manpower-page .gspl-manpower-cards,
    .gspl-manpower-page .gspl-workforce-grid,
    .gspl-manpower-page .gspl-process-grid {
        grid-template-columns: 1fr;
    }

    .gspl-manpower-page .gspl-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gspl-manpower-page .gspl-info-item {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .gspl-manpower-page .gspl-section,
    .gspl-manpower-page .gspl-dark-section,
    .gspl-manpower-page .gspl-quality-section {
        padding: 65px 0;
    }

    .gspl-manpower-page .gspl-section-image,
    .gspl-manpower-page .gspl-dark-image {
        min-height: 300px;
    }

    .gspl-manpower-page .gspl-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .gspl-manpower-page .gspl-btn {
        width: 100%;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gspl-manpower-page .gspl-info-grid {
        grid-template-columns: 1fr;
    }

    .gspl-manpower-page .gspl-manpower-hero h1 {
        font-size: 34px;
    }

    .gspl-manpower-page .gspl-section-heading {
        margin-bottom: 40px;
    }
}


/* =========================================================
   GSPL FABRICATION INNER PAGE
   Deliberately different from the Home / Manpower hero design.
   No hero section.
========================================================= */

.gspl-fabrication-inner{
    --gspl-navy:#102335;
    --gspl-deep:#0a1b2b;
    --gspl-gold:#c79a45;
    --gspl-text:#65717d;
    --gspl-light:#f4f6f7;
    --gspl-border:#dfe4e8;
    font-family:Arial,Helvetica,sans-serif;
}
.gspl-fabrication-inner .gspl-fab-container{
    width:min(1180px,calc(100% - 48px));max-width:1180px;margin:auto;
}

/* Compact page heading */
.gspl-fab-pagehead{
    background:#f4f5f5;
    border-bottom:1px solid #e0e3e5;
}
.gspl-fab-pagehead-inner{
    min-height:190px;padding:55px 0;
    display:flex;align-items:flex-end;justify-content:space-between;gap:40px;
}
.gspl-fab-overline{
    display:block;color:var(--gspl-gold);
    font:700 11px/1.2 Arial,sans-serif;
    letter-spacing:2.2px;text-transform:uppercase;
}
.gspl-fab-pagehead h1{
    margin:12px 0 0;color:var(--gspl-navy);
    font:700 44px/1.08 Arial,sans-serif;
    letter-spacing:-1px;
}
.gspl-fab-breadcrumb{
    color:#7a838b;font:400 13px Arial,sans-serif;padding-bottom:4px;
}
.gspl-fab-breadcrumb a{color:#7a838b;text-decoration:none}
.gspl-fab-breadcrumb span{margin:0 10px;color:#b1b6ba}
.gspl-fab-breadcrumb strong{color:var(--gspl-navy);font-weight:600}

/* Intro */
.gspl-fab-intro{padding:95px 0 105px;background:#fff}
.gspl-fab-intro-grid{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    grid-template-rows:auto auto;
    column-gap:85px;row-gap:48px;
    align-items:start;
}
.gspl-fab-intro-title{padding-top:8px}
.gspl-fab-number{
    color:var(--gspl-gold);
    font:700 12px Arial,sans-serif;letter-spacing:2px;
}
.gspl-fab-intro-title h2{
    max-width:510px;margin:18px 0 20px;color:var(--gspl-navy);
    font:700 43px/1.13 Arial,sans-serif;letter-spacing:-1px;
}
.gspl-fab-gold-line{width:62px;height:3px;background:var(--gspl-gold)}
.gspl-fab-intro-copy{padding-top:10px}
.gspl-fab-intro-copy p{
    margin:0 0 17px;color:var(--gspl-text);
    font:400 15px/1.8 Arial,sans-serif;
}
.gspl-fab-intro-copy .gspl-fab-lead{
    color:var(--gspl-navy);font-size:19px;line-height:1.65;
}
.gspl-fab-intro-image{height:365px;overflow:hidden}
.gspl-fab-intro-image img{
    width:100%;height:100%;object-fit:cover;display:block;
}
.gspl-fab-facts{
    display:grid;grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--gspl-border);
    border-bottom:1px solid var(--gspl-border);
}
.gspl-fab-facts div{padding:23px 20px;border-right:1px solid var(--gspl-border)}
.gspl-fab-facts div:last-child{border-right:0}
.gspl-fab-facts strong{
    display:block;color:var(--gspl-gold);
    font:700 12px Arial,sans-serif;letter-spacing:1.5px;margin-bottom:6px;
}
.gspl-fab-facts span{color:var(--gspl-navy);font:600 13px Arial,sans-serif}

/* Services */
.gspl-fab-scope{background:var(--gspl-light);padding:90px 0}
.gspl-fab-section-heading{margin-bottom:45px}
.gspl-fab-section-heading h2{
    margin:11px 0 0;color:var(--gspl-navy);
    font:700 40px/1.15 Arial,sans-serif;letter-spacing:-.7px;
}
.gspl-fab-service-list{border-top:1px solid #cfd6db}
.gspl-fab-service-row{
    display:grid;
    grid-template-columns:75px 1fr 1.25fr;
    gap:30px;
    padding:35px 0;
    border-bottom:1px solid #cfd6db;
    align-items:start;
}
.gspl-fab-service-no{
    color:var(--gspl-gold);
    font:700 14px Arial,sans-serif;letter-spacing:1px;
}
.gspl-fab-service-title h3{
    margin:0 0 7px;color:var(--gspl-navy);
    font:700 23px/1.25 Arial,sans-serif;
}
.gspl-fab-service-title span{
    color:#89939c;font:400 11px Arial,sans-serif;
    letter-spacing:1.2px;text-transform:uppercase;
}
.gspl-fab-service-copy p{
    margin:0 0 10px;color:var(--gspl-text);
    font:400 14px/1.7 Arial,sans-serif;
}
.gspl-fab-service-copy ul{margin:0;padding:0;list-style:none}
.gspl-fab-service-copy li{
    display:inline-block;margin:0 15px 7px 0;color:var(--gspl-navy);
    font:600 12px Arial,sans-serif;
}
.gspl-fab-service-copy li:before{content:"—";color:var(--gspl-gold);margin-right:6px}

/* Quality */
.gspl-fab-quality{padding:105px 0;background:#fff}
.gspl-fab-quality-grid{
    display:grid;grid-template-columns:1.05fr .95fr;
    gap:80px;align-items:center;
}
.gspl-fab-quality-image{position:relative}
.gspl-fab-quality-image img{
    display:block;width:100%;height:500px;object-fit:cover;
}
.gspl-fab-image-label{
    position:absolute;bottom:0;left:0;
    background:var(--gspl-navy);color:#fff;
    padding:13px 18px;font:700 10px Arial,sans-serif;
    letter-spacing:1.5px;
}
.gspl-fab-quality-copy h2{
    max-width:500px;margin:13px 0 18px;color:var(--gspl-navy);
    font:700 40px/1.15 Arial,sans-serif;letter-spacing:-.7px;
}
.gspl-fab-quality-copy>p{
    max-width:560px;margin:0 0 28px;color:var(--gspl-text);
    font:400 15px/1.8 Arial,sans-serif;
}
.gspl-fab-quality-points{border-top:1px solid var(--gspl-border)}
.gspl-fab-quality-points>div{
    display:grid;grid-template-columns:40px 1fr;gap:15px;
    padding:19px 0;border-bottom:1px solid var(--gspl-border);
}
.gspl-fab-quality-points>div>span{
    color:var(--gspl-gold);font:700 11px Arial,sans-serif;padding-top:3px;
}
.gspl-fab-quality-points h4{
    margin:0 0 5px;color:var(--gspl-navy);font:700 15px Arial,sans-serif;
}
.gspl-fab-quality-points p{
    margin:0;color:var(--gspl-text);font:400 13px/1.6 Arial,sans-serif;
}

/* Systems */
.gspl-fab-systems{padding:90px 0;background:var(--gspl-deep);color:#fff}
.gspl-fab-systems-top{
    display:flex;justify-content:space-between;align-items:end;
    gap:50px;margin-bottom:42px;
}
.gspl-fab-systems h2{
    margin:12px 0 0;color:#fff;font:700 40px/1.15 Arial,sans-serif;
}
.gspl-fab-systems-top>p{
    max-width:390px;margin:0;color:rgba(255,255,255,.62);
    font:400 14px/1.7 Arial,sans-serif;
}
.gspl-fab-system-index{
    display:grid;grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.16);
    border-left:1px solid rgba(255,255,255,.16);
}
.gspl-fab-system-index div{
    min-height:76px;padding:21px 20px;
    border-right:1px solid rgba(255,255,255,.16);
    border-bottom:1px solid rgba(255,255,255,.16);
    color:#fff;font:600 13px/1.4 Arial,sans-serif;
    display:flex;align-items:center;gap:15px;
}
.gspl-fab-system-index span{
    color:var(--gspl-gold);font:700 10px Arial,sans-serif;
}

/* Projects */
.gspl-fab-project-section{padding:95px 0}
.gspl-fab-project-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
.gspl-fab-project-grid article{
    background:#fff;border:1px solid var(--gspl-border);
}
.gspl-fab-project-grid img{
    display:block;width:100%;height:230px;object-fit:cover;
}
.gspl-fab-project-grid article>div{padding:22px 23px 25px}
.gspl-fab-project-grid span{
    color:var(--gspl-gold);font:700 11px Arial,sans-serif;letter-spacing:1.5px;
}
.gspl-fab-project-grid h3{
    margin:12px 0 8px;color:var(--gspl-navy);
    font:700 20px Arial,sans-serif;
}
.gspl-fab-project-grid p{
    margin:0;color:var(--gspl-text);font:400 13px/1.65 Arial,sans-serif;
}

/* CTA strip */
.gspl-fab-contact-strip{
    background:var(--gspl-gold);padding:37px 0;
}
.gspl-fab-contact-strip .gspl-fab-container{
    display:flex;align-items:center;justify-content:space-between;gap:35px;
}
.gspl-fab-contact-strip .gspl-fab-overline{color:#fff}
.gspl-fab-contact-strip h2{
    margin:8px 0 0;color:#fff;font:700 27px/1.2 Arial,sans-serif;
}
.gspl-fab-contact-strip a{
    flex:0 0 auto;padding:15px 22px;border:1px solid rgba(255,255,255,.7);
    color:#fff;text-decoration:none;font:700 11px Arial,sans-serif;
    letter-spacing:1.4px;
}
.gspl-fab-contact-strip a span{margin-left:10px;font-size:16px}

/* Responsive */
@media(max-width:900px){
    .gspl-fab-intro-grid,.gspl-fab-quality-grid{grid-template-columns:1fr;gap:40px}
    .gspl-fab-intro-image{order:3}
    .gspl-fab-facts{order:4}
    .gspl-fab-service-row{grid-template-columns:55px 1fr;gap:20px}
    .gspl-fab-service-copy{grid-column:2}
    .gspl-fab-system-index{grid-template-columns:repeat(2,1fr)}
    .gspl-fab-project-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:700px){
    .gspl-fabrication-inner .gspl-fab-container{width:calc(100% - 36px)}
    .gspl-fab-pagehead-inner{min-height:150px;padding:38px 0;display:block}
    .gspl-fab-pagehead h1{font-size:34px}
    .gspl-fab-breadcrumb{margin-top:20px}
    .gspl-fab-intro,.gspl-fab-quality,.gspl-fab-project-section{padding:65px 0}
    .gspl-fab-intro-title h2,.gspl-fab-quality-copy h2,.gspl-fab-section-heading h2,.gspl-fab-systems h2{font-size:31px}
    .gspl-fab-facts{grid-template-columns:1fr}
    .gspl-fab-facts div{border-right:0;border-bottom:1px solid var(--gspl-border)}
    .gspl-fab-facts div:last-child{border-bottom:0}
    .gspl-fab-service-row{grid-template-columns:40px 1fr;gap:15px;padding:28px 0}
    .gspl-fab-service-copy{grid-column:2}
    .gspl-fab-service-title h3{font-size:20px}
    .gspl-fab-quality-image img{height:330px}
    .gspl-fab-systems{padding:65px 0}
    .gspl-fab-systems-top{display:block}
    .gspl-fab-systems-top>p{margin-top:20px}
    .gspl-fab-system-index,.gspl-fab-project-grid{grid-template-columns:1fr}
    .gspl-fab-contact-strip .gspl-fab-container{display:block}
    .gspl-fab-contact-strip a{display:inline-block;margin-top:22px}
}


/* =========================================================
   GSPL HSE INNER PAGE
   No hero. Different visual language from Home + Manpower +
   Fabrication: editorial safety page with structured bands.
========================================================= */

.gspl-hse-page{
    --navy:#102335;
    --deep:#081a2a;
    --gold:#c79a45;
    --text:#68747f;
    --light:#f3f5f6;
    --border:#dfe4e8;
    font-family:Arial,Helvetica,sans-serif;
}
.gspl-hse-container{
    width:min(1180px,calc(100% - 48px));
    max-width:1180px;
    margin:0 auto;
    box-sizing:border-box;
}
.gspl-hse-overline{
    display:block;
    color:var(--gold);
    font:700 11px/1.2 Arial,sans-serif;
    letter-spacing:2.2px;
    text-transform:uppercase;
}

.gspl-hse-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.gspl-hse-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(8, 26, 42, 0.65);

    z-index: 1;
    pointer-events: none;
}

/* HERO CONTENT ABOVE OVERLAY */
.gspl-hse-hero-content {
    position: relative;
    z-index: 2;

    min-height: 430px;
    width: 100%;
    padding: 70px 0;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gspl-hse-hero-text{
    max-width:650px;
}

.gspl-hse-hero .gspl-hse-overline{
    color:var(--gold);
}

.gspl-hse-hero h1{
    margin:14px 0 15px;
    color:#fff;
    font:700 64px/1 Arial,sans-serif;
    letter-spacing:-1.5px;
}

.gspl-hse-hero-text p{
    max-width:600px;
    margin:0;
    color:rgba(255,255,255,.92);
    font:400 18px/1.7 Arial,sans-serif;
}

.gspl-hse-hero .gspl-hse-breadcrumb{
    position:absolute;
    right:0;
    bottom:35px;
    color:rgba(255,255,255,.78);
    font:400 13px Arial,sans-serif;
}

.gspl-hse-hero .gspl-hse-breadcrumb a{
    color:rgba(255,255,255,.78);
    text-decoration:none;
}

.gspl-hse-hero .gspl-hse-breadcrumb span{
    margin:0 10px;
    color:rgba(255,255,255,.50);
}

.gspl-hse-hero .gspl-hse-breadcrumb strong{
    color:#fff;
}

/* SAFETY STATEMENT */
.gspl-hse-statement{
    padding:82px 0 88px;
    background:#fff;
}
.gspl-hse-statement-grid{
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:85px;
    align-items:center;
}
.gspl-hse-number{
    color:var(--gold);
    font:700 12px Arial,sans-serif;
    letter-spacing:2px;
}
.gspl-hse-statement-heading h2{
    max-width:480px;
    margin:18px 0 20px;
    color:var(--navy);
    font:700 43px/1.13 Arial,sans-serif;
    letter-spacing:-1px;
}
.gspl-hse-line{
    width:62px;
    height:3px;
    background:var(--gold);
}
.gspl-hse-quote{
    position:relative;
    padding:38px 42px 34px 65px;
    background:var(--navy);
}
.gspl-hse-quote-mark{
    position:absolute;
    top:22px;
    left:28px;
    color:var(--gold);
    font:700 58px/1 Georgia,serif;
}
.gspl-hse-quote p{
    margin:0 0 20px;
    color:#fff;
    font:600 22px/1.55 Arial,sans-serif;
}
.gspl-hse-quote small{
    color:var(--gold);
    font:700 10px Arial,sans-serif;
    letter-spacing:1.8px;
}

/* CULTURE */
.gspl-hse-culture{
    padding:95px 0;
    background:var(--light);
}
.gspl-hse-culture-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:80px;
    align-items:center;
}
.gspl-hse-culture-image{
    position:relative;
}
.gspl-hse-culture-image img{
    display:block;
    width:100%;
    height:480px;
    object-fit:cover;
}
.gspl-hse-image-tag{
    position:absolute;
    left:0;
    bottom:0;
    padding:13px 18px;
    background:var(--gold);
    color:#fff;
    font:700 10px Arial,sans-serif;
    letter-spacing:1.5px;
}
.gspl-hse-culture-copy h2{
    margin:13px 0 18px;
    color:var(--navy);
    font:700 40px/1.15 Arial,sans-serif;
    letter-spacing:-.7px;
}
.gspl-hse-culture-copy p{
    margin:0 0 17px;
    color:var(--text);
    font:400 15px/1.8 Arial,sans-serif;
}
.gspl-hse-culture-copy .gspl-hse-lead{
    color:var(--navy);
    font-size:19px;
    line-height:1.6;
}

/* PILLARS */
.gspl-hse-pillars{
    padding:90px 0;
    background:#fff;
}
.gspl-hse-section-title{
    margin-bottom:45px;
}
.gspl-hse-section-title h2{
    margin:12px 0 0;
    max-width:700px;
    color:var(--navy);
    font:700 40px/1.15 Arial,sans-serif;
    letter-spacing:-.7px;
}
.gspl-hse-pillar-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--border);
    border-left:1px solid var(--border);
}
.gspl-hse-pillar-grid article{
    min-height:260px;
    padding:28px 25px;
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);
}
.gspl-hse-pillar-grid article>span{
    color:var(--gold);
    font:700 11px Arial,sans-serif;
    letter-spacing:1.5px;
}
.gspl-hse-pillar-grid h3{
    margin:38px 0 12px;
    color:var(--navy);
    font:700 21px Arial,sans-serif;
}
.gspl-hse-pillar-grid p{
    margin:0;
    color:var(--text);
    font:400 13px/1.7 Arial,sans-serif;
}

/* COMMITTEE */
/* =========================================
   SAFETY COMMITTEE
   ========================================= */

.gspl-hse-committee {
    padding: 95px 0;
    background: #102335 !important;
}

.gspl-hse-committee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.gspl-hse-committee .gspl-hse-overline {
    color: #c79a45 !important;
}

.gspl-hse-committee .gspl-hse-committee-grid h2 {
    margin: 12px 0 20px;
    color: #ffffff !important;
    font: 700 40px/1.15 Arial, sans-serif;
}

.gspl-hse-committee .gspl-hse-committee-grid > div:first-child > p {
    max-width: 560px;
    margin: 0 0 17px;
    color: rgba(255,255,255,.72) !important;
    font: 400 15px/1.8 Arial, sans-serif;
}

.gspl-hse-responsibilities {
    border-top: 1px solid rgba(255,255,255,.16);
}

.gspl-hse-responsibilities > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.gspl-hse-responsibilities span {
    color: #c79a45 !important;
    font: 700 11px Arial, sans-serif;
    padding-top: 3px;
}

.gspl-hse-responsibilities p {
    margin: 0;
    color: #ffffff !important;
    font: 500 14px/1.65 Arial, sans-serif;
}
/* PRACTICES */
.gspl-hse-practices{
    padding:95px 0;
    background:#fff;
}
.gspl-hse-practices-top{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:60px;
    margin-bottom:48px;
}
.gspl-hse-practices-top h2{
    margin:12px 0 0;
    color:var(--navy);
    font:700 40px/1.15 Arial,sans-serif;
}
.gspl-hse-practices-top>p{
    max-width:390px;
    margin:0;
    color:var(--text);
    font:400 14px/1.75 Arial,sans-serif;
}
.gspl-hse-practice-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    border-top:1px solid var(--border);
    border-left:1px solid var(--border);
}
.gspl-hse-practice-list>div{
    min-height:190px;
    padding:27px 24px;
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);
}
.gspl-hse-practice-list span{
    color:var(--gold);
    font:700 11px Arial,sans-serif;
    letter-spacing:1.5px;
}
.gspl-hse-practice-list h3{
    margin:25px 0 9px;
    color:var(--navy);
    font:700 17px Arial,sans-serif;
}
.gspl-hse-practice-list p{
    margin:0;
    color:var(--text);
    font:400 13px/1.65 Arial,sans-serif;
}

/* ENVIRONMENT */
.gspl-hse-environment{
    padding:95px 0;
    background:var(--light);
}
.gspl-hse-environment-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}
.gspl-hse-environment-copy h2{
    max-width:500px;
    margin:12px 0 18px;
    color:var(--navy);
    font:700 40px/1.15 Arial,sans-serif;
}
.gspl-hse-environment-copy>p{
    max-width:570px;
    margin:0 0 25px;
    color:var(--text);
    font:400 15px/1.8 Arial,sans-serif;
}
.gspl-hse-env-points{
    border-top:1px solid var(--border);
}
.gspl-hse-env-points>div{
    display:flex;
    gap:12px;
    padding:13px 0;
    border-bottom:1px solid var(--border);
}
.gspl-hse-env-points span{
    color:var(--gold);
    font-weight:700;
}
.gspl-hse-env-points p{
    margin:0;
    color:var(--navy);
    font:600 13px/1.5 Arial,sans-serif;
}
.gspl-hse-environment-box{
    min-height:390px;
    background:var(--gold);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.gspl-hse-big-symbol{
    color:#fff;
    font:700 76px/1 Arial,sans-serif;
    letter-spacing:-4px;
}
.gspl-hse-environment-box p{
    margin:18px 0 10px;
    color:#fff;
    font:600 19px Arial,sans-serif;
}
.gspl-hse-environment-box>span{
    color:rgba(255,255,255,.85);
    font:700 9px Arial,sans-serif;
    letter-spacing:2px;
}

/* REPUTATION */
.gspl-hse-reputation{
    padding:95px 0;
    background:#fff;
}
.gspl-hse-testimonials{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.gspl-hse-testimonials article{
    padding:30px 27px;
    border:1px solid var(--border);
}
.gspl-hse-stars{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
}
.gspl-hse-testimonials p{
    min-height:105px;
    margin:23px 0;
    color:var(--navy);
    font:500 15px/1.7 Arial,sans-serif;
}
.gspl-hse-testimonials article>span{
    color:#7b858d;
    font:700 10px Arial,sans-serif;
    letter-spacing:1.5px;
}

/* CTA */
.gspl-hse-contact-strip{
    padding:38px 0;
    background:var(--gold);
}
.gspl-hse-contact-strip .gspl-hse-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:35px;
}
.gspl-hse-contact-strip .gspl-hse-overline{color:#fff}
.gspl-hse-contact-strip h2{
    margin:8px 0 0;
    color:#fff;
    font:700 27px/1.2 Arial,sans-serif;
}
.gspl-hse-contact-strip a{
    flex:0 0 auto;
    padding:15px 22px;
    border:1px solid rgba(255,255,255,.75);
    color:#fff;
    text-decoration:none;
    font:700 11px Arial,sans-serif;
    letter-spacing:1.4px;
}
.gspl-hse-contact-strip a span{
    margin-left:10px;
    font-size:16px;
}

/* RESPONSIVE */
@media(max-width:950px){
    .gspl-hse-statement-grid,
    .gspl-hse-culture-grid,
    .gspl-hse-committee-grid,
    .gspl-hse-environment-grid{
        grid-template-columns:1fr;
        gap:45px;
    }
    .gspl-hse-pillar-grid{grid-template-columns:repeat(2,1fr)}
    .gspl-hse-practice-list{grid-template-columns:repeat(2,1fr)}
    .gspl-hse-testimonials{grid-template-columns:1fr}
    .gspl-hse-testimonials p{min-height:0}
}
@media(max-width:700px){
    .gspl-hse-container{width:calc(100% - 36px)}
    .gspl-hse-hero{
        min-height:360px;
        background-position:center center;
    }
    .gspl-hse-hero-content{
        min-height:360px;
        padding:55px 0 75px;
    }
    .gspl-hse-hero h1{font-size:46px}
    .gspl-hse-hero-text p{font-size:16px;line-height:1.6}
    .gspl-hse-hero .gspl-hse-breadcrumb{
        left:0;
        right:auto;
        bottom:28px;
    }
    .gspl-hse-statement,
    .gspl-hse-culture,
    .gspl-hse-pillars,
    .gspl-hse-committee,
    .gspl-hse-practices,
    .gspl-hse-environment,
    .gspl-hse-reputation{padding:65px 0}
    .gspl-hse-statement-heading h2,
    .gspl-hse-culture-copy h2,
    .gspl-hse-section-title h2,
    .gspl-hse-committee h2,
    .gspl-hse-practices-top h2,
    .gspl-hse-environment-copy h2{font-size:31px}
    .gspl-hse-quote{padding:35px 28px 30px 50px}
    .gspl-hse-quote p{font-size:18px}
    .gspl-hse-culture-image img{height:330px}
    .gspl-hse-pillar-grid,
    .gspl-hse-practice-list{grid-template-columns:1fr}
    .gspl-hse-pillar-grid article{min-height:0}
    .gspl-hse-practices-top{
        display:block;
    }
    .gspl-hse-practices-top>p{margin-top:20px}
    .gspl-hse-environment-box{min-height:300px}
    .gspl-hse-big-symbol{font-size:60px}
    .gspl-hse-contact-strip .gspl-hse-container{
        display:block;
    }
    .gspl-hse-contact-strip a{
        display:inline-block;
        margin-top:22px;
    }
}


.gspl-contact-page{--navy:#102335;--deep:#081a2a;--gold:#c79a45;--text:#68747f;--light:#f3f5f6;--border:#dfe4e8;font-family:Arial,Helvetica,sans-serif}.gspl-contact-container{width:min(1180px,calc(100% - 48px));max-width:1180px;margin:auto;box-sizing:border-box}.gspl-contact-overline{display:block;color:var(--gold);font:700 11px/1.2 Arial,sans-serif;letter-spacing:2.2px;text-transform:uppercase}.gspl-contact-pagehead{background:#f4f5f5;border-bottom:1px solid var(--border)}.gspl-contact-pagehead-inner{min-height:190px;padding:55px 0;display:flex;align-items:flex-end;justify-content:space-between;gap:40px}.gspl-contact-pagehead h1{margin:12px 0 0;color:var(--navy);font:700 45px/1 Arial,sans-serif;letter-spacing:-1px}.gspl-contact-breadcrumb{color:#7b858d;font:400 13px Arial,sans-serif;padding-bottom:4px}.gspl-contact-breadcrumb a{color:#7b858d;text-decoration:none}.gspl-contact-breadcrumb span{margin:0 10px;color:#b4babf}.gspl-contact-breadcrumb strong{color:var(--navy)}.gspl-contact-intro{padding:85px 0 0;background:#fff}.gspl-contact-intro-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:85px;align-items:center}.gspl-contact-number{color:var(--gold);font:700 12px Arial,sans-serif;letter-spacing:2px}.gspl-contact-intro h2{max-width:520px;margin:18px 0 20px;color:var(--navy);font:700 43px/1.13 Arial,sans-serif;letter-spacing:-1px}.gspl-contact-line{width:62px;height:3px;background:var(--gold)}.gspl-contact-intro-copy p{margin:0 0 17px;color:var(--text);font:400 15px/1.8 Arial,sans-serif}.gspl-contact-intro-copy .gspl-contact-lead{color:var(--navy);font-size:19px;line-height:1.65}.gspl-contact-info-grid{margin-top:60px;display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.gspl-contact-info-card{min-height:130px;padding:25px;display:flex;gap:18px;align-items:center;border-right:1px solid var(--border)}.gspl-contact-info-card:last-child{border-right:0}.gspl-contact-info-card>span{flex:0 0 34px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;border:1px solid var(--gold);color:var(--gold);font:700 10px Arial,sans-serif}.gspl-contact-info-card small{display:block;color:#8a939a;font:700 9px Arial,sans-serif;letter-spacing:1.6px}.gspl-contact-info-card h3{margin:7px 0 5px;color:var(--navy);font:700 16px Arial,sans-serif}.gspl-contact-info-card h3 a{color:inherit;text-decoration:none}.gspl-contact-info-card p{margin:0;color:var(--text);font:400 12px Arial,sans-serif}.gspl-contact-main{padding:95px 0;background:var(--light)}.gspl-contact-main-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:75px;align-items:start}.gspl-contact-form-wrap h2{margin:12px 0 10px;color:var(--navy);font:700 38px/1.15 Arial,sans-serif}.gspl-contact-form-wrap>p{max-width:600px;margin:0 0 35px;color:var(--text);font:400 14px/1.7 Arial,sans-serif}.gspl-contact-form{display:flex;flex-direction:column;gap:19px}.gspl-contact-form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}.gspl-contact-form label{display:block;margin:0 0 8px;color:var(--navy);font:700 10px Arial,sans-serif;letter-spacing:1px;text-transform:uppercase}.gspl-contact-form input,.gspl-contact-form select,.gspl-contact-form textarea{width:100%;box-sizing:border-box;border:1px solid #d4dbe0;background:#fff;padding:14px 15px;border-radius:0;color:var(--navy);font:400 13px Arial,sans-serif;outline:none}.gspl-contact-form input:focus,.gspl-contact-form select:focus,.gspl-contact-form textarea:focus{border-color:var(--gold)}.gspl-contact-form textarea{resize:vertical;min-height:145px}.gspl-contact-form button{align-self:flex-start;border:0;background:var(--navy);color:#fff;padding:16px 24px;cursor:pointer;font:700 11px Arial,sans-serif;letter-spacing:1.5px}.gspl-contact-form button:hover{background:var(--gold)}.gspl-contact-form button span{margin-left:10px;font-size:15px}.gspl-contact-side-image{height:330px;overflow:hidden}.gspl-contact-side-image img{display:block;width:100%;height:100%;object-fit:cover}.gspl-contact-side-card{padding:30px;background:var(--navy)}.gspl-contact-side-card h3{margin:12px 0 18px;color:#fff;font:700 25px/1.25 Arial,sans-serif}.gspl-contact-side-card ul{margin:0;padding:0;list-style:none;border-top:1px solid rgba(255,255,255,.14)}.gspl-contact-side-card li{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.72);font:400 13px/1.5 Arial,sans-serif}.gspl-contact-side-card li:before{content:"✓";color:var(--gold);font-weight:700;margin-right:10px}.gspl-contact-services{padding:95px 0;background:#fff}.gspl-contact-section-title{margin-bottom:45px}.gspl-contact-section-title h2{max-width:700px;margin:12px 0 0;color:var(--navy);font:700 40px/1.15 Arial,sans-serif}.gspl-contact-service-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--border);border-left:1px solid var(--border)}.gspl-contact-service-grid>a{min-height:245px;padding:28px 24px;border-right:1px solid var(--border);border-bottom:1px solid var(--border);text-decoration:none;background:#fff}.gspl-contact-service-grid>a:hover{background:var(--light)}.gspl-contact-service-grid>a>span{color:var(--gold);font:700 11px Arial,sans-serif;letter-spacing:1.5px}.gspl-contact-service-grid h3{margin:40px 0 11px;color:var(--navy);font:700 20px Arial,sans-serif}.gspl-contact-service-grid p{min-height:65px;margin:0 0 18px;color:var(--text);font:400 13px/1.65 Arial,sans-serif}.gspl-contact-service-grid b{color:var(--gold);font:700 9px Arial,sans-serif;letter-spacing:1.3px}.gspl-contact-location{padding:50px 0;background:var(--gold)}.gspl-contact-location-grid{display:flex;align-items:center;justify-content:space-between;gap:35px}.gspl-contact-location .gspl-contact-overline{color:#fff}.gspl-contact-location h2{max-width:650px;margin:8px 0 0;color:#fff;font:700 29px/1.2 Arial,sans-serif}.gspl-contact-location-actions{display:flex;gap:10px;flex-wrap:wrap}.gspl-contact-gold-btn,.gspl-contact-outline-btn{padding:15px 20px;text-decoration:none;font:700 10px Arial,sans-serif;letter-spacing:1.4px}.gspl-contact-gold-btn{background:#fff;color:var(--navy)}.gspl-contact-outline-btn{border:1px solid rgba(255,255,255,.8);color:#fff}@media(max-width:950px){.gspl-contact-intro-grid,.gspl-contact-main-grid{grid-template-columns:1fr;gap:45px}.gspl-contact-info-grid{grid-template-columns:1fr}.gspl-contact-info-card{border-right:0;border-bottom:1px solid var(--border)}.gspl-contact-info-card:last-child{border-bottom:0}.gspl-contact-service-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:700px){.gspl-contact-container{width:calc(100% - 36px)}.gspl-contact-pagehead-inner{min-height:150px;padding:38px 0;display:block}.gspl-contact-pagehead h1{font-size:34px}.gspl-contact-breadcrumb{margin-top:20px}.gspl-contact-intro,.gspl-contact-main,.gspl-contact-services{padding:65px 0}.gspl-contact-intro h2,.gspl-contact-form-wrap h2,.gspl-contact-section-title h2{font-size:31px}.gspl-contact-form-row{grid-template-columns:1fr}.gspl-contact-service-grid{grid-template-columns:1fr}.gspl-contact-location-grid{display:block}.gspl-contact-location-actions{margin-top:22px}}

/* =========================================================
   GSPL QA/QC INNER PAGE
   Distinct editorial / technical layout — no hero section.
========================================================= */

.gspl-qaqc-page{
    --q-navy:#102335;
    --q-deep:#091a29;
    --q-gold:#c79a45;
    --q-text:#68747f;
    --q-light:#f2f4f5;
    --q-line:#d9dfe3;
    font-family:Arial,Helvetica,sans-serif;
}
.gspl-qaqc-container{
    width:min(1180px,calc(100% - 48px));
    margin:0 auto;
}

/* INTRO */
.gspl-qaqc-intro{
    padding:90px 0 95px;
    background:#fff;
    border-bottom:1px solid var(--q-line);
}
.gspl-qaqc-intro-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:100px;
    align-items:end;
}
.gspl-qaqc-kicker{
    display:block;
    color:var(--q-gold);
    font:700 10px/1.2 Arial,sans-serif;
    letter-spacing:2.3px;
}
.gspl-qaqc-intro h1{
    margin:18px 0 25px;
    color:var(--q-navy);
    font:700 clamp(48px,5vw,76px)/.98 Georgia,"Times New Roman",serif;
    letter-spacing:-2.5px;
}
.gspl-qaqc-intro h1 em{
    color:#65727d;
    font-style:italic;
    font-weight:400;
}
.gspl-qaqc-rule{
    width:70px;
    height:3px;
    background:var(--q-gold);
}
.gspl-qaqc-index{
    display:block;
    margin-bottom:20px;
    color:#8b949b;
    font:700 9px Arial,sans-serif;
    letter-spacing:2px;
}
.gspl-qaqc-intro-right{
    padding-bottom:3px;
}
.gspl-qaqc-intro-right p{
    max-width:500px;
    margin:0 0 18px;
    color:var(--q-text);
    font:400 14px/1.8 Arial,sans-serif;
}
.gspl-qaqc-intro-right .gspl-qaqc-lead{
    color:var(--q-navy);
    font-size:20px;
    line-height:1.6;
}

/* STATEMENT */
.gspl-qaqc-statement{
    padding:90px 0;
    background:var(--q-deep);
}
.gspl-qaqc-statement-grid{
    display:grid;
    grid-template-columns:270px 1fr;
    gap:90px;
}
.gspl-qaqc-statement-label{
    border-left:2px solid var(--q-gold);
    padding-left:25px;
}
.gspl-qaqc-statement-label span{
    display:block;
    margin-bottom:28px;
    color:var(--q-gold);
    font:700 9px Arial,sans-serif;
    letter-spacing:2px;
}
.gspl-qaqc-statement-label strong{
    color:#fff;
    font:700 25px/1.1 Arial,sans-serif;
    letter-spacing:.5px;
}
.gspl-qaqc-statement-text h2{
    max-width:780px;
    margin:0 0 28px;
    color:#fff;
    font:700 42px/1.15 Georgia,"Times New Roman",serif;
    letter-spacing:-1px;
}
.gspl-qaqc-statement-text p{
    max-width:780px;
    margin:0 0 17px;
    color:rgba(255,255,255,.68);
    font:400 14px/1.8 Arial,sans-serif;
}

/* WORKFLOW */
.gspl-qaqc-workflow{
    padding:95px 0;
    background:#fff;
}
.gspl-qaqc-section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:60px;
    margin-bottom:45px;
}
.gspl-qaqc-section-head h2{
    margin:12px 0 0;
    color:var(--q-navy);
    font:700 40px/1.1 Georgia,"Times New Roman",serif;
}
.gspl-qaqc-section-head>p{
    max-width:420px;
    margin:0;
    color:var(--q-text);
    font:400 13px/1.7 Arial,sans-serif;
}
.gspl-qaqc-process{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--q-line);
    border-left:1px solid var(--q-line);
}
.gspl-qaqc-process-item{
    min-height:185px;
    padding:27px;
    display:grid;
    grid-template-columns:40px 1fr;
    gap:20px;
    border-right:1px solid var(--q-line);
    border-bottom:1px solid var(--q-line);
}
.gspl-qaqc-process-item>span{
    color:var(--q-gold);
    font:700 11px Arial,sans-serif;
    letter-spacing:1px;
}
.gspl-qaqc-process-item h3{
    margin:0 0 12px;
    color:var(--q-navy);
    font:700 18px Arial,sans-serif;
}
.gspl-qaqc-process-item p{
    margin:0;
    color:var(--q-text);
    font:400 12px/1.7 Arial,sans-serif;
}

/* CAPABILITY */
.gspl-qaqc-capability{
    padding:0 0 95px;
    background:#fff;
}
.gspl-qaqc-capability-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    align-items:stretch;
}
.gspl-qaqc-capability-image{
    position:relative;
    min-height:560px;
    overflow:hidden;
    background:#d9dee2;
}
.gspl-qaqc-capability-image img{
    width:100%;
    height:100%;
    min-height:560px;
    display:block;
    object-fit:cover;
}
.gspl-qaqc-image-caption{
    position:absolute;
    left:25px;
    bottom:25px;
    width:250px;
    padding:20px;
    background:var(--q-navy);
}
.gspl-qaqc-image-caption span{
    display:block;
    margin-bottom:7px;
    color:var(--q-gold);
    font:700 9px Arial,sans-serif;
    letter-spacing:1.5px;
}
.gspl-qaqc-image-caption strong{
    color:#fff;
    font:700 18px/1.25 Arial,sans-serif;
}
.gspl-qaqc-capability-content{
    padding:65px 60px;
    background:var(--q-light);
}
.gspl-qaqc-capability-content h2{
    margin:13px 0 20px;
    color:var(--q-navy);
    font:700 40px/1.1 Georgia,"Times New Roman",serif;
}
.gspl-qaqc-capability-content>p{
    margin:0 0 30px;
    color:var(--q-text);
    font:400 14px/1.8 Arial,sans-serif;
}
.gspl-qaqc-check-list{
    border-top:1px solid var(--q-line);
}
.gspl-qaqc-check-list div{
    display:flex;
    gap:13px;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid var(--q-line);
}
.gspl-qaqc-check-list span{
    color:var(--q-gold);
    font-weight:700;
}
.gspl-qaqc-check-list strong{
    color:var(--q-navy);
    font:700 12px Arial,sans-serif;
}

/* DOCUMENTS */
.gspl-qaqc-documents{
    padding:95px 0;
    background:#f8f9f9;
}
.gspl-qaqc-doc-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:50px;
    margin-bottom:45px;
}
.gspl-qaqc-doc-header h2{
    max-width:690px;
    margin:12px 0 0;
    color:var(--q-navy);
    font:700 39px/1.12 Georgia,"Times New Roman",serif;
}
.gspl-qaqc-doc-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}
.gspl-qaqc-doc-card{
    min-height:225px;
    padding:25px;
    box-sizing:border-box;
    background:#fff;
    border:1px solid var(--q-line);
    border-top:3px solid var(--q-gold);
}
.gspl-qaqc-doc-card>span{
    color:var(--q-gold);
    font:700 10px Arial,sans-serif;
    letter-spacing:1.5px;
}
.gspl-qaqc-doc-card h3{
    margin:48px 0 12px;
    color:var(--q-navy);
    font:700 17px Arial,sans-serif;
}
.gspl-qaqc-doc-card p{
    margin:0;
    color:var(--q-text);
    font:400 12px/1.65 Arial,sans-serif;
}

/* FINAL */
.gspl-qaqc-final{
    padding:70px 0;
    background:var(--q-gold);
}
.gspl-qaqc-final-grid{
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:80px;
    align-items:center;
}
.gspl-qaqc-final .gspl-qaqc-kicker{
    color:#fff;
}
.gspl-qaqc-final h2{
    max-width:720px;
    margin:12px 0 0;
    color:#fff;
    font:700 36px/1.15 Georgia,"Times New Roman",serif;
}
.gspl-qaqc-final p{
    margin:0 0 24px;
    color:rgba(255,255,255,.86);
    font:400 13px/1.75 Arial,sans-serif;
}
.gspl-qaqc-final a{
    display:inline-block;
    padding:15px 20px;
    background:#fff;
    color:var(--q-navy);
    text-decoration:none;
    font:700 10px Arial,sans-serif;
    letter-spacing:1.4px;
}
.gspl-qaqc-final a span{
    margin-left:10px;
    color:var(--q-gold);
}

/* RESPONSIVE */
@media(max-width:950px){
    .gspl-qaqc-intro-grid,
    .gspl-qaqc-capability-grid,
    .gspl-qaqc-final-grid{
        grid-template-columns:1fr;
        gap:45px;
    }
    .gspl-qaqc-statement-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .gspl-qaqc-process{
        grid-template-columns:repeat(2,1fr);
    }
    .gspl-qaqc-doc-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:700px){
    .gspl-qaqc-container{
        width:calc(100% - 36px);
    }
    .gspl-qaqc-intro{
        padding:65px 0;
    }
    .gspl-qaqc-intro h1{
        font-size:48px;
        letter-spacing:-1.5px;
    }
    .gspl-qaqc-intro-right .gspl-qaqc-lead{
        font-size:18px;
    }
    .gspl-qaqc-statement,
    .gspl-qaqc-workflow,
    .gspl-qaqc-documents{
        padding:65px 0;
    }
    .gspl-qaqc-statement-text h2,
    .gspl-qaqc-section-head h2,
    .gspl-qaqc-capability-content h2,
    .gspl-qaqc-doc-header h2{
        font-size:31px;
    }
    .gspl-qaqc-section-head,
    .gspl-qaqc-doc-header{
        display:block;
    }
    .gspl-qaqc-section-head>p{
        margin-top:18px;
    }
    .gspl-qaqc-process,
    .gspl-qaqc-doc-grid{
        grid-template-columns:1fr;
    }
    .gspl-qaqc-capability-image,
    .gspl-qaqc-capability-image img{
        min-height:360px;
        height:360px;
    }
    .gspl-qaqc-capability-content{
        padding:45px 30px;
    }
    .gspl-qaqc-final{
        padding:55px 0;
    }
}
.gspl-design-page{--n:#102335;--d:#071a2b;--g:#c79a45;--t:#68747f;--l:#dce1e4;font-family:Arial,Helvetica,sans-serif}.gspl-design-container{width:min(1180px,calc(100% - 48px));margin:auto}.gspl-design-eyebrow{display:block;color:var(--g);font:700 10px Arial;letter-spacing:2.3px}.gspl-design-intro{padding:50px 0 100px;background:#fff}.gspl-design-topline{display:flex;justify-content:space-between;border-bottom:1px solid var(--l);padding-bottom:16px;color:#8a939a;font:700 9px Arial;letter-spacing:1.8px}.gspl-design-intro-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:100px;padding-top:70px;align-items:end}.gspl-design-intro h1{margin:15px 0 0;color:var(--n);font:700 clamp(55px,6vw,88px)/.92 Georgia,serif;letter-spacing:-3px}.gspl-design-intro h1 span{color:#7b858d;font-weight:400;font-style:italic}.gspl-design-intro-copy p{max-width:470px;margin:0 0 18px;color:var(--t);font:14px/1.8 Arial}.gspl-design-intro-copy .gspl-design-lead{color:var(--n);font-size:20px;line-height:1.55}.gspl-design-intro-copy a{display:inline-block;margin-top:12px;color:var(--n);text-decoration:none;font:700 10px Arial;letter-spacing:1.5px}.gspl-design-intro-copy a b{margin-left:12px;color:var(--g);font-size:15px}.gspl-design-visual{padding:90px 0;background:var(--d)}.gspl-design-visual-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:85px;align-items:center}.gspl-design-blueprint{height:470px;position:relative;overflow:hidden;border:1px solid rgba(199,154,69,.55);background:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);background-size:35px 35px}.gspl-design-blueprint:before{content:"";position:absolute;inset:24px;border:1px solid rgba(255,255,255,.15)}.bp-corner{position:absolute;left:35px;top:34px;color:var(--g);font:700 8px Arial;letter-spacing:1.7px}.bp-num{position:absolute;right:32px;top:28px;color:rgba(255,255,255,.25);font:700 50px Arial}.bp-circle{position:absolute;left:50%;top:50%;width:145px;height:145px;border:1px solid rgba(199,154,69,.75);border-radius:50%;transform:translate(-50%,-50%)}.bp-circle:before{content:"";position:absolute;left:50%;top:50%;width:55px;height:55px;border:1px solid rgba(255,255,255,.35);border-radius:50%;transform:translate(-50%,-50%)}.bp-line{position:absolute;left:70px;right:65px;top:220px;height:1px;background:rgba(199,154,69,.7)}.l1{transform:rotate(-18deg)}.l2{transform:rotate(18deg)}.bp-label{position:absolute;padding:5px 8px;border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.7);font:700 7px Arial;letter-spacing:1px}.bp-label.a{left:50px;top:165px}.bp-label.b{right:50px;top:270px}.bp-label.c{left:100px;bottom:100px}.bp-footer{position:absolute;left:35px;right:35px;bottom:34px;padding-top:12px;border-top:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.45);font:700 7px Arial;letter-spacing:1.5px}.gspl-design-visual-copy h2{max-width:650px;margin:15px 0 22px;color:#fff;font:700 43px/1.12 Georgia,serif}.gspl-design-visual-copy>p{max-width:610px;margin:0 0 18px;color:rgba(255,255,255,.65);font:14px/1.8 Arial}.gspl-design-stats{display:grid;grid-template-columns:repeat(3,1fr);margin-top:38px;border-top:1px solid rgba(255,255,255,.14)}.gspl-design-stats div{padding:18px 18px 0 0}.gspl-design-stats b{display:block;margin-bottom:7px;color:var(--g);font:700 24px Arial}.gspl-design-stats span{color:rgba(255,255,255,.55);font:700 8px Arial;letter-spacing:1.4px}.gspl-design-services{padding:95px 0;background:#fff}.gspl-design-section-head{display:flex;justify-content:space-between;align-items:end;gap:60px;margin-bottom:45px}.gspl-design-section-head h2{margin:13px 0 0;color:var(--n);font:700 42px/1.1 Georgia,serif}.gspl-design-section-head>p{max-width:410px;margin:0;color:var(--t);font:13px/1.75 Arial}.gspl-design-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--l);border-left:1px solid var(--l)}.gspl-design-grid article{min-height:220px;padding:25px;border-right:1px solid var(--l);border-bottom:1px solid var(--l)}.gspl-design-grid article:hover{background:#f3f5f6;border-top:3px solid var(--g);padding-top:22px}.gspl-design-grid article>span{color:var(--g);font:700 10px Arial;letter-spacing:1.5px}.gspl-design-grid h3{margin:43px 0 12px;color:var(--n);font:700 17px Arial}.gspl-design-grid p{margin:0;color:var(--t);font:12px/1.7 Arial}.gspl-design-workflow{padding:95px 0;background:#f3f5f6}.gspl-design-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.gspl-design-flow>div{min-height:190px;padding:27px;background:#fff;border:1px solid var(--l)}.gspl-design-flow b{color:var(--g);font:700 10px Arial;letter-spacing:1.5px}.gspl-design-flow h3{margin:45px 0 12px;color:var(--n);font:700 18px Arial}.gspl-design-flow p{margin:0;color:var(--t);font:11px/1.65 Arial}.gspl-design-output{padding:0 0 95px;background:#f3f5f6}.gspl-design-output-grid{display:grid;grid-template-columns:1fr 1fr}.gspl-design-image{position:relative;min-height:530px;overflow:hidden;background:#d8dde0}.gspl-design-image img{width:100%;height:100%;min-height:530px;object-fit:cover;display:block}.gspl-design-image span{position:absolute;left:24px;bottom:24px;padding:11px 14px;background:var(--n);color:#fff;font:700 8px Arial;letter-spacing:1.5px}.gspl-design-output-copy{padding:65px;background:#fff}.gspl-design-output-copy h2{max-width:500px;margin:13px 0 20px;color:var(--n);font:700 40px/1.12 Georgia,serif}.gspl-design-output-copy>p{max-width:500px;margin:0 0 30px;color:var(--t);font:14px/1.8 Arial}.gspl-design-list{border-top:1px solid var(--l)}.gspl-design-list div{display:flex;gap:18px;padding:13px 0;border-bottom:1px solid var(--l);color:var(--n);font:700 11px Arial}.gspl-design-list b{color:var(--g);font-size:9px}.gspl-design-cta{padding:65px 0;background:var(--g)}.gspl-design-cta-row{display:flex;justify-content:space-between;align-items:center;gap:50px}.gspl-design-cta h2{max-width:760px;margin:12px 0 0;color:#fff;font:700 34px/1.15 Georgia,serif}.gspl-design-cta a{padding:16px 21px;background:#fff;color:var(--n);text-decoration:none;font:700 10px Arial;letter-spacing:1.4px}.gspl-design-cta a span{margin-left:10px;color:var(--g)}@media(max-width:900px){.gspl-design-intro-grid,.gspl-design-visual-grid,.gspl-design-output-grid{grid-template-columns:1fr;gap:50px}.gspl-design-grid{grid-template-columns:repeat(2,1fr)}.gspl-design-flow{grid-template-columns:repeat(2,1fr)}.gspl-design-section-head{display:block}.gspl-design-section-head>p{margin-top:18px}.gspl-design-cta-row{display:block}}@media(max-width:600px){.gspl-design-container{width:calc(100% - 36px)}.gspl-design-intro{padding:35px 0 65px}.gspl-design-intro-grid{padding-top:50px}.gspl-design-intro h1{font-size:50px;letter-spacing:-1.8px}.gspl-design-visual,.gspl-design-services,.gspl-design-workflow{padding:65px 0}.gspl-design-blueprint{height:360px}.gspl-design-visual-copy h2,.gspl-design-section-head h2,.gspl-design-output-copy h2{font-size:31px}.gspl-design-grid,.gspl-design-flow{grid-template-columns:1fr}.gspl-design-stats{grid-template-columns:1fr}.gspl-design-image,.gspl-design-image img{min-height:380px;height:380px}.gspl-design-output-copy{padding:45px 30px}.gspl-design-cta h2{font-size:29px}.gspl-design-cta a{display:inline-block;margin-top:25px}}
/* =========================================================
   GOOGLE MAP
========================================================= */

.gspl-contact-map {
    padding: 90px 0;
    background: #f3f5f6;
}

.gspl-contact-map-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 40px;
}

.gspl-contact-map-heading h2 {
    margin: 12px 0 0;
    color: #102335;
    font: 700 42px/1.1 Georgia, "Times New Roman", serif;
}

.gspl-contact-map-heading p {
    max-width: 430px;
    margin: 0;
    color: #68747f;
    font: 14px/1.8 Arial, Helvetica, sans-serif;
}

.gspl-contact-map-wrapper {
    position: relative;
    overflow: hidden;
    background: #ddd;
    border: 1px solid #dce1e4;
    box-shadow: 0 15px 35px rgba(16, 35, 53, 0.08);
}

.gspl-contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* MOBILE */

@media (max-width: 800px) {

    .gspl-contact-map {
        padding: 65px 0;
    }

    .gspl-contact-map-heading {
        display: block;
    }

    .gspl-contact-map-heading p {
        margin-top: 20px;
    }

    .gspl-contact-map-heading h2 {
        font-size: 32px;
    }

    .gspl-contact-map-wrapper iframe {
        height: 350px;
    }
}
/* =========================================================
   GSPL MANPOWER PAGE - ALIGNMENT FIX
========================================================= */

.gspl-manpower-page {
    width: 100%;
    overflow: hidden;
}

.gspl-manpower-container {
    width: min(1180px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

/* Main content alignment */
.gspl-manpower-page section {
    width: 100%;
}

.gspl-manpower-page h1,
.gspl-manpower-page h2,
.gspl-manpower-page h3,
.gspl-manpower-page p {
    text-align: left;
}

/* Intro / heading */
.gspl-manpower-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gspl-manpower-intro-grid > div {
    min-width: 0;
}

/* Text column */
.gspl-manpower-intro-copy {
    max-width: 560px;
    margin-left: auto;
}

.gspl-manpower-intro-copy p {
    margin-left: 0;
    margin-right: 0;
}

/* Cards */
.gspl-manpower-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gspl-manpower-card-grid > * {
    box-sizing: border-box;
    width: 100%;
}

/* Any service grid */
.gspl-manpower-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gspl-manpower-services-grid > * {
    width: 100%;
    box-sizing: border-box;
}

/* Prevent headings from shifting */
.gspl-manpower-page .gspl-eyebrow,
.gspl-manpower-page .gspl-manpower-eyebrow {
    display: block;
    margin-bottom: 12px;
}

/* Consistent section spacing */
.gspl-manpower-page section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Mobile */
@media (max-width: 900px) {

    .gspl-manpower-container {
        width: calc(100% - 40px);
    }

    .gspl-manpower-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gspl-manpower-intro-copy {
        max-width: none;
        margin-left: 0;
    }

    .gspl-manpower-card-grid,
    .gspl-manpower-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .gspl-manpower-container {
        width: calc(100% - 32px);
    }

    .gspl-manpower-page section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .gspl-manpower-card-grid,
    .gspl-manpower-services-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   MANPOWER CTA - FINAL ALIGNMENT & FOOTER FIX
========================================================= */

/* CTA section itself */
.gspl-manpower-cta {
    position: relative;
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    padding: 85px 0 90px !important;
    margin: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
}

/* CTA container */
.gspl-manpower-cta .gspl-manpower-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* CTA content */
.gspl-manpower-cta-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Small heading */
.gspl-manpower-cta .gspl-manpower-eyebrow {
    display: block;
    margin: 0 0 14px;
    text-align: left;
}

/* Main heading */
.gspl-manpower-cta h2 {
    max-width: 850px;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font: 700 56px/1.08 Georgia, "Times New Roman", serif;
}

/* Description */
.gspl-manpower-cta p {
    max-width: 850px;
    margin: 0 0 35px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.78);
    font: 15px/1.8 Arial, Helvetica, sans-serif;
}

/* Buttons */
.gspl-manpower-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin: 0;
    padding: 0;
}

/* Individual buttons */
.gspl-manpower-cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 64px;
    padding: 0 28px;
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
    font: 700 11px Arial, Helvetica, sans-serif;
    letter-spacing: 1.4px;
}

/* Gold button */
.gspl-manpower-cta-buttons .gspl-btn-gold {
    background: #c79a45;
    color: #ffffff;
    border: 1px solid #c79a45;
}

/* Outline button */
.gspl-manpower-cta-buttons .gspl-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.55);
}


/* =========================================================
   STOP FOOTER FROM OVERLAPPING CTA
========================================================= */

.gspl-manpower-page {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible;
}

/* Footer must come after page content */
.gspl-manpower-page + footer,
.gspl-manpower-page ~ footer {
    position: relative;
    clear: both;
    margin-top: 0 !important;
}

/* Prevent footer from being pulled over the page */
.site-footer,
footer {
    position: relative;
    clear: both;
}


/* =========================================================
   REMOVE GENERIC SECTION RULES FROM CTA
========================================================= */

.gspl-manpower-page .gspl-manpower-cta {
    box-sizing: border-box;
}

.gspl-manpower-page .gspl-manpower-cta::before,
.gspl-manpower-page .gspl-manpower-cta::after {
    content: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .gspl-manpower-cta {
        padding: 65px 0 70px !important;
    }

    .gspl-manpower-cta .gspl-manpower-container {
        width: calc(100% - 40px);
    }

    .gspl-manpower-cta h2 {
        max-width: 700px;
        font-size: 44px;
    }

    .gspl-manpower-cta-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {

    .gspl-manpower-cta {
        padding: 55px 0 60px !important;
    }

    .gspl-manpower-cta .gspl-manpower-container {
        width: calc(100% - 32px);
    }

    .gspl-manpower-cta h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .gspl-manpower-cta p {
        font-size: 14px;
    }

    .gspl-manpower-cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .gspl-manpower-cta-buttons a {
        width: 200px;
    }
}

.gspl-commissioning-page{--navy:#10233a;--deep:#091a2b;--gold:#c79a45;--muted:#6c7780;--line:#dfe4e7;--light:#f3f5f6;width:100%;overflow:hidden;font-family:Arial,Helvetica,sans-serif}.gspl-comm-container{width:min(1180px,calc(100% - 48px));margin:0 auto}.gspl-comm-label{display:block;color:var(--gold);font-size:10px;font-weight:700;letter-spacing:2px}.gspl-comm-intro{padding:48px 0 100px;background:#fff}.gspl-comm-topline{display:flex;justify-content:space-between;padding-bottom:16px;border-bottom:1px solid var(--line);color:#8a949b;font-size:9px;font-weight:700;letter-spacing:1.8px}.gspl-comm-intro-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:90px;align-items:end;padding-top:70px}.gspl-comm-intro h1{margin:15px 0 0;color:var(--navy);font:700 clamp(58px,7vw,96px)/.9 Georgia,serif;letter-spacing:-4px}.gspl-comm-intro h1 em{color:var(--gold);font-weight:400}.gspl-comm-intro-text{max-width:520px}.gspl-comm-intro-text p{margin:0 0 20px;color:var(--muted);font-size:14px;line-height:1.8}.gspl-comm-intro-text .gspl-comm-lead{color:var(--navy);font:21px/1.5 Georgia,serif}.gspl-comm-approach{padding:90px 0;background:var(--deep)}.gspl-comm-section-head{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:end;margin-bottom:55px}.gspl-comm-section-head h2,.gspl-comm-services-heading h2{margin:14px 0 0;color:#fff;font:700 46px/1.05 Georgia,serif}.gspl-comm-section-head p{max-width:480px;margin:0;color:#ffffff9e;font-size:13px;line-height:1.8}.gspl-comm-process{display:grid;grid-template-columns:1fr 50px 1fr 50px 1fr;align-items:center}.gspl-comm-process-item{min-height:245px;padding:26px;border:1px solid #ffffff2e;background:#ffffff09;box-sizing:border-box}.gspl-comm-process-item>span{color:var(--gold);font-size:9px;font-weight:700;letter-spacing:1.5px}.gspl-comm-process-item>b{display:flex;width:42px;height:42px;margin:32px 0 22px;border:1px solid var(--gold);border-radius:50%;align-items:center;justify-content:center;color:var(--gold);font-size:10px}.gspl-comm-process-item h3{margin:0 0 10px;color:#fff;font-size:17px}.gspl-comm-process-item p{margin:0;color:#ffffff8c;font-size:11px;line-height:1.7}.gspl-comm-process>i{color:var(--gold);text-align:center;font-style:normal;font-size:22px}.gspl-comm-services{padding:95px 0;background:#fff}.gspl-comm-services-heading{margin-bottom:50px}.gspl-comm-services-heading h2{color:var(--navy);font-size:44px}.gspl-comm-services-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-left:1px solid var(--line)}.gspl-comm-services-grid article{min-height:185px;padding:24px;border-right:1px solid var(--line);border-bottom:1px solid var(--line);box-sizing:border-box}.gspl-comm-services-grid article>span{color:var(--gold);font-size:9px;font-weight:700;letter-spacing:1.5px}.gspl-comm-services-grid h3{margin:28px 0 10px;color:var(--navy);font-size:15px}.gspl-comm-services-grid p{margin:0;color:var(--muted);font-size:11px;line-height:1.7}.gspl-comm-readiness{padding:95px 0;background:var(--light)}.gspl-comm-readiness-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:85px;align-items:center}.gspl-comm-panel{min-height:390px;padding:28px;background:var(--navy);border:1px solid #c79a45a6;box-shadow:12px 12px #10233a14;box-sizing:border-box}.panel-head,.panel-foot{display:flex;justify-content:space-between;color:#ffffff7a;font-size:8px;font-weight:700;letter-spacing:1.5px}.panel-head b{color:var(--gold)}.panel-main{min-height:285px;display:flex;align-items:center;gap:35px}.ready-circle{width:145px;height:145px;flex:0 0 145px;border:1px solid var(--gold);border-radius:50%;outline:8px solid #c79a4514;display:flex;flex-direction:column;align-items:center;justify-content:center}.ready-circle strong{color:#fff;font-size:17px}.ready-circle small{margin-top:7px;color:var(--gold);font-size:7px;font-weight:700;letter-spacing:1.4px}.ready-lines{flex:1}.ready-lines span{display:block;width:85%;height:5px;margin:20px 0;background:var(--gold);opacity:.75}.ready-lines span:nth-child(2){width:72%}.ready-lines span:nth-child(3){width:92%}.ready-lines span:nth-child(4){width:65%}.panel-foot{padding-top:15px;border-top:1px solid #ffffff1f}.gspl-comm-readiness-grid>div:last-child h2{max-width:620px;margin:14px 0 22px;color:var(--navy);font:700 42px/1.1 Georgia,serif}.gspl-comm-readiness-grid>div:last-child>p{max-width:580px;margin:0 0 28px;color:var(--muted);font-size:14px;line-height:1.8}.gspl-comm-readiness-grid ul{max-width:580px;margin:0;padding:0;list-style:none;border-top:1px solid var(--line)}.gspl-comm-readiness-grid li{padding:13px 0;border-bottom:1px solid var(--line);color:var(--navy);font-size:11px;font-weight:700}.gspl-comm-cta{padding:65px 0;background:var(--gold)}.gspl-comm-cta>div>div{display:flex;align-items:center;justify-content:space-between;gap:50px}.gspl-comm-cta h2{max-width:760px;margin:12px 0 0;color:#fff;font:700 36px/1.15 Georgia,serif}.gspl-comm-cta a{display:inline-flex;align-items:center;justify-content:center;padding:18px 24px;background:#fff;color:var(--navy);text-decoration:none;font-size:10px;font-weight:700;letter-spacing:1.3px;white-space:nowrap}.gspl-comm-cta a span{margin-left:12px;color:var(--gold)}@media(max-width:900px){.gspl-comm-intro-grid,.gspl-comm-readiness-grid{grid-template-columns:1fr;gap:50px}.gspl-comm-section-head{grid-template-columns:1fr;gap:25px}.gspl-comm-process{grid-template-columns:1fr;gap:14px}.gspl-comm-process>i{transform:rotate(90deg)}.gspl-comm-services-grid{grid-template-columns:repeat(2,1fr)}.gspl-comm-cta>div>div{display:block}.gspl-comm-cta a{margin-top:25px}}@media(max-width:600px){.gspl-comm-container{width:calc(100% - 32px)}.gspl-comm-intro{padding:35px 0 65px}.gspl-comm-intro-grid{padding-top:50px}.gspl-comm-intro h1{font-size:56px;letter-spacing:-2px}.gspl-comm-approach,.gspl-comm-services,.gspl-comm-readiness{padding:65px 0}.gspl-comm-section-head h2,.gspl-comm-services-heading h2,.gspl-comm-readiness-grid>div:last-child h2{font-size:32px}.gspl-comm-services-grid{grid-template-columns:1fr}.gspl-comm-panel{min-height:330px}.panel-main{min-height:225px}.ready-circle{width:105px;height:105px;flex-basis:105px}.gspl-comm-cta h2{font-size:29px}}

/* ==========================================================
   GSPL PROJECT SERVICES — CLEAN CORPORATE INNER PAGE
   No large hero / no oversized editorial upper section
========================================================== */

.gspl-project-services-page {
    --gspl-navy: #10233a;
    --gspl-deep: #091a2b;
    --gspl-gold: #c79a45;
    --gspl-text: #273847;
    --gspl-muted: #6d7880;
    --gspl-line: #dfe4e7;
    --gspl-light: #f4f6f7;
    width: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.gspl-ps-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */

.gspl-ps-header {
    padding: 42px 0 78px;
    background: #fff;
}

.gspl-ps-header-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gspl-line);
    color: #89939a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.gspl-ps-heading-row {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: end;
    padding-top: 58px;
}

.gspl-ps-overline {
    display: block;
    color: var(--gspl-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gspl-ps-heading-row h1 {
    margin: 14px 0 0;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: .98;
    letter-spacing: -2px;
}

.gspl-ps-heading-row h1 em {
    color: var(--gspl-gold);
    font-weight: 400;
}

.gspl-ps-heading-row > p {
    max-width: 470px;
    margin: 0 0 4px;
    color: var(--gspl-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* CAPABILITIES */

.gspl-ps-capabilities {
    padding: 92px 0 105px;
    background: var(--gspl-light);
}

.gspl-ps-section-intro {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 52px;
}

.gspl-ps-section-intro h2 {
    margin: 13px 0 0;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    line-height: 1.04;
}

.gspl-ps-section-intro > p {
    max-width: 475px;
    margin: 0;
    color: var(--gspl-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* HORIZONTAL SERVICE LIST */

.gspl-ps-list {
    border-top: 1px solid var(--gspl-line);
}

.gspl-ps-row {
    display: grid;
    grid-template-columns: 75px 1fr 55px;
    align-items: center;
    min-height: 112px;
    padding: 0 28px;
    border-bottom: 1px solid var(--gspl-line);
    background: #fff;
    box-sizing: border-box;
    transition: background .2s ease, padding .2s ease;
}

.gspl-ps-row:hover {
    padding-left: 34px;
    background: #fff;
}

.gspl-ps-number {
    color: var(--gspl-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gspl-ps-title {
    display: flex;
    align-items: baseline;
    gap: 35px;
}

.gspl-ps-title h3 {
    min-width: 245px;
    margin: 0;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 600;
}

.gspl-ps-title p {
    margin: 0;
    color: var(--gspl-muted);
    font-size: 11px;
    line-height: 1.6;
}

.gspl-ps-arrow {
    color: var(--gspl-gold);
    font-size: 22px;
    text-align: right;
}

.gspl-ps-row-dark {
    background: var(--gspl-navy);
    border-color: #ffffff1c;
}

.gspl-ps-row-dark .gspl-ps-title h3,
.gspl-ps-row-dark .gspl-ps-title p {
    color: #fff;
}

.gspl-ps-row-dark .gspl-ps-title p {
    color: #ffffff9c;
}


/* SUPPORT */

.gspl-ps-support {
    padding: 88px 0;
    background: var(--gspl-deep);
}

.gspl-ps-support-grid {
    display: grid;
    grid-template-columns: .3fr .85fr 1fr;
    gap: 65px;
    align-items: center;
}

.gspl-ps-support-mark {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gspl-ps-support-mark span {
    color: var(--gspl-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gspl-ps-support-mark strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1;
}

.gspl-ps-support h2 {
    margin: 13px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
    line-height: 1.06;
}

.gspl-ps-support-copy {
    padding-left: 35px;
    border-left: 1px solid #ffffff2b;
}

.gspl-ps-support-copy p {
    margin: 0 0 27px;
    color: #ffffffa8;
    font-size: 13px;
    line-height: 1.8;
}

.gspl-ps-points {
    display: grid;
    gap: 10px;
}

.gspl-ps-points span {
    color: var(--gspl-gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


/* CTA */

.gspl-ps-cta {
    padding: 72px 0 78px;
    background: var(--gspl-gold);
}

.gspl-ps-cta-inner {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 100px;
    align-items: end;
}

.gspl-ps-cta h2 {
    margin: 13px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
    line-height: 1.08;
}

.gspl-ps-cta-action p {
    margin: 0 0 24px;
    color: #ffffffd1;
    font-size: 13px;
    line-height: 1.7;
}

.gspl-ps-cta-action a {
    display: inline-flex;
    align-items: center;
    min-height: 55px;
    padding: 0 23px;
    background: #fff;
    color: var(--gspl-navy);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    box-sizing: border-box;
}

.gspl-ps-cta-action a span {
    margin-left: 14px;
    color: var(--gspl-gold);
    font-size: 17px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .gspl-ps-heading-row,
    .gspl-ps-section-intro,
    .gspl-ps-support-grid,
    .gspl-ps-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gspl-ps-title {
        display: block;
    }

    .gspl-ps-title h3 {
        min-width: 0;
        margin-bottom: 7px;
    }

    .gspl-ps-support-copy {
        padding: 30px 0 0;
        border-left: 0;
        border-top: 1px solid #ffffff2b;
    }
}

@media (max-width: 600px) {

    .gspl-ps-container {
        width: calc(100% - 32px);
    }

    .gspl-ps-header {
        padding: 30px 0 62px;
    }

    .gspl-ps-heading-row {
        padding-top: 45px;
    }

    .gspl-ps-heading-row h1 {
        font-size: 46px;
        letter-spacing: -1.5px;
    }

    .gspl-ps-capabilities,
    .gspl-ps-support {
        padding: 65px 0;
    }

    .gspl-ps-section-intro h2,
    .gspl-ps-support h2,
    .gspl-ps-cta h2 {
        font-size: 34px;
    }

    .gspl-ps-row {
        grid-template-columns: 42px 1fr 25px;
        min-height: 105px;
        padding: 17px 14px;
    }

    .gspl-ps-row:hover {
        padding-left: 17px;
    }

    .gspl-ps-title h3 {
        font-size: 19px;
    }

    .gspl-ps-title p {
        font-size: 10px;
    }

    .gspl-ps-cta {
        padding: 60px 0 65px;
    }
}

/* ==========================================================
   GSPL PIPING FABRICATION & INSTALLATION
   Simple image + process steps inner page
========================================================== */

.gspl-piping-page {
    --gspl-navy: #10233a;
    --gspl-deep: #091a2b;
    --gspl-gold: #c79a45;
    --gspl-muted: #6c7780;
    --gspl-line: #dfe4e7;
    --gspl-light: #f4f6f7;

    width: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.gspl-piping-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================================
   INTRO + IMAGE
========================================================== */

.gspl-piping-intro {
    padding: 55px 0 90px;
    background: #fff;
}

.gspl-piping-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 55px;
}

.gspl-piping-label,
.gspl-piping-section-head > span {
    display: block;
    color: var(--gspl-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gspl-piping-heading h1 {
    grid-column: 1;
    margin: 13px 0 0;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -2px;
}

.gspl-piping-heading p {
    grid-column: 2;
    grid-row: 2;
    max-width: 460px;
    margin: 0;
    color: var(--gspl-muted);
    font-size: 14px;
    line-height: 1.8;
}

.gspl-piping-image {
    width: 100%;
    height: 510px;
    overflow: hidden;
    background: var(--gspl-light);
}

.gspl-piping-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================================
   STEPS
========================================================== */

.gspl-piping-steps {
    padding: 90px 0 105px;
    background: var(--gspl-light);
}

.gspl-piping-section-head {
    display: grid;
    grid-template-columns: .75fr 1fr 1fr;
    gap: 55px;
    align-items: end;
    margin-bottom: 55px;
}

.gspl-piping-section-head h2 {
    margin: 12px 0 0;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    line-height: 1.05;
}

.gspl-piping-section-head p {
    max-width: 430px;
    margin: 0;
    color: var(--gspl-muted);
    font-size: 13px;
    line-height: 1.8;
}

.gspl-piping-step-list {
    border-top: 1px solid var(--gspl-line);
}

.gspl-piping-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    align-items: center;
    min-height: 125px;
    padding: 22px 30px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid var(--gspl-line);
}

.gspl-piping-step > span {
    color: var(--gspl-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gspl-piping-step h3 {
    margin: 0 0 8px;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
}

.gspl-piping-step p {
    margin: 0;
    color: var(--gspl-muted);
    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .gspl-piping-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gspl-piping-heading h1,
    .gspl-piping-heading p {
        grid-column: auto;
        grid-row: auto;
    }

    .gspl-piping-section-head {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .gspl-piping-section-head > span {
        grid-column: 1 / -1;
    }

    .gspl-piping-image {
        height: 420px;
    }
}

@media (max-width: 600px) {

    .gspl-piping-container {
        width: calc(100% - 32px);
    }

    .gspl-piping-intro {
        padding: 35px 0 65px;
    }

    .gspl-piping-heading h1 {
        font-size: 47px;
        letter-spacing: -1px;
    }

    .gspl-piping-image {
        height: 300px;
    }

    .gspl-piping-steps {
        padding: 65px 0 70px;
    }

    .gspl-piping-section-head {
        display: block;
    }

    .gspl-piping-section-head h2 {
        margin: 13px 0 20px;
        font-size: 34px;
    }

    .gspl-piping-step {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        min-height: 115px;
        padding: 20px 15px;
    }

    .gspl-piping-step h3 {
        font-size: 19px;
    }
}
/* ==========================================================
   GSPL TUBING
   Simple image + process steps inner page
========================================================== */

.gspl-tubing-page {
    --gspl-navy: #10233a;
    --gspl-gold: #c79a45;
    --gspl-muted: #6c7780;
    --gspl-line: #dfe4e7;
    --gspl-light: #f4f6f7;

    width: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.gspl-tubing-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================================
   INTRO
========================================================== */

.gspl-tubing-intro {
    padding: 55px 0 90px;
    background: #fff;
}

.gspl-tubing-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 55px;
}

.gspl-tubing-label {
    display: block;
    color: var(--gspl-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gspl-tubing-heading h1 {
    margin: 13px 0 0;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -2px;
}

.gspl-tubing-heading p {
    max-width: 460px;
    margin: 0;
    color: var(--gspl-muted);
    font-size: 14px;
    line-height: 1.8;
}

.gspl-tubing-image {
    width: 100%;
    height: 510px;
    overflow: hidden;
    background: var(--gspl-light);
}

.gspl-tubing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================================
   PROCESS
========================================================== */

.gspl-tubing-steps {
    padding: 90px 0 105px;
    background: var(--gspl-light);
}

.gspl-tubing-section-head {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 55px;
}

.gspl-tubing-section-head h2 {
    margin: 0 0 18px;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    line-height: 1.05;
}

.gspl-tubing-section-head p {
    max-width: 470px;
    margin: 0;
    color: var(--gspl-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* STEPS */

.gspl-tubing-step-list {
    border-top: 1px solid var(--gspl-line);
}

.gspl-tubing-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    align-items: center;
    min-height: 130px;
    padding: 22px 30px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid var(--gspl-line);
}

.gspl-tubing-step > span {
    color: var(--gspl-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gspl-tubing-step small {
    display: block;
    margin-bottom: 7px;
    color: #8a949b;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gspl-tubing-step h3 {
    margin: 0 0 8px;
    color: var(--gspl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
}

.gspl-tubing-step p {
    margin: 0;
    color: var(--gspl-muted);
    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .gspl-tubing-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gspl-tubing-section-head {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gspl-tubing-image {
        height: 420px;
    }
}

@media (max-width: 600px) {

    .gspl-tubing-container {
        width: calc(100% - 32px);
    }

    .gspl-tubing-intro {
        padding: 35px 0 65px;
    }

    .gspl-tubing-heading h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .gspl-tubing-image {
        height: 300px;
    }

    .gspl-tubing-steps {
        padding: 65px 0 70px;
    }

    .gspl-tubing-section-head h2 {
        font-size: 34px;
    }

    .gspl-tubing-step {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        min-height: 120px;
        padding: 20px 15px;
    }

    .gspl-tubing-step h3 {
        font-size: 19px;
    }
}

