/* ==========================================================
   GP DIGITAL v1.0
   GP Integrasi Sdn. Bhd.
   ========================================================== */


/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8fafc;

    color:#1e293b;

    line-height:1.7;

    overflow-x:hidden;

}


/* ===========================
   BRAND COLOURS
=========================== */

:root{

    --primary:#C07A1D;

    --primary-light:#F6B35E;

    --navy:#0F172A;

    --white:#ffffff;

    --light:#f8fafc;

    --text:#334155;

    --heading:#0f172a;

    --border:#e5e7eb;

}


/* ===========================
   TYPOGRAPHY
=========================== */

h1,h2,h3,h4,h5{

    color:var(--heading);

    font-weight:700;

    line-height:1.25;

}

p{

    color:var(--text);

    margin-bottom:18px;

}

a{

    text-decoration:none;

    transition:.3s;

}

img{

    max-width:100%;

    display:block;

}


/* ===========================
   CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1200px;

}


/* ===========================
   NAVBAR
=========================== */

.navbar{

    background:rgba(15,23,42,.95);

    backdrop-filter:blur(10px);

    padding:16px 0;

    transition:.35s;

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

}


/* Logo */

.logo{

    width:62px;

    height:62px;

    object-fit:contain;

    margin-right:14px;

}


/* Company Name */

.brand-text h5{

    color:white;

    margin:0;

    font-size:20px;

}

.brand-text small{

    color:#cbd5e1;

    font-size:12px;

}


/* Navigation */

.navbar-nav .nav-link{

    color:white;

    font-weight:500;

    margin-left:18px;

    position:relative;

}


/* Underline Animation */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary-light);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:var(--primary-light);

}


/* ===========================
   BUTTON
=========================== */

.btn-warning{

    background:var(--primary);

    border:none;

    color:white;

    font-weight:600;

    padding:12px 28px;

    border-radius:8px;

}

.btn-warning:hover{

    background:var(--primary-light);

    color:white;

    transform:translateY(-2px);

}


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

section{

    padding:90px 0;

}


/* Small Title */

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

    text-transform:uppercase;

    font-size:13px;

}


/* Heading */

.section-title{

    font-size:42px;

    margin-bottom:22px;

    position:relative;

}


/* Gold line */

.section-title::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:var(--primary);

    margin-top:14px;

    border-radius:50px;

}


/* Paragraph */

.section-text{

    font-size:17px;

    max-width:760px;

}


/* ===========================
   LIGHT BACKGROUND
=========================== */

.bg-light{

    background:#f8fafc !important;

}
/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(15,23,42,.82),
            rgba(15,23,42,.82)
        ),
        url("../img/hero-bg.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}


/* Dark overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(15,23,42,.92) 0%,
        rgba(15,23,42,.80) 45%,
        rgba(15,23,42,.35) 100%
    );

}


/* Hero content */

.hero .container{

    position:relative;

    z-index:2;

}


/* Left Column */

.hero .col-lg-7{

    animation:fadeUp 1s ease;

}


/* Small Tag */

.hero-badge{

    display:inline-block;

    background:rgba(246,179,94,.15);

    color:#F6B35E;

    padding:10px 20px;

    border-radius:50px;

    border:1px solid rgba(246,179,94,.35);

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}


/* Main Heading */

.hero-title{

    color:white;

    font-size:64px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:30px;

    max-width:760px;

}


.hero-title span{

    color:#F6B35E;

}


/* Description */

.hero-description{

    color:#d6dce8;

    font-size:20px;

    max-width:700px;

    margin-bottom:40px;

}


/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


/* Outline Button */

.btn-outline-light{

    border:2px solid white;

    color:white;

    border-radius:8px;

    padding:12px 28px;

    font-weight:600;

}


.btn-outline-light:hover{

    background:white;

    color:#0F172A;

}


/* Right Side */

.hero .col-lg-5{

    display:flex;

    justify-content:center;

    align-items:center;

}


/* Placeholder Card */

.hero-placeholder{

    width:360px;

    height:360px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    text-align:center;

    padding:30px;

}


/* Animation */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}/* ==========================================================
   HERO ENHANCEMENTS
========================================================== */

/* Better hero spacing */
.hero{
    padding-top:100px;
}

/* Bigger CTA buttons */
.hero .btn{
    min-width:220px;
    text-align:center;
}

/* Gold button shadow */
.btn-warning{
    box-shadow:0 10px 25px rgba(192,122,29,.35);
}

/* Floating Hero Card */
.hero-placeholder{

    transition:.35s ease;

    box-shadow:
        0 20px 45px rgba(0,0,0,.35);

}

.hero-placeholder:hover{

    transform:translateY(-10px);

    box-shadow:
        0 35px 60px rgba(0,0,0,.45);

}

/* Hero icon animation */

.hero-placeholder i{

    animation:floatIcon 4s ease-in-out infinite;

}

@keyframes floatIcon{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Hero description */

.hero-description{

    line-height:1.9;

}

/* Better heading */

.hero-title{

    letter-spacing:-1px;

}

/* Responsive */

@media(max-width:992px){

.hero{

    text-align:center;

}

.hero-title{

    font-size:46px;

}

.hero-description{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.hero .col-lg-5{

    margin-top:60px;

}

.hero-placeholder{

    width:100%;

    max-width:360px;

    height:280px;

}

}
/* ==========================================================
   MODULE 3
   WHO WE ARE + SOLUTION CARDS
========================================================== */


/* ==========================================================
   WHO WE ARE SECTION
========================================================== */

#about-preview {
    background: #f8fafc;
}

#about-preview .row {
    align-items: center;
}


/* Company highlight container */

.company-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* Individual highlight cards */

.highlight-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 145px;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.highlight-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(192, 122, 29, 0.45);

    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.12);
}


/* Highlight icons */

.highlight-card > i {
    width: 48px;
    height: 48px;
    min-width: 48px;

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

    border-radius: 12px;

    background:
        rgba(192, 122, 29, 0.12);

    color:
        var(--primary);

    font-size: 21px;
}


/* Highlight text */

.highlight-card h4 {
    margin-bottom: 6px;
    font-size: 18px;
}


.highlight-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}


/* About button */

#about-preview .btn-warning {
    margin-top: 10px;
}


/* ==========================================================
   SOLUTIONS SECTION
========================================================== */

#solutions {
    background: #ffffff;
}


/* Centre title underline */

#solutions .text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}


/* Service cards */

.service-card {
    position: relative;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 16px;

    padding:
        34px 28px;

    height: 100%;

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Gold top accent */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}


/* Service hover */

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

    border-color:
        rgba(192, 122, 29, 0.4);

    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.14);
}


.service-card:hover::before {
    transform: scaleX(1);
}


/* Service icon */

.service-icon {
    width: 68px;
    height: 68px;

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

    margin-bottom: 24px;

    border-radius: 16px;

    background:
        rgba(192, 122, 29, 0.11);

    color:
        var(--primary);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.service-icon i {
    font-size: 30px;
}


.service-card:hover .service-icon {
    background:
        var(--primary);

    color:
        #ffffff;

    transform:
        rotate(-4deg)
        scale(1.05);
}


/* Service heading */

.service-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
}


/* Service paragraph */

.service-card > p {
    font-size: 14px;
    line-height: 1.75;
    min-height: 100px;
}


/* Service list */

.service-card ul {
    list-style: none;
    padding: 0;
    margin:
        22px 0;
}


.service-card ul li {
    position: relative;

    padding:
        7px 0 7px 24px;

    color:
        var(--text);

    font-size: 14px;

    border-bottom:
        1px solid #eef1f5;
}


.service-card ul li:last-child {
    border-bottom: none;
}


/* Gold checkmark */

.service-card ul li::before {
    content: "\F26A";

    position: absolute;

    left: 0;
    top: 8px;

    font-family:
        "bootstrap-icons";

    color:
        var(--primary);

    font-size: 14px;
}


/* Learn more link */

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color:
        var(--primary);

    font-weight: 700;

    font-size: 14px;
}


.learn-more i {
    transition:
        transform 0.3s ease;
}


.learn-more:hover {
    color:
        var(--primary-light);
}


.learn-more:hover i {
    transform:
        translateX(6px);
}


/* ==========================================================
   TEMPORARY SECTION SPACING IMPROVEMENTS
========================================================== */

#why-gp,
#certifications {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* ==========================================================
   RESPONSIVE — MODULE 3
========================================================== */

@media (max-width: 991px) {

    .company-highlights {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .highlight-card {
        min-height: auto;
    }

    .service-card > p {
        min-height: auto;
    }

}


@media (max-width: 767px) {

    .highlight-card {
        padding: 20px;
    }

    .service-card {
        padding: 28px 24px;
    }

    #solutions .section-title {
        font-size: 34px;
    }

}
/* ==========================================================
   MODULE 4
   WHY CHOOSE GP + STATISTICS
========================================================== */


/* ==========================================================
   WHY CHOOSE GP SECTION
========================================================== */

#why-gp {
    position: relative;
    background: #0f172a !important;
    overflow: hidden;
}


/* Subtle background pattern */

#why-gp::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(246, 179, 94, 0.12),
            transparent 68%
        );
}


#why-gp::after {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    bottom: -170px;
    left: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(192, 122, 29, 0.1),
            transparent 70%
        );
}


#why-gp .container {
    position: relative;
    z-index: 2;
}


/* White heading and text */

#why-gp .section-title {
    color: #ffffff;
}


#why-gp .section-title::after {
    margin-left: auto;
    margin-right: auto;
}


#why-gp .section-text {
    color: #cbd5e1;
}


/* ==========================================================
   FEATURE CARDS
========================================================== */

.feature-card {
    height: 100%;

    padding: 32px 26px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 16px;

    backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.feature-card:hover {
    transform: translateY(-9px);

    background:
        rgba(255, 255, 255, 0.1);

    border-color:
        rgba(246, 179, 94, 0.45);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.28);
}


/* Feature icon */

.feature-icon {
    width: 62px;
    height: 62px;

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

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        rgba(246, 179, 94, 0.14);

    color:
        var(--primary-light);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.feature-icon i {
    font-size: 28px;
}


.feature-card:hover .feature-icon {
    transform:
        rotate(-5deg)
        scale(1.06);

    background:
        var(--primary);
}


/* Feature text */

.feature-card h4 {
    color: #ffffff;

    font-size: 19px;

    margin-bottom: 14px;
}


.feature-card p {
    color: #cbd5e1;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 0;
}


/* ==========================================================
   STATISTICS
========================================================== */

.stat-box {
    position: relative;

    height: 100%;

    padding: 28px 18px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.04)
        );

    border:
        1px solid rgba(255, 255, 255, 0.12);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.stat-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );
}


.stat-box:hover {
    transform: translateY(-6px);

    border-color:
        rgba(246, 179, 94, 0.45);
}


.stat-box h2 {
    color:
        var(--primary-light);

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 8px;
}


.stat-box p {
    color: #ffffff;

    font-size: 14px;

    margin-bottom: 0;
}


/* ==========================================================
   MOBILE RESPONSIVE — MODULE 4
========================================================== */

@media (max-width: 991px) {

    .feature-card {
        padding: 28px 24px;
    }

}


@media (max-width: 767px) {

    #why-gp {
        text-align: center;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .stat-box h2 {
        font-size: 30px;
    }

}
/* ==========================================================
   MODULE 5
   CERTIFICATIONS + CTA + FOOTER + WHATSAPP
========================================================== */


/* ==========================================================
   CERTIFICATIONS SECTION
========================================================== */

#certifications {
    background: #ffffff;
}


/* Centre title underline */

#certifications .section-title::after {
    margin-left: auto;
    margin-right: auto;
}


/* Certification cards */

.certificate-card {
    position: relative;

    height: 100%;

    padding: 38px 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 16px;

    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Gold top border */

.certificate-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );
}


/* Subtle watermark effect */

.certificate-card::after {
    content: "GP";

    position: absolute;

    right: -12px;
    bottom: -48px;

    font-size: 120px;

    font-weight: 800;

    color:
        rgba(192, 122, 29, 0.045);

    pointer-events: none;
}


