

:root {
  --primary-green: #0A4331;
  --accent-yellow: #FFC700;
  --bg-light-blue: #F1F3FF;
  --bg-card: #F9F9FF;

  --text-dark: #064E3B;
  --text-muted: #404944;
  --text-light: #FFFFFF;
  --stat-label: #64748B;

  --divider: #E2E8F0;

  --primary-green-90: rgba(10, 67, 49, 0.90);
  --primary-green-85: rgba(10, 67, 49, 0.85);
  --nav-h: 84px;

  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-card: 0 10px 30px rgba(16, 42, 33, 0.08);
  --shadow-soft: 0 4px 14px rgba(16, 42, 33, 0.06);
  --section-py: 88px;
}

/* --------------------------------------------------------------------------
   Global
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans' !important;
    color: var(--text-dark);
    background-color: var(--bg-card);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* offset for the fixed-top header so no content hides beneath it */
    padding-top: var(--nav-h);
}

/* anchor targets clear the fixed header */
section[id],
header[id] {
    scroll-margin-top: var(--nav-h);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.gp-text-yellow {
    color: var(--accent-yellow);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    font-weight: 400;
    padding: 12px 26px;
    border-radius: 8px;
    border-width: 2px;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 3px solid rgba(255, 199, 0, .5);
    outline-offset: 2px;
}

.gp-btn-green {
    background-color: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: var(--text-light);
}

.gp-btn-green:hover {
    background-color: #0d5741;
    border-color: #0d5741;
    color: var(--text-light);
}

.gp-btn-outline-green {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.gp-btn-outline-green:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.gp-btn-yellow {
    background-color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    color: var(--text-dark);
}

.gp-btn-yellow:hover {
    background-color: #ffce29;
    border-color: #ffce29;
    color: var(--text-dark);
}

.gp-btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .85);
    color: var(--text-light);
}

.gp-btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--primary-green);
}

.bg-service .gp-btn-outline-white {
    border: 1px solid #FFCB00 !important;
    color: #FFCB00;
}

.bg-service .gp-btn-outline-white:hover {
    border: 1px solid #fff !important;
    color: #000;
}

/* --------------------------------------------------------------------------
   1. Navigation  (fixed-top, above all content)
   -------------------------------------------------------------------------- */
.gp-navbar {
       z-index: 1030;
    background-color: #FFFFFF;
    padding: 0 !important;
    border-bottom: 1px solid #EDF1F5;
    height: 100px;
}

.gp-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-green) !important;
    letter-spacing: -0.02em;
}

.gp-nav-links .nav-link {
    color: #404944;
    font-weight: 400;
    padding: 8px 16px;
    transition: color .15s ease;
        font-size: 18px;
}

.gp-nav-links .nav-link:hover {
    color: var(--primary-green);
}

.gp-navbar .navbar-toggler {
    border-color: rgba(10, 67, 49, .25);
}

.gp-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(10, 67, 49, .15);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1480px;
}

.container {
    max-width: 1480px;
}

/* --------------------------------------------------------------------------
   2. Hero  (standard block flow — no overlap with the stats bar)
   -------------------------------------------------------------------------- */
.gp-hero {
    position: relative;
    width: 100%;
     padding: 0;
    background-color: var(--primary-green);
    /* --gp-bg-image is set inline by the block when the editor uploads one. */
    background-image: var(--gp-bg-image, url('../images/bannerbg.png'));
    background-size: cover;
    background-position: center;
    overflow: hidden;
        height: 100vh;
    display: flex;
    align-items: center;
    

    
}

.contact-bg {
    background-image: none !important;
    background-color: transparent !important;
        height: 100vh;
    padding: 0;
}

.contact-bg .gp-hero-text {
    color: #404944;
}

.contact-bg .gp-hero-title {
    color: #064E3B;
}

.contact-bg .gp-btn-outline-white {
    background-color: transparent;
    border: 2px solid #064E3B;
    color: #064E3B;
}

.bg-service {
    background-image: var(--gp-bg-image, url('../images/service-bg.png'));
    height: 100vh;
}


