:root {
    --home-bg: #eef3ef;
    --ink: #071525;
    --ink-soft: #465365;
    --navy: #03268c;
    --navy-2: #021f73;
    --steel: #d8e1ee;
    --paper: #ffffff;
    --paper-warm: #f7f9f6;
    --orange: #f28a11;
    --orange-dark: #d86d00;
    --green: #0d7214;
    --green-bright: #1f9e2b;
    --shadow-industrial: 0 24px 70px rgba(6, 21, 39, 0.16);
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.24; }
    50% { transform: scale(1.08); opacity: 0.44; }
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-page {
    background:
        linear-gradient(90deg, rgba(16, 39, 65, 0.04) 1px, transparent 1px) 0 0/72px 72px,
        linear-gradient(rgba(16, 39, 65, 0.04) 1px, transparent 1px) 0 0/72px 72px,
        var(--home-bg);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
}

.home-page .container {
    max-width: min(1180px, 92vw);
}

.home-page h1,
.home-page h2,
.home-page h3 {
    color: var(--ink);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.home-page p {
    color: var(--ink-soft);
}

.home-page .navbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 39, 65, 0.1);
    box-shadow: none;
    padding: 0.45rem 0;
}

.home-page .navbar.scrolled {
    box-shadow: 0 14px 36px rgba(6, 21, 39, 0.09);
}

.home-page .logo img {
    height: 3.4rem;
}

.home-page .nav-links {
    gap: 0.35rem;
}

.home-page .nav-links a {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 0.62rem 0.72rem;
    text-transform: uppercase;
}

.home-page .nav-links a::after {
    background-color: var(--orange);
    bottom: -0.45rem;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
    color: var(--orange);
}

.home-page .navbar .nav-links a.btn-outline {
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 0;
    color: #ffffff;
    padding: 0.78rem 1rem;
}

.home-page .navbar .nav-links a.btn-outline:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
}

.home-page .dropdown-content {
    border-radius: 0;
    border: 1px solid rgba(16, 39, 65, 0.1);
}

.home-page .dropdown-content a {
    text-transform: none;
}

.top-contact-bar {
    background: linear-gradient(90deg, #03268c, #0d7214);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
}

.top-contact-wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.48rem 1.5rem;
}

.top-contact-item {
    color: inherit;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.top-contact-item:hover {
    color: #ffffff;
}

.home-page .btn {
    align-items: center;
    border-radius: 0;
    display: inline-flex;
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.04em;
    min-height: 44px;
    padding: 0.85rem 1.25rem;
    text-transform: uppercase;
}

.home-page .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 10px 10px 0 rgba(232, 75, 26, 0.16);
    color: #ffffff;
}

.home-page .btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: #ffffff;
    transform: translate(-2px, -2px);
}

.home-page .btn-secondary {
    background: #ffffff;
    border-color: rgba(16, 39, 65, 0.14);
    color: var(--ink);
}

.home-page .btn-secondary:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #ffffff;
}