.certificate-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(192, 122, 29, 0.42);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.14);
}


/* Certificate icon */

.certificate-icon {
    width: 76px;
    height: 76px;

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

    margin:
        0 auto 24px;

    border-radius: 50%;

    background:
        rgba(192, 122, 29, 0.11);

    color:
        var(--primary);
}


.certificate-icon i {
    font-size: 32px;
}


/* Certificate heading */

.certificate-card h4 {
    font-size: 21px;
    margin-bottom: 16px;
}


/* Certificate paragraph */

.certificate-card p {
    font-size: 14px;
    line-height: 1.75;
}


/* Registration status */

.certificate-status {
    display: inline-block;

    margin-top: 10px;

    padding: 8px 16px;

    border-radius: 50px;

    background:
        rgba(192, 122, 29, 0.1);

    color:
        var(--primary);

    font-size: 13px;

    font-weight: 700;
}


/* ==========================================================
   CALL TO ACTION SECTION
========================================================== */

.cta-section {
    position: relative;

    padding:
        110px 0;

    background:
        linear-gradient(
            135deg,
            rgba(15, 23, 42, 0.98),
            rgba(28, 40, 67, 0.97)
        );

    overflow: hidden;
}


/* Decorative glow */

.cta-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -240px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(246, 179, 94, 0.18),
            transparent 68%
        );
}


.cta-section::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    bottom: -230px;
    left: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(192, 122, 29, 0.13),
            transparent 70%
        );
}


.cta-section .container {
    position: relative;
    z-index: 2;
}


.cta-title {
    color: #ffffff;

    max-width: 900px;

    margin:
        0 auto 24px;

    font-size: 46px;

    line-height: 1.25;
}


.cta-text {
    color: #cbd5e1;

    max-width: 820px;

    margin:
        0 auto 38px;

    font-size: 17px;

    line-height: 1.85;
}


.cta-buttons {
    display: flex;

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

    flex-wrap: wrap;

    gap: 16px;
}


.cta-buttons .btn {
    min-width: 220px;
}


/* ==========================================================
   FOOTER
========================================================== */

.footer {
    padding:
        80px 0 26px;

    background: #09101f;

    color: #ffffff;
}


/* Footer logo */

.footer-logo {
    width: 76px;
    height: 76px;

    object-fit: contain;
}


/* Footer headings */

.footer h4,
.footer h5 {
    color: #ffffff;
}


.footer h4 {
    font-size: 22px;
}


.footer h5 {
    position: relative;

    margin-bottom: 24px;

    font-size: 17px;
}


.footer h5::after {
    content: "";

    display: block;

    width: 42px;
    height: 3px;

    margin-top: 10px;

    border-radius: 20px;

    background:
        var(--primary);
}


/* Footer paragraphs */

.footer p {
    color: #aeb8c7;

    font-size: 14px;

    line-height: 1.8;
}


/* Footer links */

.footer-links {
    list-style: none;

    padding: 0;

    margin: 0;
}


.footer-links li {
    margin-bottom: 12px;

    color: #aeb8c7;

    font-size: 14px;
}


.footer-links a {
    color: #aeb8c7;
}


.footer-links a:hover {
    color:
        var(--primary-light);

    padding-left: 5px;
}


/* Footer contact icons */

.footer .bi {
    color:
        var(--primary-light);

    margin-right: 8px;
}


/* Footer divider */

.footer-divider {
    margin:
        52px 0 24px;

    border-color:
        rgba(255, 255, 255, 0.12);
}


.copyright,
.developer {
    margin-bottom: 0 !important;

    font-size: 13px !important;
}


/* ==========================================================
   FLOATING WHATSAPP BUTTON
========================================================== */

.whatsapp-button {
    position: fixed;

    right: 26px;
    bottom: 26px;

    width: 62px;
    height: 62px;

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

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 30px;

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-button:hover {
    color: #ffffff;

    transform:
        translateY(-5px)
        scale(1.06);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.32);
}


/* Small pulse ring */

.whatsapp-button::before {
    content: "";

    position: absolute;

    inset: -7px;

    border:
        2px solid rgba(37, 211, 102, 0.35);

    border-radius: 50%;

    animation:
        whatsappPulse 2.2s infinite;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }

}


/* ==========================================================
   RESPONSIVE — MODULE 5
========================================================== */

@media (max-width: 991px) {

    .cta-title {
        font-size: 38px;
    }

    .footer {
        padding-top: 65px;
    }

}


@media (max-width: 767px) {

    .certificate-card {
        padding: 32px 24px;
    }

    .cta-section {
        padding:
            85px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer {
        text-align: center;
    }

    .footer-logo {
        margin:
            0 auto;
    }

    .footer h5::after {
        margin-left: auto;
        margin-right: auto;
    }

    .copyright,
    .developer {
        text-align: center;
    }

    .whatsapp-button {
        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;

        font-size: 27px;
    }

}
/* ==========================================================
   MODULE 6
   FINAL POLISH + RESPONSIVE DESIGN
========================================================== */


/* ==========================================================
   NAVBAR POLISH
========================================================== */

.navbar {
    min-height: 84px;
}

.navbar.scrolled {
    min-height: 70px;
    padding: 8px 0;

    background:
        rgba(9, 16, 31, 0.97);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.22);
}

.navbar.scrolled .logo {
    width: 52px;
    height: 52px;
}

.navbar.scrolled .brand-text h5 {
    font-size: 18px;
}


/* Active navigation link */

.navbar-nav .nav-link.active {
    color:
        var(--primary-light);
}


/* ==========================================================
   HERO FINAL POLISH
========================================================== */

.hero {
    min-height: 100vh;
}

.hero-badge {
    text-transform: uppercase;
}

.hero-title {
    text-shadow:
        0 6px 24px rgba(0, 0, 0, 0.28);
}

.hero-placeholder {
    position: relative;
}

.hero-placeholder::before {
    content: "";

    position: absolute;

    inset: 12px;

    border:
        1px solid rgba(246, 179, 94, 0.25);

    border-radius: 12px;

    pointer-events: none;
}


/* ==========================================================
   BUTTON POLISH
========================================================== */

.btn {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.btn:focus {
    box-shadow:
        0 0 0 4px rgba(192, 122, 29, 0.22);
}


/* ==========================================================
   SECTION SCROLL OFFSET
========================================================== */

section {
    scroll-margin-top: 85px;
}


/* ==========================================================
   TEXT SELECTION COLOUR
========================================================== */

::selection {
    background:
        var(--primary);

    color:
        #ffffff;
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

a:focus-visible,
button:focus-visible {
    outline:
        3px solid var(--primary-light);

    outline-offset:
        3px;
}


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

@media (max-width: 1199px) {

    .container {
        width: 92%;
    }

    .hero-title {
        font-size: 55px;
    }

    .navbar-nav .nav-link {
        margin-left: 10px;
        font-size: 14px;
    }

    .btn-nav {
        padding:
            11px 20px;
    }

}


/* ==========================================================
   MOBILE NAVIGATION
========================================================== */

@media (max-width: 991px) {

    .navbar {
        padding:
            12px 0;

        background:
            rgba(9, 16, 31, 0.98);
    }

    .navbar-collapse {
        margin-top: 14px;

        padding:
            20px;

        border-radius: 12px;

        background:
            #111b30;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.25);
    }

    .navbar-nav {
        align-items:
            stretch !important;
    }

    .navbar-nav .nav-link {
        margin-left: 0;

        padding:
            11px 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-item:last-child {
        margin-left:
            0 !important;

        margin-top:
            16px;
    }

    .btn-nav {
        width:
            100%;

        text-align:
            center;
    }

    .brand-text small {
        display:
            none;
    }

}


/* ==========================================================
   TABLET HERO
========================================================== */

@media (max-width: 991px) {

    .hero {
        padding:
            145px 0 90px;

        min-height:
            auto;
    }

    .hero .row {
        min-height:
            auto !important;
    }

    .hero-title {
        font-size:
            48px;
    }

    .hero-description {
        font-size:
            17px;
    }

    .hero-placeholder {
        margin:
            10px auto 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    body {
        font-size:
            15px;
    }

    section {
        padding:
            70px 0;
    }

    .container {
        width:
            92%;
    }

    .logo {
        width:
            54px;

        height:
            54px;
    }

    .brand-text h5 {
        font-size:
            17px;
    }

    .hero {
        padding-top:
            135px;
    }

    .hero-title {
        font-size:
            38px;

        letter-spacing:
            -0.5px;
    }

    .hero-description {
        font-size:
            15px;

        line-height:
            1.8;
    }

    .hero-badge {
        padding:
            8px 15px;

        font-size:
            12px;
    }

    .hero-buttons {
        flex-direction:
            column;

        align-items:
            center;
    }

    .hero-buttons .btn {
        width:
            100%;

        max-width:
            330px;
    }

    .hero-placeholder {
        height:
            260px;
    }

    .section-title {
        font-size:
            33px;
    }

    .section-text {
        font-size:
            15px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .brand-text {
        max-width:
            190px;
    }

    .brand-text h5 {
        font-size:
            15px;
    }

    .hero-title {
        font-size:
            33px;
    }

    .hero-placeholder {
        height:
            230px;

        padding:
            20px;
    }

    .cta-title {
        font-size:
            29px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior:
            auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}
/* ==========================================================
   FOOTER CONTACT LINKS
========================================================== */

.footer p a {
    color: #aeb8c7;
}

.footer p a:hover {
    color: var(--primary-light);
}
/* ==========================================================
   MODULE 7
   ROTATING REAL-PROJECT HERO IMAGES
========================================================== */


/* Remove the earlier static hero background */

.hero {
    background: #0f172a;
}


/* Background slide container */

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}


/* Individual images */

.hero-slide {
    position: absolute;
    inset: 0;

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

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 1.4s ease,
        transform 8s ease;
}


.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}


/* Strong professional overlay */

.hero-overlay {
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(9, 16, 31, 0.96) 0%,
            rgba(15, 23, 42, 0.88) 44%,
            rgba(15, 23, 42, 0.5) 72%,
            rgba(15, 23, 42, 0.35) 100%
        );
}


/* Make sure content remains above images */

.hero .container {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   REAL PROJECT INFORMATION CARD
========================================================== */

.hero-project-card {
    max-width: 390px;

    margin-left: auto;

    padding: 34px;

    border-radius: 18px;

    background:
        rgba(15, 23, 42, 0.72);

    border:
        1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4);
}


.project-card-label {
    display: inline-block;

    margin-bottom: 18px;

    color:
        var(--primary-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.hero-project-card h3 {
    color: #ffffff;

    margin-bottom: 15px;

    font-size: 27px;
}


.hero-project-card p {
    color: #d2dae6;

    margin-bottom: 24px;

    font-size: 14px;

    line-height: 1.8;
}


.project-card-status {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.project-card-status span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 12px;

    border-radius: 50px;

    background:
        rgba(246, 179, 94, 0.13);

    color: #ffffff;

    font-size: 12px;

    border:
        1px solid rgba(246, 179, 94, 0.25);
}


.project-card-status i {
    color:
        var(--primary-light);
}


/* ==========================================================
   RESPONSIVE HERO PHOTOGRAPHS
========================================================== */

@media (max-width: 991px) {

    .hero-slide {
        background-position: center;
    }

    .hero-overlay {
        background:
            rgba(9, 16, 31, 0.88);
    }

    .hero-project-card {
        margin:
            45px auto 0;

        text-align:
            left;
    }

}


@media (max-width: 767px) {

    .hero-project-card {
        padding: 26px;
    }

    .hero-project-card h3 {
        font-size: 23px;
    }

}
/* ===========================================
   HERO PROJECT IMAGE
=========================================== */

.hero-card{
    overflow:hidden;
    padding:0;
}

.hero-project-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:.5s;
}

.hero-card:hover .hero-project-image{
    transform:scale(1.05);
}
/* ==========================================================
   HERO VISUAL — FINAL VERSION
========================================================== */

.hero-visual {
    position: relative;

    width: 100%;
    max-width: 430px;
    height: 520px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.42);
}


.hero-visual-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 28%;

    display: block;

    transition:
        transform 0.7s ease;
}


.hero-visual:hover .hero-visual-image {
    transform: scale(1.04);
}


.hero-visual-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(9, 16, 31, 0.02) 35%,
            rgba(9, 16, 31, 0.82) 100%
        );
}