/* Subtle office grid pattern layered on the overlay */
.gp-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.gp-hero-title {
    font-size: clamp(2.4rem, 5.2vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 22px;
}

.gp-hero-text {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 34px;
}

/* --------------------------------------------------------------------------
   3. Stats Counter Bar  (clean block below the hero, no absolute positioning)
   -------------------------------------------------------------------------- */
.gp-stats {
    position: relative;
    width: 100%;
    background-color: #F9F9FF;
    padding: 56px 0;
    border-bottom: 1px solid var(--divider);
    /* box-shadow: 0 10px 30px rgba(16, 42, 33, 0.04); */
}

.gp-stats .row {
    align-items: stretch;
}

.gp-stat {
    padding: 10px 16px;
    text-align: center;
}

.gp-stat-number {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.gp-stat-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .5px;
    color: var(--stat-label);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Section shared
   -------------------------------------------------------------------------- */
.gp-section {
    padding: var(--section-py) 0;
}

.gb-service {
    background-color: #DCE2F7;
}

.gp-bg-blue {
    background-color: var(--bg-light-blue);
}

.gp-bg-card {
    background-color: var(--bg-card);
}

.gp-section-head {
    margin-bottom: 52px;
}

.gp-section-head.text-center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gp-section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 14px;
}

.gp-section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   4. Why Choose — feature cards
   -------------------------------------------------------------------------- */
.gp-feature {
    padding: 8px 10px;
}

.gp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.gp-feature-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.gp-feature-text {
    color: var(--text-muted);
    font-size: .92rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   5. Service cards
   -------------------------------------------------------------------------- */
.gp-service-card {
    background-color: var(--bg-card);
    border: 1px solid #e9edf2;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    /* box-shadow: var(--shadow-soft); */
    transition: transform .18s ease, box-shadow .18s ease;
}

.cjp-card {
    background-color: transparent;
}

.gp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.gp-service-icon {
    width: 60px;
    height: 55px;
    border-radius: 6px;
    background-color: #EBF1F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gp-service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.gp-service-text {
    color: var(--text-muted);
    font-size: .92rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. 4 Steps
   -------------------------------------------------------------------------- */
.gp-step {
    position: relative;
    /* background-color: var(--bg-card);          identical light default state */
    border: 1px solid #e9edf2;
    border-radius: var(--radius-md);
    padding: 30px 26px 28px;
    overflow: hidden;
    /* box-shadow: var(--shadow-soft); */
    transition: all 0.3s ease-in-out;
}

.gp-step-service {
    box-shadow: var(--shadow-soft);
    border-radius: 6px;
}

.gp-step:hover {
    background-color: var(--primary-green);
    /* #0A4331 */
    border-color: var(--primary-green);
    box-shadow: var(--shadow-card);
}

.gp-step:hover .gp-step-title {
    color: var(--accent-yellow);
}

/* #FFC700 */
.gp-step:hover .gp-step-text {
    color: var(--text-light);
}

/* #FFFFFF */
.gp-step:hover .gp-step-num {
    color: rgba(255, 255, 255, .16);
}

/* "Start Process" button: space reserved (no layout shift / clipping),
   fades + slides in only while the card is hovered */
.gp-step-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    margin-top: 16px;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.gp-step:hover .gp-step-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.gp-step-num {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(16, 42, 33, .07);
    line-height: 1;
    pointer-events: none;
}

.gp-step-num-light {
    color: rgba(255, 255, 255, .16);
}

.gp-step-title {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    position: relative;
}

.gp-step-text {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 0;
    position: relative;
}



/* --------------------------------------------------------------------------
   7. Publications
   -------------------------------------------------------------------------- */
.gp-pub-card {
    background-color: var(--bg-card);
    border: 1px solid #e9edf2;
    border-radius: var(--radius-md);
    overflow: hidden;
    /* box-shadow: var(--shadow-soft); */
    transition: transform .18s ease, box-shadow .18s ease;
}

.gp-pub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.gp-pub-img {
    position: relative;
    aspect-ratio: 20 / 9;
    overflow: hidden;
}

.gp-pub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.gp-pub-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    min-height: 190px;
}

.gp-pub-cat {
    display: block;
    color: #FFCB00;
    /* darker gold for AA contrast on white */
    font-weight: 600;
    font-size: .8rem;
    margin-bottom: 8px;
}

.gp-pub-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.35;
}

.gp-pub-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef1f5;
    padding-top: 14px;
    margin-top: auto;
}

.gp-pub-author {
    color: var(--text-muted);
    font-size: .85rem;
}