.eyebrow {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.ggpl-hero {
    background:
        radial-gradient(circle at 12% 12%, rgba(232, 75, 26, 0.18), transparent 25rem),
        linear-gradient(135deg, #e9eef3 0%, #f9faf9 42%, #dbe4ec 100%);
    border-bottom: 1px solid rgba(16, 39, 65, 0.12);
    overflow: hidden;
    position: relative;
}

.ggpl-hero::before {
    background: var(--navy);
    content: "";
    height: 76%;
    position: absolute;
    right: 0;
    top: 0;
    width: min(31vw, 440px);
}

.ggpl-hero::after {
    animation: pulseGlow 8s ease-in-out infinite;
    background: radial-gradient(circle, rgba(31, 158, 43, 0.3), transparent 68%);
    content: "";
    height: 340px;
    left: -100px;
    position: absolute;
    top: 22%;
    width: 340px;
}

.hero-shell {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(310px, 0.74fr) minmax(420px, 1fr);
    margin: 0 auto;
    max-width: min(1280px, 94vw);
    min-height: 690px;
    padding: 4.2rem 0 2.6rem;
    position: relative;
    z-index: 1;
}

.hero-copy {
    align-self: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: var(--shadow-industrial);
    padding: clamp(1.4rem, 4vw, 3.1rem);
    position: relative;
    animation: riseIn 0.8s ease-out both;
}

.hero-copy::after {
    background: var(--orange);
    content: "";
    height: 76px;
    position: absolute;
    right: -14px;
    top: 42px;
    width: 14px;
}

.hero-copy h1 {
    font-size: clamp(3rem, 7.4vw, 5.9rem);
    line-height: 0.88;
    margin: 0 0 1.2rem;
    max-width: 9ch;
    text-transform: none;
}

.hero-tagline {
    color: var(--green);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.1rem, 2.1vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.hero-intro {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    margin: 0;
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.55rem;
}

.hero-mini-services {
    border-top: 1px solid rgba(16, 39, 65, 0.13);
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.6rem;
    padding-top: 1.2rem;
}

.hero-mini-services span {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding-left: 1rem;
    position: relative;
    text-transform: uppercase;
}

.hero-mini-services span::before {
    background: var(--green);
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0.55rem;
    width: 7px;
}

.hero-media {
    align-self: center;
    min-height: 560px;
    position: relative;
}

.hero-media img {
    height: min(64vw, 610px);
    min-height: 540px;
    object-fit: cover;
    object-position: center;
    position: relative;
    width: 100%;
    z-index: 1;
    transition: transform 0.7s ease;
}

.hero-media:hover img {
    transform: scale(1.02);
}

.hero-media::before,
.hero-media::after {
    content: "";
    position: absolute;
    z-index: 0;
}

.hero-media::before {
    background: var(--green);
    height: 150px;
    left: -28px;
    top: 82px;
    width: 150px;
}

.hero-media::after {
    border: 1px solid rgba(255, 255, 255, 0.5);
    inset: 28px -28px -28px 56px;
}

.hero-floating-card {
    background: #ffffff;
    bottom: 38px;
    box-shadow: 0 22px 46px rgba(6, 21, 39, 0.18);
    color: var(--ink);
    left: auto;
    max-width: 260px;
    padding: 1.15rem 1.3rem;
    position: absolute;
    right: 1rem;
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-floating-card:hover {
    box-shadow: 0 26px 52px rgba(6, 21, 39, 0.24);
    transform: translateY(-4px);
}

.hero-floating-card span {
    color: var(--orange);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.hero-floating-card strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.18rem;
    line-height: 1.05;
}

.hero-metric-bar {
    background: var(--navy);
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: min(1280px, 94vw);
    position: relative;
    z-index: 2;
}

.hero-metric-bar article {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 0.65rem;
    grid-template-columns: auto 1fr;
    padding: 1.15rem 1.35rem;
}

.hero-metric-bar article:last-child {
    border-right: 0;
}

.hero-metric-bar strong {
    color: var(--green-bright);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
}

.hero-metric-bar span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 700;
}

.section-block {
    padding: clamp(4rem, 7vw, 6.6rem) 0;
}

.split-heading {
    align-items: end;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
    margin-bottom: 2rem;
}

.split-heading h2,
.section-heading h2,
.product-content h2,
.contact-panel h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.96;
    margin: 0;
    text-transform: uppercase;
}

.heading-copy p {
    margin: 0 0 1rem;
}

.text-link {
    color: var(--orange);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.text-link:hover {
    color: var(--orange-dark);
    transform: translateX(5px);
}

.service-tile-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
}

.service-tile {
    background: var(--paper);
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: 0 18px 42px rgba(6, 21, 39, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-tile img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.service-tile.featured img {
    height: 330px;
}

.service-tile:hover {
    box-shadow: 0 22px 44px rgba(6, 21, 39, 0.18);
    transform: translateY(-8px);
}

.service-tile div {
    display: flex;
    flex-direction: column;
    padding: 1.3rem;
}

.service-tile span,
.standard-card span {
    align-items: center;
    background: #edf1f5;
    color: var(--navy);
    display: inline-flex;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 38px;
}

.service-tile h3 {
    font-size: 1.55rem;
    line-height: 1;
    margin: 0 0 0.7rem;
    text-transform: uppercase;
}

.service-tile p {
    margin: 0;
}

.service-more-btn {
    align-self: flex-start;
    border-bottom: 2px solid var(--orange);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-top: 1rem;
    padding-bottom: 0.2rem;
    text-transform: uppercase;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-more-btn:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateX(4px);
}

.product-deck {
    background:
        linear-gradient(90deg, var(--navy) 0%, var(--navy) 44%, transparent 44%),
        var(--paper-warm);
}

.product-layout {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 4.2rem);
    grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
}

.product-visual {
    min-height: 560px;
    position: relative;
}

.product-visual img {
    box-shadow: 20px 20px 0 rgba(232, 75, 26, 0.95);
    height: 560px;
    object-fit: cover;
    width: 100%;
}

.product-note {
    background: #ffffff;
    bottom: 1.6rem;
    left: 1.6rem;
    max-width: 270px;
    padding: 1rem 1.15rem;
    position: absolute;
    transition: transform 0.35s ease;
}

.product-visual:hover .product-note {
    transform: translateY(-6px);
}

.product-note strong {
    color: var(--orange);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-note span {
    color: var(--ink);
    display: block;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 0.3rem;
}

.product-content {
    background: #ffffff;
    border: 1px solid rgba(16, 39, 65, 0.1);
    box-shadow: var(--shadow-industrial);
    padding: clamp(1.4rem, 4vw, 2.6rem);
}

.product-content > p:not(.eyebrow) {
    margin: 1rem 0 1.25rem;
}

.product-list {
    border-top: 1px solid rgba(16, 39, 65, 0.12);
    margin-bottom: 1.35rem;
}

.product-list article {
    border-bottom: 1px solid rgba(16, 39, 65, 0.12);
    display: grid;
    gap: 1rem;
    grid-template-columns: 0.55fr 1fr;
    padding: 1rem 0;
}

.product-list span {
    color: var(--ink);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.product-list p {
    margin: 0;
}

.standards-section {
    background: #ffffff;
}

.section-heading {
    margin: 0 auto 2rem;
    max-width: 780px;
}

.standards-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standard-card {
    background: var(--paper-warm);
    border: 1px solid rgba(16, 39, 65, 0.12);
    min-height: 235px;
    padding: 1.4rem;
    position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.standard-card::after {
    background: var(--orange);
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    width: 40%;
}

.standard-card:hover {
    border-color: rgba(3, 38, 140, 0.28);
    transform: translateY(-6px);
}

.standard-card h3 {
    font-size: 1.45rem;
    line-height: 1;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

.standard-card p {
    margin: 0;
}

.operations-section {
    background:
        linear-gradient(90deg, rgba(3, 38, 140, 0.06) 0%, transparent 48%),
        #ffffff;
    border-top: 1px solid rgba(16, 39, 65, 0.08);
    border-bottom: 1px solid rgba(16, 39, 65, 0.08);
}

.operations-grid {
    align-items: start;
    display: grid;
    gap: clamp(1.2rem, 4vw, 2.5rem);
    grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
}

.operations-copy p {
    margin: 0.85rem 0 0;
}

.operations-list {
    margin: 1rem 0 0;
    padding: 0;
}

.operations-list li {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
}

.operations-list li::before {
    background: var(--green);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 0.55rem;
    width: 8px;
}

.operations-metrics {
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
    background: var(--paper-warm);
    border: 1px solid rgba(16, 39, 65, 0.12);
    min-height: 160px;
    padding: 1.2rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.metric-card h3 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 0.9;
    margin: 0 0 0.5rem;
}

.metric-card .counter {
    color: var(--green);
}

.metric-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin: 0;
}

.metric-card:hover {
    box-shadow: 0 16px 36px rgba(6, 21, 39, 0.14);
    transform: translateY(-6px);
}

.detail-band {
    background: linear-gradient(135deg, #f7f9f6, #eef3ef);
}

.detail-band-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-band-card {
    background: #ffffff;
    border: 1px solid rgba(16, 39, 65, 0.1);
    border-left: 4px solid var(--navy);
    min-height: 180px;
    padding: 1.25rem 1.2rem;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.detail-band-card h3 {
    font-size: 1.35rem;
    margin: 0 0 0.55rem;
    text-transform: uppercase;
}

.detail-band-card p {
    margin: 0;
}

.detail-band-card:hover {
    border-left-color: var(--orange);
    transform: translateY(-5px);
}

.partner-banner-section {
    padding: 0 0 clamp(2rem, 4vw, 2.75rem);
    position: relative;
    z-index: 3;
}

.partner-banner {
    align-items: stretch;
    background: var(--paper);
    border: 1px solid rgba(7, 21, 37, 0.1);
    border-top: 5px solid var(--orange);
    box-shadow: var(--shadow-industrial);
    display: grid;
    gap: 1.5rem 2rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.85fr);
    margin-top: -2.25rem;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
    position: relative;
}

.partner-banner::before {
    background:
        linear-gradient(135deg, rgba(3, 38, 140, 0.06), rgba(13, 114, 20, 0.08));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.partner-banner > * {
    position: relative;
    z-index: 1;
}

.partner-banner-intro {
    align-items: flex-start;
    display: flex;
    gap: 1.15rem;
}

.partner-banner-region {
    align-items: center;
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
    border-radius: 0;
    color: #ffffff;
    display: flex;
    flex-shrink: 0;
    font-family: Rajdhani, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    height: 3.25rem;
    justify-content: center;
    letter-spacing: 0.06em;
    width: 3.25rem;
}

.partner-banner-eyebrow {
    color: var(--orange-dark);
    margin-bottom: 0.4rem;
}

.partner-banner-title {
    color: var(--navy);
    font-family: Rajdhani, sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.partner-banner-lead {
    color: var(--ink-soft);
    margin: 0;
    max-width: 42ch;
}

.partner-banner-card {
    align-self: center;
    background: linear-gradient(160deg, var(--navy) 0%, #021a5c 55%, var(--green) 140%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    justify-content: center;
    padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.15rem, 2.5vw, 1.65rem);
}

.partner-banner-company {
    color: #ffffff;
    font-family: Rajdhani, sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.partner-banner-location {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.65rem;
}

.partner-banner-cta {
    align-self: flex-start;
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-size: 0.92rem;
    margin-top: 0.25rem;
    padding: 0.72rem 1.25rem;
    white-space: nowrap;
}

.partner-banner-cta:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
}

.partner-logo-wrapper {
    background: #ffffff;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    margin-bottom: 0.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.partner-logo {
    max-height: 40px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.contact-panel-section {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.contact-panel {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7, 21, 37, 0.92), rgba(7, 21, 37, 0.72)),
        url("../images/bottom-bg.jpg") center/cover;
    color: #ffffff;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr auto;
    padding: clamp(2rem, 5vw, 3.6rem);
}

.contact-panel h2 {
    color: #ffffff;
    max-width: 850px;
}

.contact-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
    margin: 1rem 0 0;
    max-width: 650px;
}

.site-footer {
    background: #061525;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0;
}

.footer-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    padding: 3rem 1.5rem 2rem;
}

.footer-layout h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.footer-layout p {
    color: rgba(255, 255, 255, 0.68);
    max-width: 42ch;
}

.footer-layout a {
    color: rgba(255, 255, 255, 0.68);
    display: block;
    margin-bottom: 0.45rem;
}

.footer-layout a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-logo-light {
    /* background: #ffffff; */
    padding: 0.45rem;
    width: 104px;
}

.footer-bottom-light {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 1.5rem 1.5rem;
}

.footer-bottom-light p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
    margin: 0;
}

@media (max-width: 1080px) {
    .home-page .nav-links {
        gap: 0.15rem;
    }

    .home-page .nav-links a {
        font-size: 0.76rem;
        padding-inline: 0.5rem;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 2.8rem;
    }

    .ggpl-hero::before {
        height: 40%;
        width: 45vw;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-media img {
        height: 560px;
    }

    .product-deck {
        background: var(--paper-warm);
    }
}

@media (max-width: 900px) {
    .split-heading,
    .product-layout,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .service-tile-grid,
    .detail-band-grid,
    .standards-grid,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .operations-grid {
        grid-template-columns: 1fr;
    }

    .service-tile.featured img,
    .service-tile img {
        height: 260px;
    }

    .product-visual,
    .product-visual img {
        min-height: 0;
        height: 430px;
    }

    .hero-metric-bar {
        grid-template-columns: 1fr;
    }

    .hero-metric-bar article {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        border-right: 0;
    }

    .hero-metric-bar article:last-child {
        border-bottom: 0;
    }

    .hero-floating-card {
        box-shadow: 0 10px 26px rgba(6, 21, 39, 0.16);
        margin-top: 0.8rem;
        max-width: none;
        position: static;
    }

    .operations-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-contact-wrap {
        justify-content: center;
        padding: 0.5rem 0.8rem;
        text-align: center;
    }

    .home-page .menu-icon span {
        background-color: var(--ink);
    }

    .home-page .nav-links {
        background: #ffffff;
        gap: 1rem;
    }

    .home-page .nav-links a {
        color: var(--ink);
        font-size: 1rem;
        padding: 0;
    }

    .home-page .navbar .nav-links a.btn-outline {
        padding: 0.8rem 1.2rem;
    }

    .hero-shell {
        max-width: 100%;
        padding: 0;
    }

    .hero-copy {
        box-shadow: none;
        padding: 2rem 1.25rem;
    }

    .hero-copy::after,
    .hero-media::before,
    .hero-media::after {
        display: none;
    }

    .hero-media img {
        height: 420px;
        min-height: 0;
    }

    .hero-floating-card {
        margin-top: 0.8rem;
    }

    .hero-mini-services,
    .product-list article {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 3.4rem 0;
    }

    .contact-panel-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .partner-banner {
        grid-template-columns: 1fr;
        margin-top: -1.5rem;
    }

    .partner-banner-cta {
        align-self: stretch;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .hero-copy h1 {
        font-size: 3rem;
    }

    .hero-actions,
    .home-page .btn {
        width: 100%;
    }

    .product-visual,
    .product-visual img,
    .hero-media img {
        height: 340px;
    }

    .product-note {
        bottom: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
        max-width: none;
    }
}

/* --- Products page (uses .home-page body) --- */

.products-hero {
    background:
        linear-gradient(90deg, rgba(3, 38, 140, 0.92), rgba(13, 114, 20, 0.55)),
        url("../images/our-product.jpg") center/cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 5rem 0 3.8rem;
}

.products-hero h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    margin: 0 0 0.5rem;
}

.products-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 70ch;
}

.products-intro-section {
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 39, 65, 0.1);
}

.products-intro-grid {
    align-items: center;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.1fr);
}

.products-intro-visual {
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: var(--shadow-industrial);
    overflow: hidden;
}

.products-intro-visual img {
    display: block;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    width: 100%;
}

.products-intro-copy h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.05;
    margin: 0 0 0.75rem;
}

.products-intro-list {
    margin: 1rem 0 0;
    padding: 0;
}

.products-intro-list li {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-left: 1.1rem;
    position: relative;
}

.products-intro-list li::before {
    background: var(--green);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0.55rem;
    width: 7px;
}

.products-tabs-section {
    background: var(--paper-warm);
    border-bottom: 1px solid rgba(16, 39, 65, 0.08);
}

.products-tabs-section .section-heading {
    margin-bottom: 1.75rem;
    max-width: 900px;
    text-align: left;
}

.products-tabs-section .section-heading p {
    margin-top: 0.75rem;
}

.products-tab-root {
    background: var(--paper);
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: var(--shadow-industrial);
}

.products-tablist {
    border-bottom: 1px solid rgba(16, 39, 65, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.75rem 0.75rem 0;
}

.products-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--ink-soft);
    cursor: pointer;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.products-tab:hover {
    color: var(--navy);
}

.products-tab.is-active {
    background: rgba(3, 38, 140, 0.06);
    border-color: rgba(3, 38, 140, 0.2);
    border-bottom-color: transparent;
    color: var(--navy);
    margin-bottom: -1px;
    padding-bottom: calc(0.75rem + 1px);
}

.products-tab-panels {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.products-tabpanel[hidden] {
    display: none;
}

.products-tabpanel.is-active {
    display: block;
}

.product-panel-layout {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
}

.product-panel-media {
    border: 1px solid rgba(16, 39, 65, 0.1);
    overflow: hidden;
}

.product-panel-media img {
    display: block;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    width: 100%;
}

.product-panel-body h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 0.04em;
    margin: 0 0 0.65rem;
}

.product-panel-lead {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin: 0 0 1.25rem;
}

.product-subtablist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.product-subtab {
    background: var(--paper-warm);
    border: 1px solid rgba(16, 39, 65, 0.14);
    color: var(--ink);
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.55rem 0.85rem;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-subtab:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.product-subtab.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #ffffff;
}

.product-subpanel[hidden] {
    display: none;
}

.product-subpanel.is-active {
    display: block;
}

.product-subpanel p {
    margin: 0 0 0.85rem;
}

.product-subpanel p:last-child {
    margin-bottom: 0;
}

.product-bullet-list {
    margin: 0;
    padding: 0;
}

.product-bullet-list li {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.45rem;
    padding-left: 1rem;
    position: relative;
}

.product-bullet-list li::before {
    background: var(--orange);
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 0.55rem;
    width: 6px;
}

.products-cta-section {
    padding-top: 0;
}

.products-cta {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7, 21, 37, 0.94), rgba(3, 38, 140, 0.78)),
        url("../images/bottom-bg.jpg") center/cover;
    color: #ffffff;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr auto;
    padding: clamp(2rem, 5vw, 3.2rem);
}

.products-cta h2 {
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 60ch;
}

@media (max-width: 900px) {
    .products-intro-grid,
    .product-panel-layout,
    .products-cta {
        grid-template-columns: 1fr;
    }

    .products-cta .btn {
        justify-self: start;
        width: 100%;
    }

    .products-tablist {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .products-tab {
        flex: 0 0 auto;
    }

    .opportunity-intro-grid,
    .opportunity-cards {
        grid-template-columns: 1fr;
    }
}

/* --- Business opportunities pages (retail, refinery, pyrolysis, CBG, CNG, lubricants) --- */

.business-hero {
    background-blend-mode: normal;
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 5rem 0 3.8rem;
}

.business-hero h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    margin: 0 0 0.5rem;
}

.business-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 70ch;
}