.hero-visual-caption {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 26px;

    z-index: 2;
}


.hero-visual-tag {
    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--primary-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.6px;
}


.hero-visual-caption h3 {
    color: #ffffff;

    margin-bottom: 8px;

    font-size: 25px;
}


.hero-visual-caption p {
    color: #d3dbe7;

    margin-bottom: 0;

    font-size: 13px;

    line-height: 1.65;
}


@media (max-width: 991px) {

    .hero-visual {
        margin:
            50px auto 0;

        max-width:
            430px;
    }

}


@media (max-width: 767px) {

    .hero-visual {
        height:
            430px;
    }

}
/* Hide the lower timestamp area more strongly */

.hero-visual-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(9, 16, 31, 0.02) 28%,
            rgba(9, 16, 31, 0.62) 62%,
            rgba(9, 16, 31, 0.96) 100%
        );
}

.hero-visual-caption {
    padding-bottom: 6px;
}
/* ==========================================================
   MODULE 8
   ABOUT PAGE STYLING
========================================================== */


/* ==========================================================
   ABOUT PAGE HERO
========================================================== */

.inner-page-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    padding:
        150px 0 90px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #17223a
        );
}


.inner-page-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(246, 179, 94, 0.15),
            transparent 38%
        );
}


.inner-page-hero .container {
    position: relative;
    z-index: 2;
}


.inner-page-title {
    color: #ffffff;

    max-width: 720px;

    margin-bottom: 28px;

    font-size: 60px;

    font-weight: 800;

    line-height: 1.15;
}


.inner-page-title span {
    display: block;

    color:
        var(--primary-light);
}


.inner-page-description {
    max-width: 680px;

    color: #cbd5e1;

    font-size: 18px;

    line-height: 1.85;
}


/* About hero image */

.about-hero-image {
    position: relative;

    max-width: 430px;
    height: 500px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.4);
}


.about-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.7s ease;
}


.about-hero-image:hover img {
    transform:
        scale(1.04);
}


/* ==========================================================
   COMPANY INTRODUCTION
========================================================== */

.about-introduction {
    background: #ffffff;
}


.about-image-frame {
    position: relative;

    min-height: 540px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 24px 55px rgba(15, 23, 42, 0.16);
}


.about-image-frame > img {
    width: 100%;
    height: 540px;

    object-fit: cover;
    object-position: center;

    display: block;
}


.about-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 38%,
            rgba(9, 16, 31, 0.92) 100%
        );
}


.about-image-caption {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 26px;

    z-index: 2;
}


.about-image-caption span {
    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--primary-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.6px;
}


.about-image-caption h3 {
    color: #ffffff;

    margin-bottom: 10px;

    font-size: 28px;
}


.about-image-caption p {
    color: #d5dce8;

    margin-bottom: 0;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================================
   OUR GOAL
========================================================== */

.about-goal {
    padding:
        95px 0;
}


/* ==========================================================
   MISSION & VISION
========================================================== */

.mission-vision-section {
    background: #ffffff;
}


.mission-vision-card {
    height: 100%;

    padding: 42px 38px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.mission-vision-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(192, 122, 29, 0.42);

    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.14);
}


.mission-vision-icon {
    width: 70px;
    height: 70px;

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

    margin-bottom: 24px;

    border-radius: 16px;

    background:
        rgba(192, 122, 29, 0.11);

    color:
        var(--primary);
}


.mission-vision-icon i {
    font-size: 31px;
}


.mission-vision-card h3 {
    margin-bottom: 18px;

    font-size: 27px;
}


.mission-vision-card p {
    margin-bottom: 0;

    line-height: 1.8;
}


/* ==========================================================
   CORE VALUES
========================================================== */

.core-values-section .section-title::after {
    margin-left: auto;
    margin-right: auto;
}


.value-card {
    height: 100%;

    padding: 32px 26px;

    border-radius: 16px;

    background: #ffffff;

    border:
        1px solid var(--border);

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


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

    border-color:
        rgba(192, 122, 29, 0.42);

    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.13);
}


.value-icon {
    width: 62px;
    height: 62px;

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

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        rgba(192, 122, 29, 0.11);

    color:
        var(--primary);
}


.value-icon i {
    font-size: 27px;
}


.value-card h4 {
    margin-bottom: 14px;

    font-size: 20px;
}


.value-card p {
    margin-bottom: 0;

    font-size: 14px;

    line-height: 1.75;
}


/* ==========================================================
   CORPORATE SUMMARY
========================================================== */

.corporate-summary-section {
    background:
        #ffffff;
}


.corporate-summary-grid {
    display: grid;

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

    gap: 18px;
}


.corporate-summary-card {
    min-height: 140px;

    padding: 24px;

    border-radius: 15px;

    background:
        #f8fafc;

    border:
        1px solid var(--border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


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

    border-color:
        rgba(192, 122, 29, 0.4);

    box-shadow:
        0 16px 35px rgba(15, 23, 42, 0.09);
}


.corporate-summary-card span {
    display: block;

    margin-bottom: 10px;

    color:
        var(--primary);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.corporate-summary-card h4 {
    margin-bottom: 0;

    font-size: 18px;

    line-height: 1.5;
}


/* ==========================================================
   ABOUT CAPABILITIES
========================================================== */

.about-capabilities-section .section-title::after {
    margin-left: auto;
    margin-right: auto;
}


.about-capability-card {
    height: 100%;

    padding: 32px 28px;

    border-radius: 16px;

    background: #ffffff;

    border:
        1px solid var(--border);

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.about-capability-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(192, 122, 29, 0.42);

    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.13);
}


.about-capability-icon {
    width: 64px;
    height: 64px;

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

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        rgba(192, 122, 29, 0.11);

    color:
        var(--primary);
}


.about-capability-icon i {
    font-size: 28px;
}


.about-capability-card h4 {
    margin-bottom: 14px;

    font-size: 20px;
}


.about-capability-card p {
    margin-bottom: 0;

    font-size: 14px;

    line-height: 1.75;
}


/* ==========================================================
   REGISTRATION HIGHLIGHTS
========================================================== */

.about-registration-section {
    background: #ffffff;
}


.about-registration-section .section-title::after {
    margin-left: auto;
    margin-right: auto;
}


.about-registration-card {
    height: 100%;

    padding: 38px 30px;

    text-align: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #0f172a,
            #18243c
        );

    border:
        1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.18);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.about-registration-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.26);
}


.about-registration-card > i {
    display: inline-block;

    margin-bottom: 22px;

    color:
        var(--primary-light);

    font-size: 38px;
}


.about-registration-card h4 {
    color: #ffffff;

    margin-bottom: 15px;

    font-size: 22px;
}


.about-registration-card p {
    color: #cbd5e1;

    margin-bottom: 0;

    font-size: 14px;

    line-height: 1.75;
}


/* ==========================================================
   ABOUT PAGE RESPONSIVE
========================================================== */

@media (max-width: 991px) {

    .inner-page-hero {
        min-height: auto;

        padding:
            145px 0 90px;
    }

    .inner-page-title {
        font-size: 48px;
    }

    .about-hero-image {
        margin:
            50px auto 0;
    }

    .corporate-summary-grid {
        margin-top: 20px;
    }

}


@media (max-width: 767px) {

    .inner-page-title {
        font-size: 37px;
    }

    .inner-page-description {
        font-size: 16px;
    }

    .about-hero-image {
        height: 430px;
    }

    .about-image-frame {
        min-height: 460px;
    }

    .about-image-frame > img {
        height: 460px;
    }

    .mission-vision-card {
        padding: 34px 27px;
    }

    .corporate-summary-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .inner-page-title {
        font-size: 32px;
    }

    .about-hero-image {
        height: 390px;
    }

    .about-image-caption {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

}
/* =========================================================
   GP DIGITAL — PRODUCTS PAGE
   PART 2A
========================================================= */


/* =========================================================
   PRODUCT PAGE HERO
========================================================= */

.product-page-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 100px;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255, 193, 7, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #101d2f 55%,
            #08111f 100%
        );
}

.product-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.product-page-hero .container {
    position: relative;
    z-index: 2;
}

.product-hero-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    top: 50%;
    right: -170px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.12);
    filter: blur(100px);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 50px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.08);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.product-hero-title {
    max-width: 760px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -2px;
}

.product-hero-title span {
    display: block;
    color: #ffc107;
}

.product-hero-description {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.9;
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.product-hero-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 600;
}

.product-hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.product-hero-services span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 500;
}

.product-hero-services i {
    color: #ffc107;
}


/* =========================================================
   PRODUCT HERO SHOWCASE
========================================================= */

.product-hero-showcase {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.product-hero-image-wrap {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px 125px;
}

.product-hero-image-wrap img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.product-hero-showcase:hover .product-hero-image-wrap img {
    transform: translateY(-6px);
}

.product-hero-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    background: rgba(7, 15, 28, 0.92);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.product-hero-card span {
    display: block;
    margin-bottom: 8px;
    color: #ffc107;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.product-hero-card h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.5;
}

.product-hero-card p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.79rem;
    line-height: 1.65;
}

.product-hero-card strong {
    color: #ffc107;
    font-size: 1.15rem;
}


/* =========================================================
   PRODUCT BENEFITS
========================================================= */

.product-benefits-section {
    position: relative;
    z-index: 4;
    margin-top: -48px;
    padding-bottom: 45px;
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.09);
}

.product-benefit-item {
    display: flex;
    gap: 16px;
    min-height: 155px;
    padding: 28px 24px;
    border-right: 1px solid #e9ecf1;
}

.product-benefit-item:last-child {
    border-right: none;
}

.product-benefit-item > i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #9a7200;
    background: rgba(255, 193, 7, 0.14);
    font-size: 1.15rem;
}

.product-benefit-item h4 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
}

.product-benefit-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.65;
}


/* =========================================================
   PRODUCT CATEGORY FILTERS
========================================================= */

.product-category-section {
    padding: 80px 0 60px;
    background: #f7f8fa;
}

.product-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-filter {
    min-height: 43px;
    padding: 9px 18px;
    border: 1px solid #dfe3e9;
    border-radius: 50px;
    color: #4b5563;
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-filter:hover {
    color: #111827;
    border-color: #ffc107;
    transform: translateY(-2px);
}

.product-filter.active {
    color: #101828;
    border-color: #ffc107;
    background: #ffc107;
}


/* =========================================================
   PRODUCT FAMILY SECTION
========================================================= */

.product-family-section {
    padding: 90px 0 110px;
    background: #ffffff;
}

.product-family-quote-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9a7200;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.product-family-quote-link i {
    transition: transform 0.25s ease;
}

.product-family-quote-link:hover {
    color: #715400;
}

.product-family-quote-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.product-item {
    display: flex;
}

.product-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e6e9ee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(13, 27, 42, 0.055);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.65);
    box-shadow: 0 20px 42px rgba(13, 27, 42, 0.11);
}

.featured-product-card {
    border-color: rgba(255, 193, 7, 0.72);
}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.product-image-area {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 52px 28px 28px;
    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #f5f6f8 70%,
            #eff1f4 100%
        );
}

.product-image-area::after {
    content: "";
    position: absolute;
    width: 155px;
    height: 18px;
    right: 50%;
    bottom: 25px;
    transform: translateX(50%);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    filter: blur(7px);
}

.product-image-area img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    max-width: 90%;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 13px 12px rgba(15, 23, 42, 0.12));
    transition: transform 0.35s ease;
}

.product-card:hover .product-image-area img {
    transform: translateY(-5px) scale(1.025);
}

.product-status {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 17px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.35px;
}

.ready-stock {
    color: #17633b;
    background: #dbf6e7;
}

.made-to-order {
    color: #805b00;
    background: #fff0bd;
}