.gp-pub-tag {
    background-color: var(--bg-light-blue);
    color: var(--primary-green);
    font-weight: 600;
    font-size: .74rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   8. CTA Banner
   -------------------------------------------------------------------------- */
.gp-cta-banner {
    padding: 76px 0;
    background-image: var(--gp-bg-image, url("../images/cta-bg.png"));
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

}

.gp-cta-title {
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    color: var(--primary-green);
    margin-bottom: 14px;
}

.gp-cta-text {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 28px;
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.gp-footer {
    background-color: #003527;
    color: rgba(255, 255, 255, .6);
    padding: 64px 0 28px;
}

.gp-footer-brand {
    display: inline-block;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--accent-yellow);
    letter-spacing: -0.02em;
}

.gp-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-footer-list li {
    margin-bottom: 12px;
}

.gp-footer-list a {
    color: rgba(255, 255, 255, .6);
    font-size: .92rem;
    transition: color .15s ease;
}

.gp-footer-list a:hover {
    color: var(--text-light);
}

.gp-footer-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    opacity: 1;
    margin: 40px 0 22px;
}

.gp-footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gp-footer-copy p {
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
    margin: 0 !important;
    margin-right: 20px !important;
}

.gp-footer-copy p a {
    color: rgba(255, 255, 255, .55);
}

/* ==========================================================================
   SERVICES PAGE  (services.html)  — additive classes, consistent with index
   ========================================================================== */

/* --- active nav item --- */
.gp-nav-links .nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
    position: relative;
}

.gp-nav-links .nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--accent-yellow);
}

/* --- hero: split layout (text left / media right) --- */
.gp-hero-split {
    align-items: center;
}

/* base hero heading colour is white; index.html overrides per-word with spans */
.gp-hero-title {
    color: var(--text-light);
}

.gp-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.gp-hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .9);
    font-size: .98rem;
}

.gp-hero-list svg {
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--accent-yellow);
}

.gp-hero-media {
    /* position: relative; */
    /* aspect-ratio: 4 / 3; */
    /* border-radius: var(--radius-lg); */
    /* overflow: hidden; */
    /* background: linear-gradient(135deg, #0f5a44, #0A4331); */
    /* box-shadow: 0 24px 60px rgba(0, 0, 0, .3); */
    height: 685px;
}

.gp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gp-hero-media-caption {
    /* position: absolute; */
    left: 20px;
    bottom: 18px;
    color: #fff;
    /* font-weight: 700; */
    /* font-size: .95rem; */
    /* text-shadow: 0 2px 12px rgba(0, 0, 0, .55); */
}

/* --- step cards: guaranteed identical light default state --- */
/* (the shared .gp-step rule currently has its background commented out —
   restore it here so all four cards share one light default) */


.gp-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: #EBF1F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color 0.3s ease-in-out;
}

.gp-step-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gp-step:hover .gp-step-icon {
    background-color: rgba(255, 255, 255, .12);
}

/* revealed action link — hidden until the card is hovered */
.gp-step-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--accent-yellow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.gp-step:hover .gp-step-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- section header row: title left, button right --- */
.gp-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-bottom: 44px;
}

.gp-head-row .gp-section-title {
    margin-bottom: 6px;
    color: #064E3B !important;
}

.gp-head-row .gp-section-sub {
    margin-bottom: 0;
}

/* --- service card "Learn More" link --- */
.gp-service-card {
    display: flex;
    flex-direction: column;
}

.gp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--primary-green);
    transition: gap .15s ease;
}

.gp-service-link:hover {
    gap: 10px;
}

/* --- recent successes: publisher badge + published status --- */
.gp-pub-badge {
    display: inline-block;
    align-self: flex-start;
    background-color: #E1E8FD;
    color: #064E3B;
    font-weight: 600;
    font-size: .72rem;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.gp-pub-meta {
    margin-bottom: 14px;
}

.gp-pub-status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef1f5;
    color: #064E3B;
    font-weight: 400;
    font-size: .85rem;
}

.gp-pub-status svg {
    flex: none;
    width: 16px;
    height: 16px;
}

/* --------------------------------------------------------------------------
   Services stats bar  (.gp-stats--compact)
   Light-blue full-width band, compact figures, subtle vertical dividers
   -------------------------------------------------------------------------- */
.gp-stats--compact {
    background-color: #DCE2F7;
    padding: 30px 0;
    box-shadow: none;
}

.gp-stats--compact .gp-stat {
    padding: 6px 14px;
}

.gp-stats--compact .gp-stat-number {
    font-size: 2.55rem;
    margin-bottom: 4px;
}

.gp-stats--compact .gp-stat-label {
    font-size: .68rem;
    letter-spacing: .6px;
}