.business-hero--retail {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/Retail-Fuel-Outlets.jpg");
}

.business-hero--refinery {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/Refinery-&-Plant-Projects.jpg");
}

.business-hero--pyrolysis {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/Plastic-Pyrolysis-Plant.jpg");
}

.business-hero--cbg {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/CBG-Plant.jpg");
}

.business-hero--cng {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/CNG-Plant.jpg");
}

.business-hero--lubricants {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/Lubricants.jpg");
}

.opportunity-intro-section {
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 39, 65, 0.1);
}

.opportunity-intro-grid {
    align-items: start;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
}

.opportunity-copy {
    background: var(--paper-warm);
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: var(--shadow-industrial);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.opportunity-copy h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.05;
    margin: 0 0 1rem;
}

.opportunity-copy > p {
    margin: 0 0 1rem;
}

.opportunity-list {
    margin: 1rem 0 0;
    padding: 0;
}

.opportunity-list li {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.55rem;
    padding-left: 1.15rem;
    position: relative;
}

.opportunity-list li::before {
    background: var(--green);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0.55rem;
    width: 7px;
}

.opportunity-copy .btn {
    margin-top: 1.25rem;
}

.opportunity-media {
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: var(--shadow-industrial);
    overflow: hidden;
}

.opportunity-media img {
    display: block;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    width: 100%;
}