.featured-product-label {
    position: absolute;
    z-index: 4;
    top: 17px;
    right: 17px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 50px;
    color: #111827;
    background: #ffc107;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}


/* =========================================================
   PRODUCT CARD CONTENT
========================================================= */

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.product-category-label {
    display: block;
    margin-bottom: 10px;
    color: #a07400;
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 1px;
}

.product-name {
    min-height: 52px;
    margin-bottom: 13px;
    color: #111827;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.5;
}

.product-description {
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 0.79rem;
    line-height: 1.75;
}

.product-brand-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 17px;
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.55;
}

.product-brand-line i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #ad8200;
    font-size: 0.8rem;
}

.product-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 21px;
}

.product-service-tags span {
    padding: 5px 9px;
    border: 1px solid #e2e6ec;
    border-radius: 5px;
    color: #536174;
    background: #f8f9fb;
    font-size: 0.63rem;
    font-weight: 600;
}


/* =========================================================
   PRODUCT PRICE AREA
========================================================= */

.product-price-area {
    margin-top: auto;
    margin-bottom: 19px;
    padding-top: 18px;
    border-top: 1px solid #eceef2;
}

.product-price-area small {
    display: block;
    margin-bottom: 2px;
    color: #8a94a3;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.product-price-area strong {
    display: block;
    color: #111827;
    font-size: 1.42rem;
    font-weight: 800;
}

.product-price-area .price-on-request {
    color: #936d00;
    font-size: 1.15rem;
}


/* =========================================================
   PRODUCT CARD BUTTONS
========================================================= */

.product-card-actions {
    display: grid;
    gap: 9px;
}

.product-card-actions .btn {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-whatsapp-btn {
    border-color: #ffc107;
    color: #111827;
    background: #ffc107;
}

.product-whatsapp-btn:hover {
    color: #111827;
    border-color: #e4aa00;
    background: #e4aa00;
}

.product-quote-btn {
    border: 1px solid #d9dde4;
    color: #334155;
    background: #ffffff;
}

.product-quote-btn:hover {
    color: #111827;
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.08);
}

.product-quote-btn.added {
    color: #17633b;
    border-color: #85d4a5;
    background: #e7f8ee;
}


/* =========================================================
   PRODUCT FILTER ANIMATION
========================================================= */

.product-item.product-hidden {
    display: none;
}

.product-item.product-visible {
    animation: productFadeIn 0.4s ease;
}

@keyframes productFadeIn {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   PRODUCT PAGE RESPONSIVE — PART 2A
========================================================= */

@media (max-width: 1199.98px) {

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

    .product-benefit-item:nth-child(2) {
        border-right: none;
    }

    .product-benefit-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e9ecf1;
    }

}


@media (max-width: 991.98px) {

    .product-page-hero {
        min-height: auto;
        padding: 145px 0 105px;
    }

    .product-hero-title {
        letter-spacing: -1px;
    }

    .product-hero-showcase {
        margin: 20px auto 0;
    }

    .product-family-section {
        padding: 75px 0 90px;
    }

}


@media (max-width: 767.98px) {

    .product-page-hero {
        padding: 125px 0 90px;
    }

    .product-hero-title {
        font-size: 2.65rem;
    }

    .product-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-hero-actions .btn {
        width: 100%;
    }

    .product-hero-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-benefits-section {
        margin-top: -30px;
    }

    .product-benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-benefit-item {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e9ecf1;
    }

    .product-benefit-item:nth-child(2) {
        border-right: none;
    }

    .product-benefit-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e9ecf1;
    }

    .product-benefit-item:last-child {
        border-bottom: none;
    }

    .product-category-section {
        padding: 65px 0 50px;
    }

    .product-filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: thin;
    }

    .product-filter {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .product-family-section {
        padding: 65px 0 80px;
    }

    .product-image-area {
        min-height: 255px;
    }

    .product-image-area img {
        height: 180px;
    }

}


@media (max-width: 575.98px) {

    .product-hero-title {
        font-size: 2.25rem;
    }

    .product-hero-description {
        font-size: 0.95rem;
    }

    .product-hero-showcase {
        padding: 18px;
        border-radius: 17px;
    }

    .product-hero-image-wrap {
        min-height: 320px;
        padding-bottom: 132px;
    }

    .product-hero-image-wrap img {
        height: 245px;
    }

    .product-hero-card {
        right: 13px;
        bottom: 13px;
        left: 13px;
        padding: 18px;
    }

    .product-hero-services {
        grid-template-columns: 1fr;
    }

    .product-benefit-item {
        padding: 23px 20px;
    }

    .product-card-body {
        padding: 22px;
    }

    .product-name {
        min-height: auto;
    }

}
/* =========================================================
   GP DIGITAL — PRODUCTS PAGE
   PART 2B
========================================================= */


/* =========================================================
   ADDITIONAL PRODUCT FAMILIES
========================================================= */

.additional-products-section {
    padding: 95px 0 110px;
    background: #f7f8fa;
}

.additional-products-section .product-card {
    background: #ffffff;
}


/* =========================================================
   TECHNICAL PRODUCT SECTION
========================================================= */

.technical-product-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 10% 40%,
            rgba(255, 193, 7, 0.1),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #111e30 58%,
            #091321 100%
        );
}

.technical-product-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
}

.technical-product-section .container {
    position: relative;
    z-index: 2;
}

.technical-product-card {
    padding: 55px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.technical-product-image {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.025) 68%
        );
}

.technical-product-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s ease;
}

.technical-product-card:hover .technical-product-image img {
    transform: translateY(-6px);
}

.technical-product-card h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -1px;
}

.technical-product-card p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.85;
}

.technical-product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    margin: 30px 0 34px;
}

.technical-product-features span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.technical-product-features i {
    flex-shrink: 0;
    color: #ffc107;
}

.technical-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.technical-product-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 21px;
    border-radius: 8px;
    font-size: 0.87rem;
    font-weight: 650;
}


/* =========================================================
   PRODUCT PRICING NOTICE
========================================================= */

.product-pricing-notice-section {
    padding: 65px 0;
    background: #ffffff;
}

.product-pricing-notice {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 32px;
    border: 1px solid #e5e8ed;
    border-left: 5px solid #ffc107;
    border-radius: 12px;
    background: #fafbfc;
}

.product-pricing-notice-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #936d00;
    background: rgba(255, 193, 7, 0.15);
    font-size: 1.2rem;
}

.product-pricing-notice h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-pricing-notice p {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.75;
}


/* =========================================================
   BULK PURCHASE CTA
========================================================= */

.product-bulk-cta-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background:
        linear-gradient(
            135deg,
            #152439 0%,
            #0d1727 100%
        );
}

.product-bulk-cta-section::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.09);
    filter: blur(75px);
    pointer-events: none;
}

.product-bulk-cta-section .container {
    position: relative;
    z-index: 2;
}

.product-bulk-cta-section h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 750;
    letter-spacing: -0.8px;
}

.product-bulk-cta-section p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.8;
}

.product-bulk-cta-section .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
}


/* =========================================================
   QUOTATION BASKET PANEL
========================================================= */

.quote-basket {
    position: fixed;
    z-index: 1085;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    visibility: hidden;
    background: #ffffff;
    box-shadow: -20px 0 55px rgba(15, 23, 42, 0.2);
    transition:
        transform 0.35s ease,
        visibility 0.35s ease;
}

.quote-basket.open {
    transform: translateX(0);
    visibility: visible;
}

.quote-basket-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 25px 23px;
    border-bottom: 1px solid #e8ebef;
    background: #0c1728;
}

.quote-basket-header span {
    display: block;
    margin-bottom: 5px;
    color: #ffc107;
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 1.1px;
}

.quote-basket-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.quote-basket-close {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.quote-basket-close:hover {
    color: #ffffff;
    border-color: rgba(255, 193, 7, 0.6);
    background: rgba(255, 193, 7, 0.12);
}

.quote-basket-items {
    flex: 1;
    overflow-y: auto;
    padding: 22px;
    background: #f7f8fa;
}

.quote-basket-empty {
    margin: 35px 0;
    padding: 28px 20px;
    border: 1px dashed #cfd5dd;
    border-radius: 10px;
    color: #7b8492;
    background: #ffffff;
    font-size: 0.82rem;
    line-height: 1.7;
    text-align: center;
}

.quote-basket-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    margin-bottom: 12px;
    padding: 17px;
    border: 1px solid #e2e6eb;
    border-radius: 10px;
    background: #ffffff;
}

.quote-basket-item:last-child {
    margin-bottom: 0;
}

.quote-basket-item-details h4 {
    margin-bottom: 5px;
    color: #172033;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.45;
}

.quote-basket-item-details span {
    display: block;
    color: #8a7200;
    font-size: 0.7rem;
    font-weight: 650;
}

.quote-item-quantity {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
}

.quote-quantity-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dce3;
    border-radius: 6px;
    color: #334155;
    background: #ffffff;
    font-size: 0.72rem;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.quote-quantity-btn:hover {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.quote-item-quantity strong {
    min-width: 28px;
    color: #111827;
    font-size: 0.8rem;
    text-align: center;
}

.quote-remove-item {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 7px;
    color: #b42318;
    background: #fff0ef;
    font-size: 0.8rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.quote-remove-item:hover {
    color: #ffffff;
    background: #b42318;
}

.quote-basket-footer {
    display: grid;
    gap: 10px;
    padding: 20px 22px;
    border-top: 1px solid #e5e8ed;
    background: #ffffff;
}

.quote-basket-footer .btn {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
}

.quote-clear-btn {
    border: 1px solid #d8dde4;
    color: #5b6472;
    background: #ffffff;
}

.quote-clear-btn:hover {
    color: #b42318;
    border-color: #e8aaa5;
    background: #fff7f6;
}


/* =========================================================
   QUOTATION BASKET TOGGLE
========================================================= */

.quote-basket-toggle {
    position: fixed;
    z-index: 1045;
    right: 24px;
    bottom: 92px;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px 10px 16px;
    border: 1px solid rgba(255, 193, 7, 0.55);
    border-radius: 50px;
    color: #ffffff;
    background: #111d2f;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.25);
    font-size: 0.76rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.quote-basket-toggle:hover {
    transform: translateY(-3px);
    border-color: #ffc107;
    background: #17263c;
}

.quote-basket-toggle i {
    color: #ffc107;
    font-size: 1rem;
}

.quote-basket-toggle strong {
    min-width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111827;
    background: #ffc107;
    font-size: 0.7rem;
    font-weight: 800;
}


/* =========================================================
   QUOTATION BASKET BACKDROP
========================================================= */

.quote-basket-backdrop {
    position: fixed;
    z-index: 1080;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(5, 12, 22, 0.58);
    backdrop-filter: blur(3px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.quote-basket-backdrop.active {
    opacity: 1;
    visibility: visible;
}

body.quote-basket-open {
    overflow: hidden;
}


/* =========================================================
   PRODUCT PAGE RESPONSIVE — PART 2B
========================================================= */

@media (max-width: 991.98px) {

    .additional-products-section {
        padding: 80px 0 90px;
    }

    .technical-product-section {
        padding: 85px 0;
    }

    .technical-product-card {
        padding: 38px;
    }

    .technical-product-image {
        min-height: 390px;
    }

    .technical-product-image img {
        height: 310px;
    }

    .product-bulk-cta-section {
        padding: 72px 0;
    }

}


@media (max-width: 767.98px) {

    .additional-products-section {
        padding: 65px 0 80px;
    }

    .technical-product-section {
        padding: 70px 0;
    }

    .technical-product-card {
        padding: 25px;
        border-radius: 17px;
    }

    .technical-product-image {
        min-height: 320px;
        padding: 20px;
    }

    .technical-product-image img {
        height: 255px;
    }

    .technical-product-features {
        grid-template-columns: 1fr;
    }

    .technical-product-actions {
        flex-direction: column;
    }

    .technical-product-actions .btn {
        width: 100%;
    }

    .product-pricing-notice-section {
        padding: 50px 0;
    }

    .product-pricing-notice {
        padding: 24px;
    }

    .product-bulk-cta-section {
        padding: 62px 0;
    }

    .product-bulk-cta-section .btn {
        width: 100%;
        margin-top: 10px;
    }

    .quote-basket-toggle {
        right: 18px;
        bottom: 86px;
    }

}


@media (max-width: 575.98px) {

    .technical-product-card {
        padding: 18px;
    }

    .technical-product-image {
        min-height: 270px;
    }

    .technical-product-image img {
        height: 215px;
    }

    .technical-product-card h2 {
        font-size: 1.85rem;
    }

    .technical-product-card p {
        font-size: 0.87rem;
    }

    .product-pricing-notice {
        flex-direction: column;
        gap: 15px;
    }

    .product-bulk-cta-section h2 {
        font-size: 2rem;
    }

    .quote-basket {
        width: 100%;
    }

    .quote-basket-header {
        padding: 22px 19px;
    }

    .quote-basket-items {
        padding: 17px;
    }

    .quote-basket-footer {
        padding: 17px;
    }

    .quote-basket-toggle {
        right: 14px;
        bottom: 83px;
        padding: 10px 12px;
    }

    .quote-basket-toggle span {
        display: none;
    }

}
/* =========================================================
   GP DIGITAL — PROJECTS PAGE
   PART 2A
========================================================= */


/* =========================================================
   PROJECTS PAGE HERO
========================================================= */

.projects-page-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 105px;
    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(255, 193, 7, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #101d2f 56%,
            #08111f 100%
        );
}

.projects-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 56px 56px;
}

.projects-page-hero .container {
    position: relative;
    z-index: 2;
}

.projects-hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    top: 50%;
    right: -170px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.11);
    filter: blur(105px);
    pointer-events: none;
}

.projects-hero-title {
    max-width: 800px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.projects-hero-title span {
    display: block;
    color: #ffc107;
}

.projects-hero-description {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.04rem;
    line-height: 1.9;
}

.projects-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.projects-hero-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 650;
}

.projects-hero-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.projects-hero-capabilities span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
    font-weight: 500;
}