/* ==========================================================================
   REVIEWS PAGE  (reviews.html)  — additive classes, consistent with index
   ========================================================================== */

/* --- yellow outline button (CTA "Contact Us") --- */
.gp-btn-outline-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
}

.gp-btn-outline-yellow:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--text-dark);
}

/* --- hero: light, centred --- */
.gp-review-hero {
    /* background-color: var(--bg-light-blue); */
        padding: 0;
    text-align: center;
    height: 70vh;
    display: flex;
    align-items: center;
}

.gp-review-hero-title {
    font-size: clamp(2rem, 4.6vw, 2.9rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 18px;
     max-width: 840px;
       margin: 0 auto;
}

.gp-review-hero-text {
    max-width: 840px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- 3 white stat cards sitting on the same soft band --- */
.gp-review-stats {
    /* background-color: rgb(191, 201, 195, 0.20); */
    background-color: #EBF1F9;
    padding: 50px 0;
}

.gp-rev-stat {
    background-color: #FFFFFF;
    border: 1px solid #E6EAF5;
    border-radius: 6px;
    padding: 45px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.gp-rev-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 8px;
}

.gp-rev-stat-label {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .6px;
    color: var(--stat-label);
}

/* --- reviews grid --- */
.gp-reviews {
    background-color: var(--bg-card);
}

.gp-review-card {
    position: relative;
    /* background-color: #FFFFFF; */
    border: 1px solid #E9EDF2;
    border-top: 3px solid #FFCB00;
    border-radius: 4px 4px var(--radius-md) var(--radius-md);
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    /* box-shadow: var(--shadow-soft); */
    transition: transform .18s ease, box-shadow .18s ease;
}

.gp-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.gp-review-quote {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    line-height: .6;
    color: rgba(10, 67, 49, .18);
    margin-bottom: 12px;
}

.gp-review-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.gp-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.gp-review-avatar {
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--primary-green);
    color: #FFFFFF;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFCB00;
    overflow: hidden;
}

.gp-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-review-name {
    margin: 0;
    font-weight: 600;
    font-size: .92rem;
    color: var(--primary-green);
}

.gp-review-field {
    margin: 0;
    font-size: .8rem;
    color: var(--text-muted);
}

/* --- CTA banner: dark green --- */
.gp-cta-dark {
    background-color: var(--primary-green);
    padding: 68px 0;
    text-align: center;
}

.gp-cta-dark-title {
    color: #FFFFFF;
    font-size: clamp(1.7rem, 3.4vw, 2.3rem);
    margin-bottom: 14px;
}

.gp-cta-dark-text {
    color: rgba(255, 255, 255, .8);
    max-width: 960px;
    margin: 0 auto 28px;
}

/* ==========================================================================
   GLOBAL HEADER — "Services" hover dropdown  (all pages)
   ========================================================================== */
.gp-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.gp-nav-links .dropdown-toggle::after {
    margin-left: 6px;
    border-top-color: currentColor;
    transition: transform .15s ease;
}

.gp-dropdown-menu {
    border: 1px solid #EDF1F5;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(16, 42, 33, .14);
    padding: 8px;
    min-width: 264px;
}

.gp-dropdown-menu .dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-dark);
    white-space: normal;
}

.gp-dropdown-menu .dropdown-item:hover,
.gp-dropdown-menu .dropdown-item:focus {
    background-color: var(--bg-light-blue);
    color: var(--primary-green);
}

/* active nav indicator — rewritten so it never fights the caret pseudo-element */
.gp-nav-links .nav-link.active::after {
    display: none;
}

.gp-nav-links .nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
    background-image: linear-gradient(var(--accent-yellow), var(--accent-yellow));
    background-repeat: no-repeat;
    background-position: center bottom 2px;
    background-size: calc(100% - 32px) 3px;
}

/* ==========================================================================
   CONTACT PAGE  (contact.html)
   ========================================================================== */
.gp-hero-media--contact {
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    position: relative;
}

.gp-hero-media--contact img {
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    position: relative;
}

.gp-hero-media--contact::after {
    content: "";
    position: absolute;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.4) 0%, rgba(6, 78, 59, 0) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;

}

.gp-btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.gp-btn-icon svg {
    width: 18px;
    height: 18px;
    flex: none;
}

/* --- contact info + office cards --- */
.gp-contact-cards {
    background-color: var(--bg-card);
}

.gp-contact-card {
    border: 1px solid #e9edf2;
    border-radius: var(--radius-md);
    padding: 34px 30px;
    height: 100%;
}