.opportunity-cards-section {
    background: var(--paper-warm);
    border-bottom: 1px solid rgba(16, 39, 65, 0.08);
}

.opportunity-cards {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.opportunity-card {
    background: var(--paper);
    border: 1px solid rgba(16, 39, 65, 0.12);
    border-left: 4px solid var(--navy);
    min-height: 200px;
    padding: 1.35rem 1.25rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.opportunity-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}

.opportunity-card p {
    margin: 0;
}

.opportunity-card:hover {
    border-left-color: var(--orange);
    transform: translateY(-4px);
}

/* --- Gallery page --- */

.business-hero--gallery {
    background-image:
        linear-gradient(90deg, rgba(3, 38, 140, 0.9), rgba(13, 114, 20, 0.52)),
        url("../images/cover-bg.jpg");
}

.gallery-section {
    background: var(--paper);
    border-bottom: 1px solid rgba(16, 39, 65, 0.08);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.gallery-intro {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    max-width: 70ch;
}

.gallery-grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.gallery-tile {
    background: var(--paper);
    border: 1px solid rgba(16, 39, 65, 0.12);
    box-shadow: var(--shadow-industrial);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tile:hover {
    border-color: rgba(242, 138, 17, 0.55);
    box-shadow: 0 28px 60px rgba(6, 21, 39, 0.18);
    transform: translateY(-4px);
}

.gallery-tile:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

.gallery-tile-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.gallery-tile-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

.gallery-tile:hover .gallery-tile-media img {
    transform: scale(1.04);
}

.gallery-tile-body {
    border-top: 1px solid rgba(16, 39, 65, 0.08);
    padding: 0.85rem 1rem 1rem;
}

.gallery-tile-title {
    color: var(--navy);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
}

.gallery-tile-caption {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

.gallery-lightbox {
    align-items: stretch;
    background: rgba(4, 12, 24, 0.94);
    color: #ffffff;
    display: none;
    flex-direction: column;
    inset: 0;
    justify-content: space-between;
    padding: clamp(0.75rem, 3vw, 1.25rem);
    position: fixed;
    z-index: 10000;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox:fullscreen {
    background: #040c18;
}

.gallery-lightbox:-webkit-full-screen {
    background: #040c18;
}

.gallery-lightbox__top {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 0.75rem;
    justify-content: flex-end;
}

.gallery-lightbox__hint {
    color: rgba(255, 255, 255, 0.55);
    flex: 1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-lightbox__icon-btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.06em;
    min-height: 2.5rem;
    min-width: 2.5rem;
    padding: 0 0.65rem;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-lightbox__icon-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #061525;
}

.gallery-lightbox__stage {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    min-height: 0;
    position: relative;
    width: 100%;
}

.gallery-lightbox__img {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    max-height: min(78vh, 820px);
    max-width: min(96vw, 1200px);
    object-fit: contain;
}

.gallery-lightbox__nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 1.75rem;
    font-weight: 700;
    height: 3rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    width: 3rem;
    z-index: 2;
}

.gallery-lightbox__nav:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #061525;
}

.gallery-lightbox__nav--prev {
    left: clamp(0.25rem, 2vw, 1rem);
}

.gallery-lightbox__nav--next {
    right: clamp(0.25rem, 2vw, 1rem);
}

.gallery-lightbox__meta {
    background: linear-gradient(180deg, transparent, rgba(4, 12, 24, 0.92));
    flex-shrink: 0;
    max-width: 900px;
    padding: 0.5rem 0 0.25rem;
    width: 100%;
}

.gallery-lightbox__title {
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
}

.gallery-lightbox__caption {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .gallery-lightbox__nav {
        height: 2.5rem;
        width: 2.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