.projects-hero-capabilities i {
    color: #ffc107;
}


/* =========================================================
   PROJECTS HERO SHOWCASE
========================================================= */

.projects-hero-showcase {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.projects-hero-showcase::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -90px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.09);
    filter: blur(40px);
}

.projects-hero-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 17px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025) 68%
        );
}

.projects-hero-icon {
    position: relative;
    z-index: 3;
    width: 125px;
    height: 125px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 28px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.09);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    font-size: 3.5rem;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.projects-hero-showcase:hover .projects-hero-icon {
    transform: rotate(0deg) translateY(-6px);
}

.projects-hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.projects-hero-lines span {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.projects-hero-lines span:nth-child(1) {
    width: 210px;
    height: 210px;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

.projects-hero-lines span:nth-child(2) {
    width: 280px;
    height: 280px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.projects-hero-lines span:nth-child(3) {
    width: 350px;
    height: 350px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.projects-hero-lines span:nth-child(4) {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-hero-info {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding: 4px 2px 0;
}

.projects-hero-info > span {
    display: block;
    margin-bottom: 9px;
    color: #ffc107;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 1.3px;
}

.projects-hero-info h3 {
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
}

.projects-hero-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.7;
}


/* =========================================================
   PROJECT METRICS
========================================================= */

.project-metrics-section {
    position: relative;
    z-index: 4;
    margin-top: -48px;
    padding-bottom: 48px;
}

.project-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.09);
}

.project-metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 145px;
    padding: 26px 23px;
    border-right: 1px solid #e9ecf1;
}

.project-metric-item:last-child {
    border-right: none;
}

.project-metric-item > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.14);
    font-size: 1.2rem;
}

.project-metric-item strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
    font-size: 1rem;
    font-weight: 750;
}

.project-metric-item span {
    display: block;
    color: #6b7280;
    font-size: 0.77rem;
    line-height: 1.55;
}


/* =========================================================
   PROJECT INTRODUCTION
========================================================= */

.project-intro-section {
    padding: 85px 0 55px;
    background: #f7f8fa;
}

.project-confidentiality-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #e2e6eb;
    border-radius: 10px;
    color: #64748b;
    background: #ffffff;
    font-size: 0.75rem;
    line-height: 1.65;
}

.project-confidentiality-note i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #987100;
}


/* =========================================================
   PROJECT FILTER BUTTONS
========================================================= */

.project-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
}

.project-filter {
    min-height: 43px;
    padding: 9px 18px;
    border: 1px solid #dfe3e9;
    border-radius: 50px;
    color: #4b5563;
    background: #ffffff;
    font-size: 0.81rem;
    font-weight: 650;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.project-filter:hover {
    color: #111827;
    border-color: #ffc107;
    transform: translateY(-2px);
}

.project-filter.active {
    color: #101828;
    border-color: #ffc107;
    background: #ffc107;
}


/* =========================================================
   FEATURED PROJECT SECTION
========================================================= */

.featured-project-section {
    padding: 45px 0 95px;
    background: #f7f8fa;
}

.featured-project-card {
    overflow: hidden;
    border: 1px solid #e5e8ed;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(13, 27, 42, 0.09);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.featured-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(13, 27, 42, 0.13);
}

.featured-project-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 193, 7, 0.13),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #0b1728 0%,
            #17263b 100%
        );
}

.featured-project-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.featured-project-icon {
    position: relative;
    z-index: 2;
    width: 155px;
    height: 155px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 34px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
    font-size: 4.3rem;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.featured-project-card:hover .featured-project-icon {
    transform: rotate(0deg) translateY(-6px);
}

.featured-project-location {
    position: absolute;
    z-index: 3;
    left: 26px;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(7, 15, 28, 0.72);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-project-location i {
    color: #ffc107;
}


/* =========================================================
   FEATURED PROJECT CONTENT
========================================================= */

.featured-project-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px;
}

.featured-project-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-type-label,
.project-status-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 750;
}

.project-type-label {
    color: #4b5563;
    background: #f0f2f5;
}

.project-status-label.completed {
    color: #17633b;
    background: #dbf6e7;
}

.project-category-text {
    display: block;
    margin-bottom: 10px;
    color: #9d7500;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 1.2px;
}

.featured-project-content h3 {
    margin-bottom: 17px;
    color: #111827;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.featured-project-content > p {
    margin-bottom: 24px;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.82;
}

.featured-project-scope {
    margin-bottom: 25px;
    padding: 22px 23px;
    border: 1px solid #e8ebef;
    border-radius: 12px;
    background: #f8f9fb;
}

.featured-project-scope h4 {
    margin-bottom: 13px;
    color: #111827;
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-project-scope ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.featured-project-scope li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 20px;
    color: #5f6b7a;
    font-size: 0.77rem;
    line-height: 1.55;
}

.featured-project-scope li:last-child {
    margin-bottom: 0;
}

.featured-project-scope li::before {
    content: "\F26A";
    position: absolute;
    top: 1px;
    left: 0;
    color: #b18400;
    font-family: "bootstrap-icons";
    font-size: 0.72rem;
}

.featured-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eceef2;
}

.featured-project-footer > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.73rem;
    font-weight: 600;
}

.featured-project-footer > span i {
    color: #a97d00;
}

.featured-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8f6900;
    font-size: 0.77rem;
    font-weight: 750;
    text-decoration: none;
}

.featured-project-link i {
    transition: transform 0.25s ease;
}

.featured-project-link:hover {
    color: #624900;
}

.featured-project-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PROJECT FILTER ANIMATION
========================================================= */

.project-item.project-hidden {
    display: none;
}

.project-item.project-visible {
    animation: projectFadeIn 0.4s ease;
}

@keyframes projectFadeIn {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   PROJECTS PAGE RESPONSIVE — PART 2A
========================================================= */

@media (max-width: 1199.98px) {

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

    .project-metric-item:nth-child(2) {
        border-right: none;
    }

    .project-metric-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e9ecf1;
    }

}


@media (max-width: 991.98px) {

    .projects-page-hero {
        min-height: auto;
        padding: 145px 0 105px;
    }

    .projects-hero-title {
        letter-spacing: -1px;
    }

    .projects-hero-showcase {
        margin: 20px auto 0;
    }

    .featured-project-visual {
        min-height: 420px;
    }

    .featured-project-content {
        padding: 40px;
    }

}


@media (max-width: 767.98px) {

    .projects-page-hero {
        padding: 125px 0 90px;
    }

    .projects-hero-title {
        font-size: 2.65rem;
    }

    .projects-hero-actions {
        flex-direction: column;
    }

    .projects-hero-actions .btn {
        width: 100%;
    }

    .projects-hero-capabilities {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .project-metrics-section {
        margin-top: -30px;
    }

    .project-metrics-grid {
        grid-template-columns: 1fr;
    }

    .project-metric-item {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e9ecf1;
    }

    .project-metric-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e9ecf1;
    }

    .project-metric-item:last-child {
        border-bottom: none;
    }

    .project-intro-section {
        padding: 70px 0 48px;
    }

    .project-filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: thin;
    }

    .project-filter {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .featured-project-section {
        padding: 35px 0 75px;
    }

    .featured-project-visual {
        min-height: 340px;
        padding: 40px;
    }

    .featured-project-icon {
        width: 125px;
        height: 125px;
        font-size: 3.5rem;
    }

    .featured-project-content {
        padding: 30px;
    }

    .featured-project-footer {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 575.98px) {

    .projects-hero-title {
        font-size: 2.25rem;
    }

    .projects-hero-description {
        font-size: 0.95rem;
    }

    .projects-hero-showcase {
        padding: 18px;
        border-radius: 17px;
    }

    .projects-hero-visual {
        min-height: 270px;
    }

    .projects-hero-icon {
        width: 105px;
        height: 105px;
        border-radius: 24px;
        font-size: 2.9rem;
    }

    .projects-hero-capabilities {
        grid-template-columns: 1fr;
    }

    .project-metric-item {
        padding: 23px 20px;
    }

    .featured-project-visual {
        min-height: 290px;
    }

    .featured-project-location {
        right: 18px;
        bottom: 18px;
        left: 18px;
        justify-content: center;
    }

    .featured-project-content {
        padding: 24px;
    }

    .featured-project-content h3 {
        font-size: 1.75rem;
    }

    .featured-project-scope {
        padding: 19px;
    }

}
/* =========================================================
   GP DIGITAL — PROJECTS PAGE
   PART 2B
========================================================= */


/* =========================================================
   PROJECT GRID SECTION
========================================================= */

.project-grid-section {
    padding: 95px 0 110px;
    background: #ffffff;
}

.project-grid {
    align-items: stretch;
}


/* =========================================================
   PROJECT CARDS
========================================================= */

.project-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 9px 28px rgba(13, 27, 42, 0.055);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.65);
    box-shadow: 0 20px 44px rgba(13, 27, 42, 0.11);
}

.project-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.project-sector,
.project-status {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.63rem;
    font-weight: 750;
    line-height: 1.2;
}

.project-sector {
    color: #4b5563;
    background: #f0f2f5;
}

.project-status.completed {
    color: #17633b;
    background: #dbf6e7;
}

.project-status.ongoing {
    color: #805b00;
    background: #fff0bd;
}


/* =========================================================
   PROJECT CARD ICON
========================================================= */

.project-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 193, 7, 0.28);
    border-radius: 14px;
    color: #9d7500;
    background:
        linear-gradient(
            135deg,
            rgba(255, 193, 7, 0.16),
            rgba(255, 193, 7, 0.07)
        );
    font-size: 1.5rem;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.project-card:hover .project-icon {
    color: #111827;
    background: #ffc107;
    transform: translateY(-3px) rotate(-2deg);
}


/* =========================================================
   PROJECT CARD CONTENT
========================================================= */

.project-card h3 {
    min-height: 58px;
    margin-bottom: 14px;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 720;
    line-height: 1.48;
}

.project-card > p {
    margin-bottom: 21px;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.78;
}

.project-scope-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.project-scope-list li {
    padding: 6px 9px;
    border: 1px solid #e1e5ea;
    border-radius: 5px;
    color: #536174;
    background: #f8f9fb;
    font-size: 0.65rem;
    font-weight: 650;
}


/* =========================================================
   PROJECT CARD FOOTER
========================================================= */