.gp-contact-card--primary {
    background-color: #EBF1F9;
    border-color: #dbe5f2;
}

.gp-contact-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.gp-contact-badge svg {
    width: 22px;
    height: 22px;
}

.gp-contact-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.gp-contact-card>p {
    color: var(--text-muted);
    font-size: .92rem;
    margin-bottom: 20px;
}

.gp-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: .92rem;
    color: var(--text-muted);
}

.gp-contact-list li:last-child {
    margin-bottom: 0;
}

.gp-contact-list svg {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--primary-green);
}

.gp-contact-list a {
    color: var(--text-dark);
    font-weight: 600;
}

.gp-contact-list a:hover {
    color: var(--primary-green);
}

.gp-office-thumb {
    position: relative;
    /* aspect-ratio: 16 / 9; */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #dbe4f0;
    background-image: linear-gradient(rgba(10, 67, 49, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 67, 49, .07) 1px, transparent 1px);
    background-size: 22px 22px;
    width: 100%;
    height: 180px;
}

ul.gp-contact-list {
    border-top: 1px solid #064E3B;
    padding-top: 26px;
}

.gp-office-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-office-thumb svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -60%);
    color: var(--primary-green);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .2));
}

.gp-office-name {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.05rem;
    margin-bottom: 8px;
}



.gp-office-addr {
    color: var(--text-dark);
    font-size: .9rem;
    margin-bottom: 6px;
}

.gp-office-note {
    color: #707974 !important;
    font-size: .85rem;
    margin: 0;
}

/* --- legacy section --- */
.gp-legacy {
    background-color: var(--bg-card);
}

.gp-legacy-inner {
    background-color: #F1F3FF;
    border-radius: 24px;
    padding: 56px;
    border: 1px solid #F1F3FF;
}

.gp-since-tag {
    background-color: #EBF1F9;
    padding: 6px 10px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: .72rem;
    font-weight: 600;
    color: #064E3B;
    margin-bottom: 14px;
}

.gp-legacy-inner .gp-section-title {
    color: var(--primary-green);
}

.gp-spec {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.gp-spec-icon {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background-color: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-spec-icon svg {
    width: 18px;
    height: 18px;
}

.gp-spec h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.gp-spec p {
    margin: 0;
    font-size: .9rem;
    color: var(--text-muted);
}

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

.gp-legacy-tile {
    background-color: #fff;
    border: 1px solid #E6EAF5;
    border-radius: 16px;
    padding: 34px 22px;
    text-align: center;
}

.gp-legacy-tile .gp-stat-number {
    font-size: 2.4rem;
    margin-bottom: 6px;
}

.gp-legacy-tile p {
    margin: 0;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    color: var(--stat-label);
}

/* ==========================================================================
   SERVICE DETAIL PAGE  (service-detail.html)
   ========================================================================== */
.gp-sd-hero {
    position: relative;
    background-color: var(--primary-green);
    background-image:
        linear-gradient(rgba(10, 67, 49, .88), rgba(10, 67, 49, .94)),
        var(--gp-bg-image, url('../images/service-bg.png'));
    background-size: cover;
    background-position: center;
    padding: 92px 0 100px;
    overflow: hidden;
}

.gp-sd-tag {
    display: block;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 600;
    font-size: .78rem;
    margin-bottom: 18px;
}

.gp-sd-title {
    font-size: clamp(2.2rem, 4.8vw, 3.3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
}

.gp-sd-text {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 28px;
}

.gp-sd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gp-sd-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 28px;
}

.gp-sd-mini span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .9);
    font-size: .88rem;
}

.gp-sd-mini svg {
    flex: none;
    width: 18px;
    height: 18px;
    color: var(--accent-yellow);
}

.home-icon {
    width: auto;
    height: auto;
    border-radius: 14px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.home-icon img {
    width: 30px;
}

/* --- floating consultation form card --- */
.gp-consultant-bg {
    background-image: var(--gp-bg-image, url("../images/service-2-bg.png"));
}

.gp-form-card {
    background-color: #EBF1F9;
    border-radius: 5px;
    padding: 39px 50px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .3);
}

.gp-form-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.gp-form-sub {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 22px;
}

.gp-field {
    margin-bottom: 16px;
}

.gp-field label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.gp-field .form-control,
.gp-field .form-select {
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: .92rem;
}

.gp-field .form-control:focus,
.gp-field .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(10, 67, 49, .12);
}

.gp-form-card .btn {
    width: 100%;
    margin-top: 4px;
}

.gp-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: .78rem;
    color: var(--text-muted);
}

.gp-form-note svg {
    width: 14px;
    height: 14px;
    color: var(--primary-green);
}

/* --- Led by Industry Leaders --- */
.gp-leaders {
    background-color: var(--bg-card);
}

.gp-consultant-card {
    /* background-color: #fff; */
    border: 1px solid #e9edf2;
    border-radius: 16px;
    /* padding: 38px 30px; */
    height: 100%;
}

.gp-consultant-body {
    padding: 20px;
}

.gp-consultant-avatar {

    height: 296px;
    margin: 0 auto 20px;

}

.gp-consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-consultant-tag {
    display: inline-block;
    background-color: #E1E8FD;
    color: #064E3B;
    font-weight: 600;
    font-size: .72rem;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.gp-consultant-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.gp-consultant-role {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 18px;
}

.gp-consultant-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #064E3B;
    font-weight: 400;
    font-size: .86rem;
    border-top: 1px solid #eef1f5;
    padding-top: 16px;
}

.gp-consultant-stat svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.gp-leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gp-leader-tile {
    /* background-color: #fff; */
    border: 1px solid #e9edf2;
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.gp-leader-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.gp-leader-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #EBF1F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.gp-leader-icon svg {
    width: 22px;
    height: 22px;
}

.gp-leader-tile h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.gp-leader-tile p {
    margin: 0;
    font-size: .88rem;
    color: var(--text-muted);
}

/* ==========================================================================
   LEGAL PAGES  (privacy-policy.html, terms.html)
   ========================================================================== */
.gp-legal {
    background-color: var(--bg-card);
    padding: var(--section-py) 0;
}

.gp-legal-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.gp-legal-wrap h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--primary-green);
    margin-bottom: 10px;
}

.gp-legal-updated {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 36px;
}

.gp-legal-wrap h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 36px 0 12px;
}

.gp-legal-wrap p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.gp-legal-wrap ul {
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 20px;
}

.gp-legal-wrap li {
    margin-bottom: 8px;
}

/* ==========================================================================
   THANK YOU PAGE  (thank-you.html)  — standalone, no fixed header/footer
   ========================================================================== */
.gp-ty-page {
    padding-top: 0;
}

.gp-ty {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-green);
    background-image:
        linear-gradient(rgba(10, 67, 49, .9), rgba(10, 67, 49, .95)),
        var(--gp-bg-image, url('../images/bannerbg.png'));
    background-size: cover;
    background-position: center;
}

.gp-ty-head {
    padding: 26px 0;
}

.gp-ty-head .gp-brand {
    color: #fff !important;
}

.gp-ty-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 64px;
}

.gp-ty-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 56px 48px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.gp-ty-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: rgba(10, 67, 49, .1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.gp-ty-icon svg {
    width: 40px;
    height: 40px;
}

.gp-ty-box h1 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 14px;
}

.gp-ty-box p {
    color: var(--text-muted);
    margin-bottom: 28px;
}


.ser-gp-title {
    color: #064E3B;
}

/* ==========================================================================
   PHP build additions — consultation modal, spam honeypot, form validation
   ========================================================================== */

/* spam-trap: off-screen, never shown, not focusable */
.gp-hp {
    position: absolute !important;
    left: -5000px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* global consultation modal — reuses the .gp-form-card look */
.gp-modal .modal-content {
    position: relative;
    border: 0;
    background: transparent;
    overflow: visible;
}

.gp-modal .modal-body {
    padding: 0;
}

.gp-form-card--modal {
    box-shadow: 0 34px 80px rgba(0, 0, 0, .35);
    padding: 34px 34px 30px;
}

.gp-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(16, 42, 33, .25);
    opacity: 1;
}

.gp-modal-close:hover {
    opacity: 1;
}

@media (max-width: 420px) {
    .gp-form-card--modal {
        padding: 30px 20px 24px;
    }

    .gp-modal-close {
        top: 8px;
        right: 8px;
    }
}

/* inline validation feedback */
.gp-error {
    display: none;
    margin-top: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: #dc3545;
}

.gp-error.is-visible {
    display: block;
}

.gp-field .form-control.gp-invalid,
.gp-field .form-select.gp-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, .12);
}

.gp-nav-links .dropdown-toggle::after {
    display: none;
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: none !important;
}

.navbar-brand img,
.gp-footer-brand img,
.gp-ty-head .gp-brand img {
    width: 80px;
}