.project-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 16px;
    margin-top: auto;
    padding-top: 19px;
    border-top: 1px solid #eceef2;
}

.project-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 600;
}

.project-footer i {
    color: #a67b00;
}


/* =========================================================
   PROJECT CTA SECTION
========================================================= */

.projects-cta-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 20% 40%,
            rgba(255, 193, 7, 0.11),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #111e30 58%,
            #091321 100%
        );
}

.projects-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
}

.projects-cta-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    filter: blur(90px);
    pointer-events: none;
}

.projects-cta-section .container {
    position: relative;
    z-index: 2;
}

.projects-cta-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.projects-cta-card h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.projects-cta-card p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.85;
}

.projects-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}

.projects-cta-buttons .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 680;
}


/* =========================================================
   PROJECT FILTER RESULT SPACING
========================================================= */

.project-grid .project-item {
    display: flex;
}

.project-grid .project-item.project-hidden {
    display: none;
}


/* =========================================================
   PROJECTS PAGE RESPONSIVE — PART 2B
========================================================= */

@media (max-width: 991.98px) {

    .project-grid-section {
        padding: 80px 0 90px;
    }

    .projects-cta-section {
        padding: 85px 0;
    }

    .projects-cta-card {
        padding: 48px;
    }

}


@media (max-width: 767.98px) {

    .project-grid-section {
        padding: 65px 0 80px;
    }

    .project-card {
        padding: 24px;
    }

    .project-card h3 {
        min-height: auto;
    }

    .projects-cta-section {
        padding: 70px 0;
    }

    .projects-cta-card {
        padding: 34px 28px;
        border-radius: 18px;
    }

    .projects-cta-buttons {
        flex-direction: column;
    }

    .projects-cta-buttons .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .project-card {
        padding: 22px;
    }

    .project-card-header {
        align-items: flex-start;
    }

    .project-sector,
    .project-status {
        font-size: 0.59rem;
    }

    .project-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-cta-card {
        padding: 28px 20px;
    }

    .projects-cta-card h2 {
        font-size: 2rem;
    }

    .projects-cta-card p {
        font-size: 0.87rem;
    }

}
/* =========================================================
   GP DIGITAL — CONTACT PAGE
   PART 2A
========================================================= */


/* =========================================================
   CONTACT PAGE HERO
========================================================= */

.contact-page-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 155px 0 100px;
    background:
        radial-gradient(
            circle at 80% 42%,
            rgba(255, 193, 7, 0.14),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #111f32 58%,
            #08111f 100%
        );
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 56px 56px;
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    top: 50%;
    right: -170px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.11);
    filter: blur(105px);
    pointer-events: none;
}

.contact-hero-title {
    max-width: 760px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(2.7rem, 4.6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-hero-title span {
    display: block;
    color: #ffc107;
}

.contact-hero-description {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.04rem;
    line-height: 1.9;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 33px;
}

.contact-hero-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 650;
}

.contact-hero-support {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.contact-hero-support span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
    font-weight: 500;
}

.contact-hero-support i {
    color: #ffc107;
}


/* =========================================================
   CONTACT HERO CARD
========================================================= */

.contact-hero-card {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    padding: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.contact-hero-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -90px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.09);
    filter: blur(40px);
}

.contact-hero-card > * {
    position: relative;
    z-index: 2;
}

.contact-hero-card-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border: 1px solid rgba(255, 193, 7, 0.34);
    border-radius: 18px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.09);
    font-size: 2rem;
}

.contact-hero-card > span {
    display: block;
    margin-bottom: 10px;
    color: #ffc107;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 1.3px;
}

.contact-hero-card h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 750;
    line-height: 1.35;
}

.contact-hero-card p {
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.84rem;
    line-height: 1.75;
}

.contact-hero-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-hero-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 23px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.79rem;
    line-height: 1.55;
}

.contact-hero-card li:last-child {
    margin-bottom: 0;
}

.contact-hero-card li::before {
    content: "\F26A";
    position: absolute;
    top: 1px;
    left: 0;
    color: #ffc107;
    font-family: "bootstrap-icons";
    font-size: 0.75rem;
}


/* =========================================================
   CONTACT QUICK INFORMATION
========================================================= */

.contact-info-section {
    position: relative;
    z-index: 4;
    margin-top: -48px;
    padding-bottom: 52px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.09);
}

.contact-info-card {
    min-height: 156px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 27px 22px;
    border-right: 1px solid #e9ecf1;
}

.contact-info-card:last-child {
    border-right: none;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.14);
    font-size: 1.18rem;
}

.contact-info-card span {
    display: block;
    margin-bottom: 6px;
    color: #9d7500;
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 1px;
}

.contact-info-card h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 0.97rem;
    font-weight: 720;
    line-height: 1.45;
}

.contact-info-card a,
.contact-info-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.73rem;
    line-height: 1.6;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #8f6900;
}


/* =========================================================
   CONTACT MAIN SECTION
========================================================= */

.contact-main-section {
    padding: 88px 0 105px;
    background: #f7f8fa;
}

.contact-section-title {
    max-width: 550px;
    margin-bottom: 18px;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-section-description {
    max-width: 560px;
    margin-bottom: 30px;
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.85;
}


/* =========================================================
   CONTACT REQUIREMENT LIST
========================================================= */

.contact-requirement-list {
    display: grid;
    gap: 15px;
}

.contact-requirement-list > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 18px;
    border: 1px solid #e4e7ec;
    border-radius: 11px;
    background: #ffffff;
}

.contact-requirement-list > div > i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.13);
    font-size: 1rem;
}

.contact-requirement-list span {
    display: block;
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.65;
}

.contact-requirement-list strong {
    display: block;
    margin-bottom: 3px;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 720;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
    overflow: hidden;
    padding: 36px;
    border: 1px solid #e3e7ec;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
}

.contact-form-heading {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eceef2;
}

.contact-form-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #9d7500;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 1.2px;
}

.contact-form-heading h3 {
    margin-bottom: 10px;
    color: #111827;
    font-size: 1.55rem;
    font-weight: 750;
    line-height: 1.35;
}

.contact-form-heading p {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM FIELDS
========================================================= */

.contact-enquiry-form .form-label {
    margin-bottom: 7px;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 680;
}

.contact-enquiry-form .form-control,
.contact-enquiry-form .form-select {
    min-height: 49px;
    padding: 11px 14px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    color: #111827;
    background-color: #ffffff;
    font-size: 0.81rem;
    box-shadow: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-enquiry-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-enquiry-form .form-control::placeholder {
    color: #9ca3af;
}

.contact-enquiry-form .form-control:focus,
.contact-enquiry-form .form-select:focus {
    border-color: #e6ae00;
    background-color: #fffef9;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.14);
}

.contact-form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 16px;
    border: 1px solid #e6e9ed;
    border-radius: 9px;
    background: #f8f9fb;
}

.contact-form-note i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #9d7500;
}

.contact-form-note p {
    margin: 0;
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.65;
}

.contact-submit-button {
    width: 100%;
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 720;
}


/* =========================================================
   CONTACT FORM VALIDATION
========================================================= */

.contact-enquiry-form .form-control.is-invalid,
.contact-enquiry-form .form-select.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.contact-enquiry-form .form-control.is-valid,
.contact-enquiry-form .form-select.is-valid {
    border-color: #198754;
    background-image: none;
}


/* =========================================================
   CONTACT PAGE RESPONSIVE — PART 2A
========================================================= */

@media (max-width: 1199.98px) {

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

    .contact-info-card:nth-child(2) {
        border-right: none;
    }

    .contact-info-card:nth-child(-n + 2) {
        border-bottom: 1px solid #e9ecf1;
    }

}


@media (max-width: 991.98px) {

    .contact-page-hero {
        min-height: 650px;
        padding: 135px 0 85px;
    }

    .contact-hero-title {
        letter-spacing: -1px;
    }

    .contact-hero-card {
        margin: 20px auto 0;
    }

    .contact-main-section {
        padding: 78px 0 90px;
    }

}


@media (max-width: 767.98px) {

    .contact-page-hero {
        padding: 125px 0 90px;
    }

    .contact-hero-title {
        font-size: 2.65rem;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-hero-support {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-section {
        margin-top: -30px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e9ecf1;
    }

    .contact-info-card:nth-child(-n + 2) {
        border-bottom: 1px solid #e9ecf1;
    }

    .contact-info-card:last-child {
        border-bottom: none;
    }

    .contact-main-section {
        padding: 68px 0 80px;
    }

    .contact-form-card {
        padding: 28px;
    }

}


@media (max-width: 575.98px) {

    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-hero-description {
        font-size: 0.95rem;
    }

    .contact-hero-card {
        padding: 25px;
        border-radius: 17px;
    }

    .contact-hero-support {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 23px 20px;
    }

    .contact-section-title {
        font-size: 2rem;
    }

    .contact-requirement-list > div {
        padding: 15px;
    }

    .contact-form-card {
        padding: 22px;
    }

    .contact-form-heading h3 {
        font-size: 1.35rem;
    }

}
/* =========================================================
   GP DIGITAL — CONTACT PAGE
   PART 2B
========================================================= */


/* =========================================================
   CONTACT ALTERNATIVES SECTION
========================================================= */

.contact-alternatives-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-alternatives-section h2 {
    max-width: 620px;
    margin-bottom: 18px;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-alternatives-section p {
    max-width: 650px;
    margin-bottom: 30px;
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.85;
}


/* =========================================================
   DIRECT CONTACT CARDS
========================================================= */

.contact-direct-actions {
    display: grid;
    gap: 14px;
}

.contact-direct-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e3e7ec;
    border-radius: 12px;
    color: inherit;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.045);
    text-decoration: none;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.contact-direct-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 193, 7, 0.72);
    box-shadow: 0 16px 34px rgba(13, 27, 42, 0.09);
}

.contact-direct-card > div {
    flex-shrink: 0;
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.14);
    font-size: 1.25rem;
}

.contact-direct-card > span {
    min-width: 0;
    flex: 1;
    display: block;
}

.contact-direct-card small {
    display: block;
    margin-bottom: 3px;
    color: #9d7500;
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 1px;
}

.contact-direct-card strong {
    display: block;
    overflow-wrap: anywhere;
    color: #111827;
    font-size: 0.88rem;
    font-weight: 720;
    line-height: 1.5;
}

.contact-direct-card > i {
    flex-shrink: 0;
    color: #8f6900;
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.contact-direct-card:hover > i {
    transform: translate(3px, -3px);
}


/* =========================================================
   SERVICE AREA CARD
========================================================= */

.contact-service-area-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 42px;
    border: 1px solid #e2e6eb;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(255, 193, 7, 0.13),
            transparent 29%
        ),
        #f7f8fa;
}

.contact-service-area-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -85px;
    bottom: -95px;
    border: 1px solid rgba(157, 117, 0, 0.12);
    border-radius: 50%;
}

.contact-service-area-card > * {
    position: relative;
    z-index: 2;
}

.contact-service-area-icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.13);
    font-size: 1.8rem;
}

.contact-service-area-card > span {
    display: block;
    margin-bottom: 9px;
    color: #9d7500;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 1.2px;
}

.contact-service-area-card h3 {
    max-width: 520px;
    margin-bottom: 15px;
    color: #111827;
    font-size: 1.75rem;
    font-weight: 750;
    line-height: 1.35;
}

.contact-service-area-card p {
    margin-bottom: 25px;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.8;
}

.contact-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-area-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 6px 11px;
    border: 1px solid #dfe3e8;
    border-radius: 50px;
    color: #536174;
    background: #ffffff;
    font-size: 0.68rem;
    font-weight: 650;
}


/* =========================================================
   OFFICE LOCATION SECTION
========================================================= */

.contact-location-section {
    padding: 40px 0 110px;
    background: #ffffff;
}

.contact-location-card {
    overflow: hidden;
    border: 1px solid #e2e6eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(13, 27, 42, 0.09);
}

.contact-location-content {
    height: 100%;
    padding: 50px;
    background: #f7f8fa;
}

.contact-location-content h2 {
    margin-bottom: 17px;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -0.9px;
}

.contact-location-content > p {
    margin-bottom: 26px;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.82;
}

.contact-location-content address {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 28px;
    color: #4b5563;
    font-size: 0.81rem;
    font-style: normal;
    line-height: 1.8;
}

.contact-location-content address i {
    flex-shrink: 0;
    margin-top: 4px;
    color: #9d7500;
    font-size: 1.05rem;
}

.contact-location-content .btn {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 680;
}


/* =========================================================
   MAP PLACEHOLDER
========================================================= */

.contact-map-placeholder {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 193, 7, 0.12),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #0b1728 0%,
            #18273b 100%
        );
}

.contact-map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.09) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.contact-map-grid::before,
.contact-map-grid::after {
    content: "";
    position: absolute;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 45%;
    transform: rotate(-12deg);
}

.contact-map-grid::before {
    width: 430px;
    height: 140px;
    top: 75px;
    left: -40px;
}

.contact-map-grid::after {
    width: 500px;
    height: 170px;
    right: -70px;
    bottom: 80px;
    transform: rotate(18deg);
}

.contact-map-marker {
    position: absolute;
    top: 47%;
    left: 54%;
    z-index: 3;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 193, 7, 0.45);
    border-radius: 50%;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.11);
    box-shadow:
        0 0 0 16px rgba(255, 193, 7, 0.055),
        0 18px 40px rgba(0, 0, 0, 0.25);
    font-size: 2.2rem;
    transform: translate(-50%, -50%);
}

.contact-map-label {
    position: absolute;
    top: calc(47% + 58px);
    left: 54%;
    z-index: 4;
    min-width: 205px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(7, 15, 28, 0.78);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(9px);
    transform: translateX(-50%);
    text-align: center;
}

.contact-map-label strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 720;
}

.contact-map-label span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
}


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

.contact-cta-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 19% 40%,
            rgba(255, 193, 7, 0.11),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #111e30 58%,
            #091321 100%
        );
}

.contact-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
}

.contact-cta-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    filter: blur(90px);
    pointer-events: none;
}

.contact-cta-section .container {
    position: relative;
    z-index: 2;
}

.contact-cta-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact-cta-card h2 {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: clamp(2.05rem, 4vw, 3.45rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-cta-card p {
    max-width: 730px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.85;
}

.contact-cta-card .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 680;
}


/* =========================================================
   CONTACT PAGE SMOOTH FORM SCROLL
========================================================= */

html {
    scroll-behavior: smooth;
}

#contactEnquiryForm {
    scroll-margin-top: 115px;
}


/* =========================================================
   CONTACT PAGE RESPONSIVE — PART 2B
========================================================= */

@media (max-width: 991.98px) {

    .contact-alternatives-section {
        padding: 82px 0;
    }

    .contact-service-area-card {
        padding: 36px;
    }

    .contact-location-section {
        padding: 35px 0 90px;
    }

    .contact-location-content {
        padding: 42px;
    }

    .contact-map-placeholder {
        min-height: 420px;
    }

    .contact-cta-section {
        padding: 85px 0;
    }

    .contact-cta-card {
        padding: 48px;
    }

}


@media (max-width: 767.98px) {

    .contact-alternatives-section {
        padding: 68px 0;
    }

    .contact-service-area-card {
        padding: 29px;
    }

    .contact-location-section {
        padding: 25px 0 78px;
    }

    .contact-location-content {
        padding: 32px;
    }

    .contact-map-placeholder {
        min-height: 350px;
    }

    .contact-map-marker {
        width: 64px;
        height: 64px;
        font-size: 1.85rem;
    }

    .contact-map-label {
        top: calc(47% + 52px);
    }

    .contact-cta-section {
        padding: 70px 0;
    }

    .contact-cta-card {
        padding: 35px 28px;
        border-radius: 18px;
    }

    .contact-cta-card .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .contact-direct-card {
        padding: 15px;
    }

    .contact-direct-card > div {
        width: 43px;
        height: 43px;
        font-size: 1.08rem;
    }

    .contact-direct-card strong {
        font-size: 0.78rem;
    }

    .contact-service-area-card {
        padding: 24px;
    }

    .contact-service-area-card h3 {
        font-size: 1.5rem;
    }

    .contact-location-content {
        padding: 25px;
    }

    .contact-location-content h2 {
        font-size: 2rem;
    }

    .contact-location-content .btn {
        width: 100%;
    }

    .contact-map-placeholder {
        min-height: 315px;
    }

    .contact-map-marker {
        left: 50%;
    }

    .contact-map-label {
        left: 50%;
        min-width: 185px;
    }

    .contact-cta-card {
        padding: 28px 20px;
    }

    .contact-cta-card h2 {
        font-size: 2rem;
    }

    .contact-cta-card p {
        font-size: 0.87rem;
    }

}
/* =========================================================
   CONTACT PAGE — COPY EMAIL FEATURE
========================================================= */

.contact-email-card {
    cursor: default;
}

.contact-email-card:hover {
    transform: none;
}

.contact-email-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;

    margin-right: 18px;
}

.contact-email-link,
.contact-copy-email {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    color: #536174;
    background: #ffffff;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.contact-email-link {
    width: 38px;
    padding: 0;
}

.contact-copy-email {
    gap: 5px;
    padding: 7px 9px;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 680;
    cursor: pointer;
}
.contact-copy-email i {
    font-size: 0.78rem;
}

.contact-email-link:hover,
.contact-copy-email:hover {
    border-color: rgba(255, 193, 7, 0.72);
    color: #8f6900;
    background: #fffaf0;
    transform: translateY(-2px);
}

.contact-copy-email.copied {
    border-color: rgba(25, 135, 84, 0.45);
    color: #157347;
    background: #edf8f2;
}

.contact-copy-notification {
    position: fixed;
    right: 24px;
    bottom: 95px;
    z-index: 1100;
    max-width: calc(100% - 48px);
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border: 1px solid rgba(25, 135, 84, 0.25);
    border-radius: 10px;
    color: #146c43;
    background: #edf8f2;
    box-shadow: 0 14px 35px rgba(13, 27, 42, 0.14);
    font-size: 0.76rem;
    font-weight: 650;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.contact-copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-copy-notification i {
    font-size: 1rem;
}


@media (max-width: 575.98px) {

    .contact-email-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .contact-email-actions {
        width: 100%;
        justify-content: flex-end;
        padding-left: 58px;
    }

    .contact-copy-notification {
        right: 16px;
        bottom: 85px;
        max-width: calc(100% - 32px);
    }

}
/* =========================================================
   GP DIGITAL — SOLUTIONS PAGE
   PART 2A
========================================================= */


/* =========================================================
   SOLUTIONS HERO
========================================================= */

.solutions-page-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 155px 0 105px;
    background:
        radial-gradient(
            circle at 79% 42%,
            rgba(255, 193, 7, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #111f32 58%,
            #08111f 100%
        );
}

.solutions-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 56px 56px;
}

.solutions-page-hero .container {
    position: relative;
    z-index: 2;
}

.solutions-hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.11);
    filter: blur(110px);
    pointer-events: none;
}

.solutions-hero-title {
    max-width: 800px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.solutions-hero-title span {
    display: block;
    color: #ffc107;
}

.solutions-hero-description {
    max-width: 750px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.04rem;
    line-height: 1.9;
}

.solutions-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.solutions-hero-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 680;
}

.solutions-hero-support {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.solutions-hero-support span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
    font-weight: 500;
}

.solutions-hero-support i {
    color: #ffc107;
}


/* =========================================================
   SOLUTIONS HERO CARD
========================================================= */

.solutions-hero-card {
    position: relative;
    max-width: 475px;
    margin-left: auto;
    padding: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.solutions-hero-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -90px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.09);
    filter: blur(40px);
}

.solutions-hero-card > * {
    position: relative;
    z-index: 2;
}

.solutions-hero-card-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border: 1px solid rgba(255, 193, 7, 0.34);
    border-radius: 18px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.09);
    font-size: 2rem;
}

.solutions-hero-card > span {
    display: block;
    margin-bottom: 10px;
    color: #ffc107;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 1.3px;
}

.solutions-hero-card h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 750;
    line-height: 1.35;
}

.solutions-hero-card p {
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.84rem;
    line-height: 1.75;
}

.solutions-hero-card ul {
    margin: 0 0 27px;
    padding: 0;
    list-style: none;
}

.solutions-hero-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 23px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.79rem;
    line-height: 1.55;
}

.solutions-hero-card li:last-child {
    margin-bottom: 0;
}

.solutions-hero-card li::before {
    content: "\F26A";
    position: absolute;
    top: 1px;
    left: 0;
    color: #ffc107;
    font-family: "bootstrap-icons";
    font-size: 0.75rem;
}

.solutions-hero-card .btn {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    font-size: 0.87rem;
    font-weight: 700;
}


/* =========================================================
   SOLUTIONS OVERVIEW
========================================================= */

.solutions-overview-section {
    padding: 105px 0;
    background: #f7f8fa;
}

.solutions-overview-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 48px;
}

.solutions-overview-heading > div {
    max-width: 700px;
}

.solutions-overview-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.solutions-overview-heading > p {
    max-width: 500px;
    margin: 0;
    color: #64748b;
    font-size: 0.91rem;
    line-height: 1.85;
}


/* =========================================================
   SOLUTION OVERVIEW CARDS
========================================================= */

.solution-overview-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #e2e6eb;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.045);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.solution-overview-card::before {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    top: -95px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.08);
    transition: transform 0.3s ease;
}

.solution-overview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.62);
    box-shadow: 0 20px 42px rgba(13, 27, 42, 0.09);
}

.solution-overview-card:hover::before {
    transform: scale(1.18);
}

.solution-overview-card > * {
    position: relative;
    z-index: 2;
}

.solution-overview-number {
    position: absolute;
    top: 21px;
    right: 23px;
    color: rgba(17, 24, 39, 0.12);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
}

.solution-overview-icon {
    width: 59px;
    height: 59px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 14px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.13);
    font-size: 1.5rem;
}

.solution-overview-card h3 {
    margin-bottom: 13px;
    color: #111827;
    font-size: 1.2rem;
    font-weight: 740;
    line-height: 1.4;
}

.solution-overview-card p {
    margin-bottom: 25px;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.75;
}

.solution-overview-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8f6900;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.solution-overview-card a i {
    transition: transform 0.25s ease;
}

.solution-overview-card a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   DETAILED SOLUTIONS SECTION
========================================================= */

.solutions-detail-section {
    padding: 110px 0;
    background: #ffffff;
}

.solutions-detail-heading {
    max-width: 760px;
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.solutions-detail-introduction {
    margin: 0;
    color: #64748b;
    font-size: 0.91rem;
    line-height: 1.85;
}


/* =========================================================
   DETAILED SOLUTION CARDS
========================================================= */

.solution-detail-card {
    margin-bottom: 34px;
    padding: 34px;
    border: 1px solid #e3e7ec;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(13, 27, 42, 0.065);
    scroll-margin-top: 115px;
}

.solution-detail-card:last-child {
    margin-bottom: 0;
}

.solution-detail-visual {
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 34px;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(255, 193, 7, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0b1728 0%,
            #17263a 100%
        );
}

.solution-detail-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
}

.solution-detail-visual::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: 28px;
    right: -80px;
    border: 1px solid rgba(255, 193, 7, 0.16);
    border-radius: 50%;
}

.solution-detail-visual > * {
    position: relative;
    z-index: 2;
}

.solution-detail-number {
    position: absolute;
    top: 25px;
    right: 29px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 4.7rem;
    font-weight: 800;
    line-height: 1;
}

.solution-detail-main-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 90px;
    border: 1px solid rgba(255, 193, 7, 0.36);
    border-radius: 20px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    font-size: 2.15rem;
}

.solution-detail-visual-content > span {
    display: block;
    margin-bottom: 9px;
    color: #ffc107;
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 1.2px;
}

.solution-detail-visual-content h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 750;
    line-height: 1.35;
}

.solution-detail-visual-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.8rem;
    line-height: 1.75;
}


/* =========================================================
   DETAILED SOLUTION CONTENT
========================================================= */

.solution-detail-content {
    padding: 10px 8px;
}

.solution-detail-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #9d7500;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 1.1px;
}

.solution-detail-label i {
    font-size: 0.9rem;
}

.solution-detail-content > h3 {
    max-width: 760px;
    margin-bottom: 16px;
    color: #111827;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 750;
    line-height: 1.28;
    letter-spacing: -0.5px;
}

.solution-detail-content > p {
    margin-bottom: 25px;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.82;
}

.solution-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.solution-scope-grid > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 9px;
    color: #4b5563;
    background: #f9fafb;
    font-size: 0.75rem;
    font-weight: 570;
    line-height: 1.55;
}

.solution-scope-grid i {
    flex-shrink: 0;
    margin-top: 1px;
    color: #9d7500;
    font-size: 0.88rem;
}

.solution-applications {
    margin-bottom: 27px;
    padding: 17px;
    border: 1px solid #e4e7ec;
    border-radius: 11px;
    background: #ffffff;
}

.solution-applications > span {
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-size: 0.7rem;
    font-weight: 720;
}

.solution-applications > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-applications small {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid #dfe3e8;
    border-radius: 50px;
    color: #596579;
    background: #f9fafb;
    font-size: 0.64rem;
    font-weight: 650;
}

.solution-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8f6900;
    font-size: 0.78rem;
    font-weight: 720;
    text-decoration: none;
}

.solution-detail-link i {
    transition: transform 0.25s ease;
}

.solution-detail-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   DETAIL VISUAL VARIATIONS
========================================================= */

.solution-detail-visual-fire {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(255, 111, 0, 0.17),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #111827 0%,
            #2a1d1a 100%
        );
}

.solution-detail-visual-alarm {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(255, 193, 7, 0.16),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #0b1728 0%,
            #18283d 100%
        );
}

.solution-detail-visual-me {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(66, 153, 225, 0.16),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #091725 0%,
            #152d3f 100%
        );
}

.solution-detail-visual-maintenance {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(57, 180, 122, 0.15),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #0c191a 0%,
            #18302e 100%
        );
}

.solution-detail-visual-renovation {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(196, 130, 67, 0.16),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #18130e 0%,
            #30261c 100%
        );
}

.solution-detail-visual-testing {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(146, 96, 219, 0.16),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #151222 0%,
            #29233c 100%
        );
}


/* =========================================================
   SOLUTIONS PAGE RESPONSIVE — PART 2A
========================================================= */

@media (max-width: 1199.98px) {

    .solutions-overview-heading {
        align-items: flex-start;
    }

    .solution-detail-visual {
        min-height: 430px;
    }

}


@media (max-width: 991.98px) {

    .solutions-page-hero {
        min-height: auto;
        padding: 145px 0 105px;
    }

    .solutions-hero-title {
        letter-spacing: -1px;
    }

    .solutions-hero-card {
        margin: 18px auto 0;
    }

    .solutions-overview-section {
        padding: 85px 0;
    }

    .solutions-overview-heading {
        display: block;
    }

    .solutions-overview-heading > p {
        max-width: 680px;
        margin-top: 20px;
    }

    .solutions-detail-section {
        padding: 90px 0;
    }

    .solution-detail-card {
        padding: 28px;
    }

    .solution-detail-visual {
        min-height: 380px;
    }

    .solution-detail-main-icon {
        margin-bottom: 65px;
    }

    .solution-detail-content {
        padding: 5px 0;
    }

}


@media (max-width: 767.98px) {

    .solutions-page-hero {
        padding: 125px 0 90px;
    }

    .solutions-hero-title {
        font-size: 2.65rem;
    }

    .solutions-hero-actions {
        flex-direction: column;
    }

    .solutions-hero-actions .btn {
        width: 100%;
    }

    .solutions-hero-support {
        display: grid;
        grid-template-columns: 1fr;
    }

    .solutions-overview-section {
        padding: 70px 0;
    }

    .solution-overview-card {
        padding: 25px;
    }

    .solutions-detail-section {
        padding: 75px 0;
    }

    .solution-detail-card {
        padding: 20px;
        border-radius: 17px;
    }

    .solution-detail-visual {
        min-height: 340px;
        padding: 27px;
    }

    .solution-detail-main-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 52px;
        font-size: 1.8rem;
    }

    .solution-detail-number {
        font-size: 4rem;
    }

    .solution-scope-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575.98px) {

    .solutions-hero-title {
        font-size: 2.25rem;
    }

    .solutions-hero-description {
        font-size: 0.95rem;
    }

    .solutions-hero-card {
        padding: 25px;
        border-radius: 17px;
    }

    .solutions-overview-heading h2,
    .solutions-detail-heading {
        font-size: 2rem;
    }

    .solution-detail-visual {
        min-height: 310px;
        padding: 23px;
    }

    .solution-detail-visual-content h3 {
        font-size: 1.45rem;
    }

    .solution-detail-content > h3 {
        font-size: 1.65rem;
    }

    .solution-applications {
        padding: 14px;
    }

}
/* =========================================================
   GP DIGITAL — SOLUTIONS PAGE
   PART 2B
========================================================= */


/* =========================================================
   INDUSTRIES SERVED SECTION
========================================================= */

.solutions-industries-section {
    padding: 105px 0;
    background: #f7f8fa;
}

.solutions-industries-heading {
    max-width: 820px;
    margin: 0 auto 48px;
}

.solutions-industries-heading h2 {
    margin-bottom: 18px;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.solutions-industries-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 0.91rem;
    line-height: 1.85;
}


/* =========================================================
   INDUSTRY CARDS
========================================================= */

.solution-industry-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #e2e6eb;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.045);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.solution-industry-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -85px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.08);
    transition: transform 0.3s ease;
}

.solution-industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.62);
    box-shadow: 0 20px 42px rgba(13, 27, 42, 0.09);
}

.solution-industry-card:hover::before {
    transform: scale(1.18);
}

.solution-industry-card > * {
    position: relative;
    z-index: 2;
}

.solution-industry-card > div {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 14px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.13);
    font-size: 1.45rem;
}

.solution-industry-card > span {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(17, 24, 39, 0.12);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.solution-industry-card h3 {
    margin-bottom: 13px;
    color: #111827;
    font-size: 1.16rem;
    font-weight: 740;
    line-height: 1.4;
}

.solution-industry-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.75;
}


/* =========================================================
   PROJECT DELIVERY PROCESS
========================================================= */

.solutions-process-section {
    padding: 110px 0;
    background: #ffffff;
}

.solutions-process-heading {
    max-width: 760px;
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.solutions-process-description {
    margin: 0;
    color: #64748b;
    font-size: 0.91rem;
    line-height: 1.85;
}


/* =========================================================
   PROCESS GRID
========================================================= */

.solutions-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.solutions-process-card {
    position: relative;
    min-height: 255px;
    overflow: hidden;
    padding: 27px 22px;
    border: 1px solid #e3e7ec;
    border-radius: 16px;
    background: #f9fafb;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.solutions-process-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 36px;
    height: 2px;
    background: rgba(157, 117, 0, 0.18);
    transform: translateY(-50%);
}

.solutions-process-card:last-child::after {
    display: none;
}

.solutions-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.65);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(13, 27, 42, 0.08);
}

.solutions-process-card > span {
    display: block;
    margin-bottom: 20px;
    color: rgba(17, 24, 39, 0.15);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.solutions-process-card > div {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.28);
    border-radius: 12px;
    color: #8f6900;
    background: rgba(255, 193, 7, 0.12);
    font-size: 1.2rem;
}

.solutions-process-card h3 {
    margin-bottom: 11px;
    color: #111827;
    font-size: 1rem;
    font-weight: 740;
    line-height: 1.4;
}

.solutions-process-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.74rem;
    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS CTA SECTION
========================================================= */

.solutions-cta-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 18% 42%,
            rgba(255, 193, 7, 0.11),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08111f 0%,
            #111e30 58%,
            #091321 100%
        );
}

.solutions-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
}

.solutions-cta-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    filter: blur(90px);
    pointer-events: none;
}

.solutions-cta-section .container {
    position: relative;
    z-index: 2;
}

.solutions-cta-card {
    max-width: 930px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.solutions-cta-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 18px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    font-size: 1.85rem;
}

.solutions-cta-card > span {
    display: block;
    margin-bottom: 10px;
    color: #ffc107;
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 1.3px;
}

.solutions-cta-card h2 {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: clamp(2.05rem, 4vw, 3.45rem);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -1px;
}

.solutions-cta-card p {
    max-width: 730px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.85;
}

.solutions-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}

.solutions-cta-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 680;
}


/* =========================================================
   SOLUTIONS PAGE RESPONSIVE — PART 2B
========================================================= */

@media (max-width: 1199.98px) {

    .solutions-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .solutions-process-card::after {
        display: none;
    }

}


@media (max-width: 991.98px) {

    .solutions-industries-section {
        padding: 85px 0;
    }

    .solutions-process-section {
        padding: 90px 0;
    }

    .solutions-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-cta-section {
        padding: 85px 0;
    }

    .solutions-cta-card {
        padding: 48px;
    }

}


@media (max-width: 767.98px) {

    .solutions-industries-section {
        padding: 70px 0;
    }

    .solution-industry-card {
        padding: 25px;
    }

    .solutions-process-section {
        padding: 75px 0;
    }

    .solutions-process-grid {
        grid-template-columns: 1fr;
    }

    .solutions-process-card {
        min-height: auto;
        padding: 24px;
    }

    .solutions-cta-section {
        padding: 70px 0;
    }

    .solutions-cta-card {
        padding: 35px 28px;
        border-radius: 18px;
    }

    .solutions-cta-actions {
        flex-direction: column;
    }

    .solutions-cta-actions .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .solutions-industries-heading h2,
    .solutions-process-heading {
        font-size: 2rem;
    }

    .solution-industry-card {
        padding: 22px;
    }

    .solutions-cta-card {
        padding: 28px 20px;
    }

    .solutions-cta-card h2 {
        font-size: 2rem;
    }

    .solutions-cta-card p {
        font-size: 0.87rem;
    }

}
/* =====================================================
   HOME PAGE — CLIENT & BRAND LOGOS
===================================================== */

.home-trust-section,
.home-brands-section {
    padding: 95px 0;
}

.home-trust-section {
    background: #f7f8fa;
}

.home-brands-section {
    background: #ffffff;
}


/* Section heading */

.home-trust-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
}

.home-trust-heading h2,
.home-brands-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #17202a;
}

.home-trust-heading p,
.home-brands-heading p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.home-brands-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.home-brands-heading p {
    margin-top: 18px;
}


/* Logo grid */

.home-logo-grid {
    display: grid;
    gap: 20px;
}

.home-client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-brand-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* Individual logo container */

.home-logo-card {
    min-height: 145px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;

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

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-brands-section .home-logo-card {
    background: #f9fafb;
}


/* Logo images */

.home-logo-card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 58px;
    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.72;

    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* Hide company names below logos */

.home-logo-card span {
    display: none;
}


/* Hover effect */

.home-logo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 53, 69, 0.28);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.home-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}


/* Disclaimer and brand note */

.home-trust-disclaimer,
.home-brand-note {
    max-width: 850px;
    margin: 30px auto 0;
    text-align: center;
    color: #98a2b3;
    font-size: 0.82rem;
    line-height: 1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .home-trust-section,
    .home-brands-section {
        padding: 75px 0;
    }

    .home-trust-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .home-client-logo-grid,
    .home-brand-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .home-trust-section,
    .home-brands-section {
        padding: 60px 0;
    }

    .home-trust-heading,
    .home-brands-heading {
        margin-bottom: 34px;
    }

    .home-client-logo-grid,
    .home-brand-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home-logo-card {
        min-height: 110px;
        padding: 20px 16px;
        border-radius: 11px;
    }

    .home-logo-card img {
        height: 46px;
    }

    .home-trust-disclaimer,
    .home-brand-note {
        margin-top: 24px;
        font-size: 0.76rem;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .home-logo-card {
        min-height: 100px;
        padding: 18px 12px;
    }

    .home-logo-card img {
        height: 40px;
    }

}