/* ==========================================================================
   GLA Global Company v2 — Custom CSS
   Bootstrap 5 base | Inter + Barlow Condensed
   ========================================================================== */

/* ------------------------------------------------------------------
   1. CSS VARIABLES
------------------------------------------------------------------ */
:root {
    --gla-red:        #C8102E;
    --gla-red-dark:   #9e0d23;
    --gla-navy:       #1A1A2E;
    --gla-navy-light: #252545;
    --gla-gold:       #F0A500;
    --gla-bg:         #F8F8F8;
    --gla-dark:       #0D0D0D;
    --gla-text:       #1C1C1C;
    --gla-muted:      #6b7280;
    --gla-border:     #e5e7eb;
    --gla-white:      #ffffff;

    --font-heading:   'Barlow Condensed', sans-serif;
    --font-body:      'Inter', sans-serif;

    --nav-height:     80px;
    --section-pad:    80px;
    --radius:         8px;
    --radius-lg:      16px;
    --shadow:         0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:      0 12px 48px rgba(0,0,0,.14);
    --transition:     .3s ease;
}

/* ------------------------------------------------------------------
   2. BASE
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gla-text);
    background: var(--gla-white);
    padding-top: var(--nav-height);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gla-text);
}

a { color: var(--gla-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gla-red-dark); }

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

.section-pad { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.bg-light-gray  { background-color: var(--gla-bg); }
.bg-dark-navy   { background-color: var(--gla-navy); }
.bg-gla-red     { background-color: var(--gla-red); }
.text-gla-red   { color: var(--gla-red); }
.text-gla-navy  { color: var(--gla-navy); }
.text-gla-gold  { color: var(--gla-gold); }

/* ------------------------------------------------------------------
   3. BUTTONS
------------------------------------------------------------------ */
.btn-gla {
    background-color: var(--gla-red);
    color: var(--gla-white);
    border: 2px solid var(--gla-red);
    border-radius: var(--radius);
    padding: .65rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    min-height: 44px;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-gla:hover {
    background-color: var(--gla-red-dark);
    border-color: var(--gla-red-dark);
    color: var(--gla-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,16,46,.4);
}
.btn-gla:active { transform: translateY(0); }
.btn-gla.btn-lg { padding: .85rem 2.25rem; font-size: 1.05rem; min-height: 52px; }
.btn-gla.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; min-height: 38px; }

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    letter-spacing: .02em;
    min-height: 44px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-light:hover {
    background: var(--gla-white) !important;
    color: var(--gla-navy) !important;
    border-color: var(--gla-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,.2);
}
.btn-outline-light:active { transform: translateY(0); }

/* ------------------------------------------------------------------
   4. NAVBAR
------------------------------------------------------------------ */
#site-nav {
    height: var(--nav-height);
    overflow: visible;
    transition: background var(--transition), box-shadow var(--transition);
    z-index: 1000;
}

/* Transparent state (homepage above fold) */
#site-nav.navbar-transparent {
    background: rgba(10, 10, 22, 0.72);
    box-shadow: none;
}
#site-nav.navbar-transparent .nav-link,
#site-nav.navbar-transparent .navbar-brand,
#site-nav.navbar-transparent .brand-text {
    color: var(--gla-white) !important;
}
/* Brand: small left inset so logo doesn't hug the container edge */
#site-nav .navbar-brand { padding-left: .5rem; }

/* Logo: explicit height beats the global img { height: auto } reset */
#site-nav .navbar-brand img {
    height: 172px;
    width: auto;
    display: block;
    border-radius: 6px;
}

/* Solid state (all other pages, and homepage after scroll) */
#site-nav.navbar-solid,
#site-nav.scrolled {
    background: var(--gla-navy);
    box-shadow: 0 2px 24px rgba(0,0,0,.35);
    border-bottom: 2px solid var(--gla-red);
}
#site-nav.navbar-solid .nav-link,
#site-nav.scrolled .nav-link {
    color: var(--gla-white) !important;
}

/* Nav links */
#site-nav .nav-link {
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .02em;
    padding: .4rem .85rem !important;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}
#site-nav .nav-link:hover,
#site-nav .nav-link.active {
    color: var(--gla-red) !important;
}

/* Hamburger — both nav states are dark so lines are always white */
.navbar-toggler {
    border: none;
    padding: .4rem 1.5rem .4rem .5rem;
    background: none;
    box-shadow: none !important;
    flex-shrink: 0;
    margin-right: 0;
}
.toggler-icon {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gla-white);
    margin: 5px 0;
    border-radius: 2px;
    transition: background var(--transition);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--gla-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: .5rem 0;
    min-width: 200px;
}
.dropdown-item { font-size: .9rem; padding: .45rem 1.25rem; color: var(--gla-text); }
.dropdown-item:hover { background: var(--gla-bg); color: var(--gla-red); }

/* ------------------------------------------------------------------
   5. SECTION HEADERS
------------------------------------------------------------------ */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gla-red);
    margin-bottom: .75rem;
}
.section-tag.light { color: var(--gla-gold); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gla-text);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gla-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header { margin-bottom: 1.5rem; }

/* ------------------------------------------------------------------
   6. HERO
------------------------------------------------------------------ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--gla-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: var(--nav-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,30,.97) 0%, rgba(26,26,46,.93) 50%, rgba(26,26,46,.82) 75%, rgba(200,16,46,.55) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 3rem 0;
}

.hero-eyebrow {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gla-gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--gla-white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.82);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,.6);
    font-size: 1.4rem;
    animation: bounce 2.2s infinite;
    transition: color var(--transition);
}
.hero-scroll-indicator:hover { color: var(--gla-white); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------------------------------
   7. STATS BAR
------------------------------------------------------------------ */
.stats-bar { background: var(--gla-navy); padding: 3rem 0; }

.stats-row { border-radius: var(--radius-lg); overflow: hidden; }

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    position: relative;
    text-align: center;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,.15);
}
@media (max-width: 767px) {
    .stat-item:nth-child(odd)::after {
        display: block;
    }
    .stat-item:nth-child(even)::after { display: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
}

.stat-value {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--gla-white);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--gla-gold);
    line-height: 1;
    margin-top: .3rem;
}
.stat-label {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-top: .4rem;
}

/* ------------------------------------------------------------------
   8. PRODUCT CARDS (What We Do)
------------------------------------------------------------------ */
.product-card {
    background: var(--gla-white);
    border: 1px solid var(--gla-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gla-red);
}
.product-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(200,16,46,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--gla-red);
    transition: background var(--transition), color var(--transition);
}
.product-card:hover .product-card-icon {
    background: var(--gla-red);
    color: var(--gla-white);
}
.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--gla-text);
}
.product-card-text { font-size: .9rem; color: var(--gla-muted); margin-bottom: 1rem; }

.card-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--gla-red);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: .6rem; color: var(--gla-red-dark); }

.product-card-cta {
    background: var(--gla-bg);
    border-style: dashed;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/* ------------------------------------------------------------------
   9. ABOUT PREVIEW
------------------------------------------------------------------ */
.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gla-red);
    color: var(--gla-white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}
@media (max-width: 767px) {
    .about-img-badge { right: 1rem; bottom: 1rem; }
}
.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.badge-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .2rem;
}
.about-excerpt { font-size: 1.05rem; color: var(--gla-muted); margin: 1rem 0 1.5rem; }

.about-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gla-text);
    background: var(--gla-bg);
    border: 1px solid var(--gla-border);
    border-radius: 100px;
    padding: .3rem .85rem;
}
.trust-badge i { color: var(--gla-red); font-size: .8rem; }

/* ------------------------------------------------------------------
   10. SERVICES STRIP
------------------------------------------------------------------ */
.service-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.09);
    border-color: var(--gla-gold);
}
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; }
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gla-white);
    margin-bottom: .5rem;
}
.service-card-text { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.service-card-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gla-gold);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: gap var(--transition);
}
.service-card-link:hover { gap: .6rem; color: var(--gla-gold); }

/* ------------------------------------------------------------------
   11. TRUST BAR
------------------------------------------------------------------ */
.trust-item { padding: 1.5rem; }
.trust-icon {
    font-size: 2.5rem;
    color: var(--gla-red);
    margin-bottom: 1rem;
    display: block;
}
.trust-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--gla-text);
}
.trust-desc { font-size: .88rem; color: var(--gla-muted); margin: 0; }

/* ------------------------------------------------------------------
   12. NEWSLETTER
------------------------------------------------------------------ */
.newsletter-form-wrap .mc4wp-form input[type="email"] {
    width: 100%;
    padding: .8rem 1.2rem;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: var(--radius);
    background: rgba(255,255,255,.12);
    color: var(--gla-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
    margin-bottom: .75rem;
}
.newsletter-form-wrap .mc4wp-form input[type="email"]::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form-wrap .mc4wp-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gla-white);
    background: rgba(255,255,255,.18);
}
.newsletter-form-wrap .mc4wp-form input[type="submit"] {
    background: var(--gla-white);
    color: var(--gla-red);
    border: none;
    border-radius: var(--radius);
    padding: .8rem 2rem;
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    letter-spacing: .02em;
    width: 100%;
}
.newsletter-form-wrap .mc4wp-form input[type="submit"]:hover {
    background: var(--gla-navy);
    color: var(--gla-white);
    transform: translateY(-2px);
}


/* ------------------------------------------------------------------
   13. FOOTER
------------------------------------------------------------------ */
.site-footer {
    background: var(--gla-dark);
    color: rgba(255,255,255,.75);
    border-top: 3px solid var(--gla-red);
}

.footer-main { padding: 3.5rem 0 2.5rem; }

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gla-white);
    display: block;
}
.footer-tagline {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin-top: .75rem;
    max-width: 300px;
}

/* Social icons */
.footer-social { display: flex; gap: .5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--gla-red); color: var(--gla-white); border-color: var(--gla-red); }

/* Trust badges */
.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.footer-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .72rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    padding: .25rem .6rem;
}
.footer-badge i { color: var(--gla-gold); font-size: .7rem; }

/* Column headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--gla-white);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Quick links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    transition: color var(--transition), padding-left var(--transition);
    display: flex; align-items: center; gap: .35rem;
}
.footer-links a::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gla-red);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.footer-links a:hover { color: var(--gla-white); padding-left: 4px; }
.footer-links a:hover::before { transform: scale(1.5); }

/* Contact list */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: .65rem; align-items: flex-start;
    margin-bottom: .8rem; font-size: .875rem; color: rgba(255,255,255,.55);
}
.footer-contact i { color: var(--gla-red); margin-top: .15rem; min-width: 14px; font-size: .85rem; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gla-white); }
.footer-contact span { color: rgba(255,255,255,.55); }

/* Industries list */
.footer-industries { list-style: none; padding: 0; margin: 0; }
.footer-industries li {
    display: flex; align-items: center; gap: .55rem;
    font-size: .875rem; color: rgba(255,255,255,.55);
    margin-bottom: .45rem;
    padding: .3rem 0;
}
.footer-industries i { color: var(--gla-red); font-size: .8rem; min-width: 14px; }

/* Sub-footer */
.footer-sub {
    background: rgba(0,0,0,.35);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: .9rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.38);
}
.footer-sub p { color: rgba(255,255,255,.38); margin: 0; }
.footer-sub a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-sub a:hover { color: var(--gla-white); }
.footer-sep { margin: 0 .5rem; opacity: .3; }

.back-to-top {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .78rem; color: rgba(255,255,255,.4);
    transition: color var(--transition);
}
.back-to-top:hover { color: var(--gla-red); }

/* ------------------------------------------------------------------
   14. PAGE BANNER (inner pages)
------------------------------------------------------------------ */
.page-banner {
    background: linear-gradient(rgba(14,14,30,.88), rgba(14,14,30,.82)), url('../images/hero-ship-ocean.jpg') center/cover no-repeat;
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.page-banner::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(200,16,46,.18) 100%);
    pointer-events: none;
}
.page-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gla-white);
    margin-bottom: .5rem;
}
.page-banner-breadcrumb { font-size: .85rem; color: rgba(255,255,255,.55); }
.page-banner-breadcrumb a { color: var(--gla-gold); }
.page-banner-breadcrumb span { margin: 0 .4rem; }

/* ------------------------------------------------------------------
   15. ABOUT PAGE
------------------------------------------------------------------ */
.about-pull-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gla-navy);
    line-height: 1.4;
    border-left: 4px solid var(--gla-red);
    padding-left: 1.5rem;
    margin: 2rem 0;
}
.about-story-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.pillar-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--gla-white);
    border: 1px solid var(--gla-border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-icon { font-size: 2.5rem; color: var(--gla-red); margin-bottom: 1rem; }
.pillar-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.pillar-text { font-size: .9rem; color: var(--gla-muted); }

.credentials-bar {
    background: var(--gla-navy);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
.credential-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--gla-white);
    font-size: .95rem;
    font-weight: 600;
}
.credential-item i { color: var(--gla-gold); font-size: 1.5rem; }

/* ------------------------------------------------------------------
   16. SERVICES PAGE
------------------------------------------------------------------ */
.service-row { padding: 4rem 0; border-bottom: 1px solid var(--gla-border); }
.service-row:last-child { border-bottom: none; }
.service-row-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow);
}
.service-row-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gla-text);
    margin-bottom: 1rem;
}
.service-row-content { font-size: 1rem; color: var(--gla-muted); line-height: 1.8; }

.services-cta-band {
    background: var(--gla-red);
    padding: 3.5rem 0;
    text-align: center;
}
.services-cta-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gla-white);
}

/* ------------------------------------------------------------------
   17. PRODUCTS PAGE
------------------------------------------------------------------ */
.product-tabs { border-bottom: 2px solid var(--gla-border); margin-bottom: 2.5rem; }
.product-tabs .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    color: var(--gla-muted);
    border: 2px solid transparent;
    border-radius: 100px;
    padding: .5rem 1.5rem;
    margin-right: .5rem;
    transition: all var(--transition);
}
.product-tabs .nav-link:hover { color: var(--gla-red); }
.product-tabs .nav-link.active {
    background: var(--gla-red);
    border-color: var(--gla-red);
    color: var(--gla-white);
}

.product-item-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gla-white);
    border: 1px solid var(--gla-border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-item-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-item-img {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}
.product-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-item-card:hover .product-item-img img { transform: scale(1.07); }
.product-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-item-card:hover .product-item-overlay { opacity: 1; }
.product-item-overlay i { font-size: 2rem; color: var(--gla-white); }
.product-item-name {
    padding: .85rem 1rem;
    font-weight: 600;
    font-size: .92rem;
    text-align: center;
    color: var(--gla-text);
}

.products-note {
    background: rgba(200,16,46,.06);
    border-left: 4px solid var(--gla-red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    font-size: .95rem;
    color: var(--gla-text);
    margin-top: 2rem;
}

/* ------------------------------------------------------------------
   18. CONTACT PAGE
------------------------------------------------------------------ */
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: rgba(200,16,46,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--gla-red);
    flex-shrink: 0;
}
.contact-info-label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gla-muted); margin-bottom: .15rem; }
.contact-info-value { font-size: .95rem; color: var(--gla-text); font-weight: 500; }
.contact-info-value a { color: var(--gla-text); }
.contact-info-value a:hover { color: var(--gla-red); }

/* CF7 styling */
.wpcf7-form label { font-size: .88rem; font-weight: 600; color: var(--gla-text); margin-bottom: .35rem; display: block; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gla-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--gla-text);
    background: var(--gla-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: .1rem;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--gla-red);
    box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.wpcf7-form textarea { resize: vertical; min-height: 140px; }
.wpcf7-form input[type="submit"] {
    background: var(--gla-red);
    color: var(--gla-white);
    border: none;
    border-radius: var(--radius);
    padding: .8rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: .02em;
}
.wpcf7-form input[type="submit"]:hover {
    background: var(--gla-red-dark);
    transform: translateY(-2px);
}

.map-section { line-height: 0; }
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gla-border);
}
.map-section iframe { display: block; width: 100%; height: 380px; }

/* ------------------------------------------------------------------
   19. SCROLL REVEAL ANIMATIONS
------------------------------------------------------------------ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* Stagger children inside a revealed row */
.row .reveal-up:nth-child(2) { transition-delay: .1s; }
.row .reveal-up:nth-child(3) { transition-delay: .2s; }
.row .reveal-up:nth-child(4) { transition-delay: .3s; }
.row .reveal-up:nth-child(5) { transition-delay: .4s; }
.row .reveal-up:nth-child(6) { transition-delay: .5s; }

/* ------------------------------------------------------------------
   20. GLIGHTBOX OVERRIDES
------------------------------------------------------------------ */
.glightbox-clean .gslide-description { background: var(--gla-dark); }
.glightbox-clean .gdesc-inner .gslide-title { color: var(--gla-white); font-family: var(--font-heading); }

/* ------------------------------------------------------------------
   21. RESPONSIVE
------------------------------------------------------------------ */
@media (max-width: 991px) {
    :root { --section-pad: 60px; --nav-height: 155px; }

    #mainNav {
        background: var(--gla-navy) !important;
        border-top: 1px solid rgba(255,255,255,.1);
        padding: 1rem 1.25rem;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 8px 24px rgba(0,0,0,.35);
    }
    #site-nav #mainNav .nav-link,
    #site-nav.navbar-transparent #mainNav .nav-link {
        color: var(--gla-white) !important;
        padding: .65rem .5rem !important;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    #site-nav #mainNav .nav-item:last-of-type .nav-link { border-bottom: none; }
    #mainNav .btn-gla { margin-top: .75rem; display: block; text-align: center; width: 100%; }
    .about-img-badge { right: 1rem; bottom: 1rem; }
    /* 130px logo in 155px nav = 12.5px equal padding above and below — both items genuinely centered */
    #site-nav .navbar-brand img { height: 130px; }
    #site-nav > .container { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 767px) {
    :root { --section-pad: 48px; --nav-height: 145px; }

    /* Logo */
    #site-nav .navbar-brand img { height: 120px; }

    /* Hero */
    .hero-section { min-height: 88vh; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; width: 100%; }

    /* Page banner */
    .page-banner { padding: 3.5rem 0 2.5rem; }

    /* Stats */
    .stats-bar { padding: 2rem 0; }

    /* About */
    .about-img-wrap { margin-bottom: 1.5rem; }
    .about-pull-quote { font-size: clamp(1.2rem, 4vw, 1.55rem); padding-left: 1rem; }

    /* CTA bands — center and stack */
    .services-cta-band .row { text-align: center; }
    .services-cta-band .btn { width: 100%; margin-top: .75rem; }

    /* Newsletter */
    .newsletter-section .col-lg-5 { text-align: center; }
    .gla-subscribe-form button { width: 100%; }

    /* Credentials */
    .credentials-bar { flex-direction: column; text-align: center; }

    /* Footer */
    .footer-main { padding: 2.5rem 0 2rem; }
    .footer-logo { height: 65px; }
    .footer-tagline { max-width: 100%; }
    .footer-social { justify-content: flex-start; }
    .footer-badges { justify-content: flex-start; }

    /* Map */
    .map-section iframe { height: 300px; }
}

@media (max-width: 575px) {
    /* Logo */
    #site-nav .navbar-brand img { height: 110px; width: auto; }

    /* Stats */
    .stat-item::after { display: none !important; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); padding: 1.25rem 1rem; }
    .stat-item:last-child { border-bottom: none; }

    /* Product tabs — horizontal scroll */
    .product-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; }
    .product-tabs .nav-link { white-space: nowrap; }

    /* Product cards */
    .product-item-name { font-size: .82rem; padding: .65rem .75rem; }

    /* Pillar cards */
    .pillar-card { padding: 1.75rem 1.25rem; }

    /* Typography */
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-sub { font-size: .95rem; }
    .section-title { font-size: clamp(1.4rem, 6vw, 2.2rem); }

    /* Buttons in CTA / newsletter */
    .services-cta-band .btn,
    .newsletter-section .btn-gla { width: 100%; }

    /* Footer sub row */
    .footer-sub .row { flex-direction: column; gap: .4rem; text-align: center; }
    .footer-sub [class*="col-"] { text-align: center !important; }
    .back-to-top { justify-content: center; }

    /* Contact */
    .contact-info-item { gap: .75rem; }

    /* Service rows on services page */
    .service-row { padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
    .service-row-img { border-radius: var(--radius); }
}

/* ------------------------------------------------------------------
   22. HERO STAGGERED ANIMATION
------------------------------------------------------------------ */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-item {
    opacity: 0;
    animation: heroFadeUp .78s ease forwards;
}
.hero-eyebrow.hero-item { animation-delay: .15s; }
.hero-title.hero-item   { animation-delay: .42s; }
.hero-sub.hero-item     { animation-delay: .74s; }
.hero-ctas.hero-item    { animation-delay: 1.02s; }

/* ------------------------------------------------------------------
   23. STATS BAR ICON
------------------------------------------------------------------ */
.stat-icon {
    font-size: 1.65rem;
    color: var(--gla-gold);
    display: block;
    margin-bottom: .55rem;
}

/* ------------------------------------------------------------------
   24. HOW WE WORK — PROCESS STEPS
------------------------------------------------------------------ */
.process-step {
    position: relative;
    padding: 2.25rem 1.5rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(255,255,255,.04);
    height: 100%;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.process-step:hover {
    background: rgba(255,255,255,.09);
    border-color: var(--gla-red);
    transform: translateY(-5px);
}
.process-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--gla-red);
    line-height: 1;
    margin-bottom: .55rem;
    opacity: .88;
    letter-spacing: -.02em;
}
.process-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gla-white);
    margin-bottom: .6rem;
}
.process-text {
    font-size: .88rem;
    color: rgba(255,255,255,.58);
    margin: 0;
    line-height: 1.65;
}

/* ------------------------------------------------------------------
   25. DIAGONAL SECTION SEPARATORS
   Each ::after sits in the extra padding-bottom of its section,
   shaped by clip-path into a triangle of the NEXT section's colour.
   Directions alternate (\ then /) for visual rhythm.
------------------------------------------------------------------ */
.stats-bar,
.what-we-do,
.how-we-work,
.about-preview,
.services-strip,
.trust-bar {
    position: relative;
}

/* stats-bar (navy) → What We Do (white) — \ diagonal */
.stats-bar { padding-bottom: calc(3rem + 56px); }
.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 56px;
    background: var(--gla-white);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* What We Do (white) → How We Work (navy) — / diagonal */
.what-we-do { padding-bottom: calc(var(--section-pad) + 56px); }
.what-we-do::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 56px;
    background: var(--gla-navy);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* How We Work (navy) → About Preview (light grey) — \ diagonal */
.how-we-work { padding-bottom: calc(var(--section-pad) + 56px); }
.how-we-work::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 56px;
    background: var(--gla-bg);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* About Preview (light grey) → Services Strip (navy) — / diagonal */
.about-preview { padding-bottom: calc(var(--section-pad) + 56px); }
.about-preview::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 56px;
    background: var(--gla-navy);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* Services Strip (navy) → Trust Bar (white) — \ diagonal */
.services-strip { padding-bottom: calc(var(--section-pad) + 56px); }
.services-strip::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 56px;
    background: var(--gla-white);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Trust Bar (white) → Newsletter (red) — / diagonal */
.trust-bar { padding-bottom: calc(var(--section-pad) + 56px); }
.trust-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 56px;
    background: var(--gla-red);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* Reduce diagonal height on mobile */
@media (max-width: 767px) {
    .stats-bar                         { padding-bottom: calc(3rem + 36px); }
    .what-we-do,
    .how-we-work,
    .about-preview,
    .services-strip,
    .trust-bar                         { padding-bottom: calc(var(--section-pad) + 36px); }

    .stats-bar::after,
    .what-we-do::after,
    .how-we-work::after,
    .about-preview::after,
    .services-strip::after,
    .trust-bar::after                  { height: 36px; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & ENHANCEMENTS — GLA Global v2.1
═══════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal — defined in section 19 above ──────────── */


/* ── Page Preloader ─────────────────────────────────────────── */
#gla-preloader {
    position: fixed; inset: 0;
    background: var(--gla-navy);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity .5s ease, visibility .5s ease;
}
#gla-preloader.hidden { opacity: 0; visibility: hidden; }
.gla-preloader-ring {
    width: 52px; height: 52px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: var(--gla-red);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll Progress Bar ────────────────────────────────────── */
#scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 0%; height: 3px;
    background: linear-gradient(90deg, var(--gla-red), #e05a5a);
    z-index: 99998;
    transition: width .1s linear;
    border-radius: 0 2px 2px 0;
}

/* ── Hero Entrance Animation ────────────────────────────────── */
.hero-eyebrow  { animation: fadeSlideUp .7s ease both; animation-delay: .1s; }
.hero-title    { animation: fadeSlideUp .7s ease both; animation-delay: .25s; }
.hero-sub      { animation: fadeSlideUp .7s ease both; animation-delay: .4s; }
.hero-ctas     { animation: fadeSlideUp .7s ease both; animation-delay: .55s; }
.hero-scroll-indicator { animation: fadeIn 1s ease both; animation-delay: .9s; }

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Navbar Scroll Shrink ───────────────────────────────────── */
#site-nav { transition: padding .3s ease, box-shadow .3s ease; }
#site-nav.nav-shrunk { padding-top: .4rem !important; padding-bottom: .4rem !important; box-shadow: 0 2px 20px rgba(0,0,0,.15); }

/* ── Enhanced Card Hovers ───────────────────────────────────── */
.pillar-card {
    transition: transform .3s ease, box-shadow .3s ease;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.pillar-icon {
    transition: transform .3s ease, background .3s ease;
}
.pillar-card:hover .pillar-icon {
    transform: scale(1.15) rotate(-5deg);
    background: var(--gla-red);
    color: #fff;
}

/* ── Service Row Image Zoom ─────────────────────────────────── */
.service-row-img {
    transition: transform .5s ease, box-shadow .5s ease;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.service-row:hover .service-row-img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* ── Credential Items Animation ─────────────────────────────── */
.credential-item {
    transition: transform .3s ease, background .3s ease, color .3s ease;
    cursor: default;
}
.credential-item:hover {
    transform: translateY(-4px);
    background: var(--gla-red);
    color: #fff;
    border-radius: 8px;
}
.credential-item:hover i { color: #fff; }

/* ── Footer Badge Hover ─────────────────────────────────────── */
.footer-badge {
    transition: transform .25s ease, background .25s ease;
    cursor: default;
}
.footer-badge:hover { transform: scale(1.06); }

/* ── Page Banner Entrance ───────────────────────────────────── */
.page-banner-title { animation: fadeSlideUp .6s ease both; animation-delay: .1s; }
.page-banner-breadcrumb { animation: fadeIn .6s ease both; animation-delay: .3s; }

/* ── Smooth Scroll ──────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Responsive Touch Targets ───────────────────────────────── */
@media (max-width: 768px) {
    .btn { min-height: 44px; display: inline-flex; align-items: center; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .footer-links a { min-height: 36px; display: flex; align-items: center; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}

/* ── Stat Counter Pulse ─────────────────────────────────────── */
.stat-value { transition: transform .2s ease; }
.stat-value.counting { animation: pulse-once .4s ease; }
@keyframes pulse-once {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ── Contact Info Item Hover ────────────────────────────────── */
.contact-info-item {
    transition: transform .25s ease, background .25s ease;
    border-radius: 8px;
    padding: .5rem;
    margin: -.5rem;
    margin-bottom: .5rem;
}
.contact-info-item:hover { transform: translateX(4px); background: var(--gla-light-gray); }

/* ── FAQ Item Animation ─────────────────────────────────────── */
.faq-item {
    transition: box-shadow .3s ease, transform .3s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* ═══════════════════════════════════════════════════════════════
   RESUME CTA CARD — Career Page
═══════════════════════════════════════════════════════════════ */
.resume-cta-card {
    border: 2px solid var(--gla-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--gla-light-gray);
    transition: box-shadow .3s ease, border-color .3s ease;
}
.resume-cta-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    border-color: var(--gla-red);
}
.resume-cta-icon {
    width: 72px; height: 72px;
    background: rgba(var(--gla-red-rgb, 190,30,45),.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.resume-cta-icon i { font-size: 1.75rem; color: var(--gla-red); }
.resume-cta-title { font-size: 1.4rem; font-weight: 700; color: var(--gla-text); margin-bottom: .75rem; }
.resume-cta-text  { color: var(--gla-muted); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.resume-cta-btn   { word-break: break-all; }
.resume-cta-note  { font-size: .82rem; color: var(--gla-muted); margin-top: .75rem; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   SERVICE ROW IMAGE WRAP — zoom clip
═══════════════════════════════════════════════════════════════ */
.service-row-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .5s ease;
}
.service-row:hover .service-row-img-wrap {
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.service-row-img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}
.service-row:hover .service-row-img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Full mobile/tablet overhaul
═══════════════════════════════════════════════════════════════ */

/* ── Large desktops (1200px+) ── */
@media (min-width: 1200px) {
    .hero-title  { font-size: clamp(2.5rem, 4.5vw, 3.75rem); }
    .hero-sub    { font-size: 1.2rem; }
}

/* ── Tablet landscape (992px–1199px) ── */
@media (max-width: 1199px) {
    .service-row-content { font-size: .95rem; }
    .process-step { padding: 1.5rem; }
}

/* ── Tablet portrait (768px–991px) ── */
@media (max-width: 991px) {
    /* Nav */
    #site-nav .navbar-collapse {
        background: var(--gla-navy);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        padding: 1rem 1.5rem 1.5rem;
        margin-top: .5rem;
    }
    #site-nav .nav-link { color: rgba(255,255,255,.85) !important; }
    #site-nav .nav-link:hover { color: #fff !important; }
    #site-nav .btn-gla { width: 100%; margin-top: .75rem; }

    /* Hero */
    .hero-content { padding: 2rem 0; }
    .hero-title   { font-size: clamp(1.8rem, 5vw, 2.8rem); }
    .hero-sub     { font-size: 1rem; }
    .hero-ctas    { flex-direction: column; gap: .75rem; }
    .hero-ctas .btn { width: 100%; text-align: center; }

    /* Stats */
    .stat-item { padding: 1.5rem .5rem; }
    .stat-value { font-size: 2rem; }

    /* Service rows — stack on tablet */
    .service-row .row.flex-lg-row-reverse { flex-direction: column !important; }
    .service-row-img-wrap { margin-bottom: 1.5rem; }

    /* Section spacing */
    .section-pad { padding-top: 3.5rem; padding-bottom: 3.5rem; }

    /* About preview image */
    .about-img-wrap { margin-bottom: 2rem; }
    .about-img-badge { bottom: -1rem; right: .5rem; padding: .75rem 1.25rem; }

    /* Process steps */
    .process-step { margin-bottom: 1rem; }

    /* Products tabs */
    .product-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .25rem; }
    .product-tabs::-webkit-scrollbar { height: 3px; }
    .product-tabs::-webkit-scrollbar-thumb { background: var(--gla-red); border-radius: 2px; }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
    /* Container breathing room */
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }

    /* Section spacing */
    .section-pad { padding-top: 2.75rem; padding-bottom: 2.75rem; }

    /* Hero */
    .hero-section { min-height: 92svh; }
    .hero-title   { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.2; }
    .hero-eyebrow { font-size: .78rem; letter-spacing: .12em; }
    .hero-sub     { font-size: .95rem; line-height: 1.7; }
    .hero-ctas .btn { font-size: .95rem; padding: .75rem 1.25rem; }

    /* Stats bar — 2 col on small screens */
    .stats-row { display: grid !important; grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: 1px solid rgba(255,255,255,.1); padding: 1.25rem .5rem; }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-value { font-size: 1.9rem; }
    .stat-label { font-size: .75rem; }

    /* Page banners */
    .page-banner { padding: 5rem 0 2.5rem; }
    .page-banner-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }

    /* Section titles */
    .section-title { font-size: clamp(1.35rem, 5vw, 1.8rem); }
    .section-sub   { font-size: .95rem; }

    /* Product cards — 2 col on mobile */
    .row-cols-2 { --bs-columns: 2; }

    /* Service row */
    .service-row  { margin-bottom: 3rem; }
    .service-row:last-child { margin-bottom: 0; }

    /* Process steps */
    .process-num  { font-size: 2.5rem; }
    .process-step { padding: 1.25rem; }

    /* Pillar cards */
    .pillar-card { padding: 1.5rem 1rem; }

    /* Credentials bar — wrap to 2 col */
    .credentials-bar { gap: .75rem; }
    .credential-item { padding: .6rem .8rem; font-size: .85rem; }

    /* Resume CTA card */
    .resume-cta-card { padding: 2rem 1.25rem; }
    .resume-cta-btn  { font-size: .85rem; padding: .7rem 1rem; }

    /* Map */
    .map-wrap iframe { height: 260px; }

    /* Footer */
    .footer-main { padding: 2.5rem 0; }
    .footer-heading { margin-top: 1rem; }

    /* WhatsApp button — keep above footer on mobile */
    .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }

    /* CTA band */
    .services-cta-band .btn { width: 100%; }
    .services-cta-band h2 { font-size: 1.4rem; }
}

/* ── Small phones (max 480px) ── */
@media (max-width: 480px) {
    .hero-title  { font-size: 1.5rem; }
    .stat-value  { font-size: 1.6rem; }
    .product-item-card { border-radius: var(--radius); }
    .resume-cta-icon { width: 60px; height: 60px; }
    .resume-cta-title { font-size: 1.2rem; }
    .footer-sub  { text-align: center; }
    .footer-sub .col-md-4,
    .footer-sub .col-md-5,
    .footer-sub .col-md-3 { text-align: center !important; }
}

/* ── Touch device improvements ── */
@media (hover: none) {
    /* On touch, show card actions without hover dependency */
    .product-item-overlay { opacity: .4; }
    .pillar-card:hover { transform: none; }
    .service-row:hover .service-row-img { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — v2 Redesign
═══════════════════════════════════════════════════════════════ */

/* ── Quick-Contact Strip ─────────────────────────────────────── */
.quick-contact-strip {
    background: var(--gla-navy);
    padding: 2rem 0;
}
.quick-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
    height: 100%;
}
.quick-contact-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}
.quick-contact-card--wa:hover { border-color: #25D366; background: rgba(37,211,102,.12); }
.qc-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--gla-red);
    transition: background .25s ease, color .25s ease;
}
.quick-contact-card--wa .qc-icon { color: #25D366; }
.quick-contact-card:hover .qc-icon { background: var(--gla-red); color: #fff; }
.quick-contact-card--wa:hover .qc-icon { background: #25D366; color: #fff; }
.qc-body { flex: 1; min-width: 0; }
.qc-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 .2rem; }
.qc-value { font-size: .95rem; font-weight: 600; color: #fff; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qc-arrow { color: rgba(255,255,255,.3); font-size: .85rem; flex-shrink: 0; transition: transform .25s ease, color .25s ease; }
.quick-contact-card:hover .qc-arrow { transform: translateX(4px); color: rgba(255,255,255,.7); }

/* ── Contact Form Wrap ───────────────────────────────────────── */
.contact-form-wrap {
    background: var(--gla-light-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gla-border);
}

/* ── Contact Info Panel ──────────────────────────────────────── */
.contact-info-panel {
    background: #fff;
    border: 1px solid var(--gla-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    position: sticky;
    top: 100px;
}
.cip-header {
    background: var(--gla-navy);
    padding: 1.75rem 2rem 1.5rem;
}
.cip-header .section-tag { opacity: .7; }
.cip-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: .5rem 0 0;
    font-family: var(--font-heading);
}
.cip-items { padding: 1.25rem 1.75rem; }
.cip-items .contact-info-item {
    padding: .9rem 0;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--gla-border);
    background: transparent;
}
.cip-items .contact-info-item:last-child { border-bottom: none; }
.cip-items .contact-info-item:hover { transform: translateX(4px); background: transparent; }
.contact-info-icon--wa {
    background: rgba(37,211,102,.12) !important;
    color: #25D366 !important;
}
.cip-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--gla-border);
    background: var(--gla-light-gray);
}
.cip-badge {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gla-navy);
    background: #fff;
    border: 1px solid var(--gla-border);
    border-radius: 100px;
    padding: .3rem .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.cip-badge i { color: var(--gla-red); font-size: .7rem; }

/* ── What Happens Next Cards ─────────────────────────────────── */
.next-step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--gla-border);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
    height: 100%;
}
.next-step-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,.09);
    transform: translateY(-6px);
}
.ns-num {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gla-red);
    opacity: .07;
    font-family: var(--font-heading);
    line-height: 1;
    user-select: none;
}
.ns-icon {
    width: 52px; height: 52px;
    background: rgba(var(--gla-red-rgb, 190,30,45),.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--gla-red);
    margin-bottom: 1.25rem;
    transition: background .3s ease, color .3s ease;
}
.next-step-card:hover .ns-icon { background: var(--gla-red); color: #fff; }
.ns-title { font-size: 1.05rem; font-weight: 700; color: var(--gla-text); margin-bottom: .6rem; }
.ns-text  { font-size: .9rem; color: var(--gla-muted); line-height: 1.7; margin: 0; }

/* ── Contact Map Section ─────────────────────────────────────── */
.contact-map-section { line-height: 0; }
.contact-map-header {
    background: var(--gla-light-gray);
    border-top: 1px solid var(--gla-border);
    border-bottom: 1px solid var(--gla-border);
    padding: 1rem 0;
    line-height: normal;
}
.map-pin-icon {
    width: 42px; height: 42px;
    background: var(--gla-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.map-address-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gla-muted); margin: 0 0 .15rem; }
.map-address-value { font-size: .9rem; font-weight: 500; color: var(--gla-text); margin: 0; line-height: 1.4; }
.contact-map-embed iframe { display: block; width: 100%; height: 460px; }

/* ── Responsive overrides for contact page ───────────────────── */
@media (max-width: 991px) {
    .contact-info-panel { position: static; }
}
@media (max-width: 767px) {
    .quick-contact-strip { padding: 1.5rem 0; }
    .qc-value { font-size: .85rem; }
    .contact-form-wrap { padding: 1.25rem; }
    .cip-items { padding: 1rem 1.25rem; }
    .cip-header { padding: 1.25rem; }
    .cip-badge-row { padding: 1rem 1.25rem; }
    .contact-map-embed iframe { height: 300px; }
    .next-step-card { padding: 1.5rem 1.25rem; }
    .services-cta-band .d-flex { flex-direction: column; }
    .services-cta-band .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARD — Centered layout + clickable
═══════════════════════════════════════════════════════════════ */
.product-card {
    position: relative;   /* needed for stretched-link */
    text-align: center;
}
.product-card-icon {
    margin: 0 auto 1.25rem;   /* center the icon box */
}
.card-link {
    justify-content: center;  /* center "Explore →" */
}
/* Remove text-center from CTA card so its button stays centered naturally */
.product-card-cta { text-align: center; }

/* pillar cards (About / Career) — center icons too */
.pillar-card { text-align: center; }
.pillar-icon  { margin: 0 auto 1rem; }

/* ================================================================
   BOOTSTRAP 5 ENHANCEMENTS — 2026-06
   Animated hamburger, Offcanvas nav, Active link, Card lift,
   Mobile CTA bar, Navbar shadow, Toast, Skeleton loading
   ================================================================ */

/* --- 1. Animated hamburger → X on open --- */
.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    margin: 5px 0;
    transition: transform .35s ease, opacity .25s ease, width .25s ease;
    transform-origin: center;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- 2. Offcanvas nav drawer (mobile) --- */
#mainNav.offcanvas {
    background: var(--gla-navy);
    color: #fff;
    max-width: 300px;
    border-left: 2px solid var(--gla-red);
}
#mainNav .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 1.5rem;
    background: rgba(0,0,0,.2);
}
/* Mobile nav links inside drawer */
@media (max-width: 991.98px) {
    #mainNav .offcanvas-body {
        padding: .5rem 0 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    #mainNav .navbar-nav {
        width: 100%;
    }
    #mainNav .navbar-nav .nav-link {
        color: rgba(255,255,255,.85) !important;
        padding: .9rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: .02em;
        transition: color .2s, background .2s, border-left .2s;
        border-left: 3px solid transparent;
    }
    #mainNav .navbar-nav .nav-link:hover {
        color: #fff !important;
        background: rgba(255,255,255,.06);
        border-left-color: var(--gla-red);
    }
    #mainNav .navbar-nav .current-menu-item > .nav-link {
        color: #fff !important;
        background: rgba(255,255,255,.08);
        border-left-color: var(--gla-red);
        font-weight: 600;
    }
    .gla-nav-cta {
        padding: 1rem 1.5rem .5rem;
    }
    .gla-nav-cta .btn-gla {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* --- 3. Active nav link indicator on desktop --- */
@media (min-width: 992px) {
    .gla-nav-cta .btn-gla {
        display: inline-flex;
        width: auto;
    }
    #site-nav .current-menu-item > .nav-link {
        position: relative;
    }
    #site-nav .current-menu-item > .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%) scaleX(1);
        width: 60%;
        height: 2px;
        background: var(--gla-red);
        border-radius: 2px;
        animation: navUnderlineIn .25s ease both;
    }
    @keyframes navUnderlineIn {
        from { width: 0; }
        to   { width: 60%; }
    }
}

/* --- 4. Offcanvas contact strip (phone/email in drawer) --- */
.occ-contact {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1rem 1.5rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.occ-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}
.occ-item:hover { color: #fff; }
.occ-item i { color: var(--gla-red); width: 16px; text-align: center; }

/* --- 5. Navbar shadow when scrolled --- */
#site-nav.scrolled,
#site-nav.navbar-solid {
    box-shadow: 0 2px 20px rgba(0,0,0,.18);
}

/* --- 6. Sticky mobile CTA bar (Call / WhatsApp / Quote) --- */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1041;
    height: 54px;
    display: flex;
    box-shadow: 0 -3px 16px rgba(0,0,0,.18);
}
.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .82rem;
    text-decoration: none !important;
    gap: .4rem;
    letter-spacing: .02em;
    transition: filter .15s;
}
.mobile-cta-btn:active { filter: brightness(.88); }
.mobile-cta-call  { background: var(--gla-navy); color: #fff !important; }
.mobile-cta-wa    { background: #25D366; color: #fff !important; }
.mobile-cta-quote { background: var(--gla-red); color: #fff !important; }
/* Divider lines between buttons */
.mobile-cta-call  { border-right: 1px solid rgba(255,255,255,.15); }
.mobile-cta-wa    { border-right: 1px solid rgba(255,255,255,.15); }
/* Push body + WhatsApp float up */
@media (max-width: 991.98px) {
    body { padding-bottom: 54px !important; }
    .whatsapp-float { bottom: 70px !important; }
}

/* --- 7. Card hover lift effect --- */
.service-card,
.product-card {
    transition: transform .25s ease, box-shadow .25s ease !important;
}
.service-card:hover,
.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.13) !important;
}

/* --- 8. Hero text responsive scaling --- */
.hero-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem) !important;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: clamp(.95rem, 2.2vw, 1.3rem) !important;
}

/* --- 9. Toast notification --- */
.gla-toast-wrap {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 9999;
    pointer-events: none;
}
.gla-toast {
    background: var(--gla-navy);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 260px;
    pointer-events: auto;
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
    border-left: 4px solid #22c55e;
}
.gla-toast.show {
    transform: translateX(0);
    opacity: 1;
}
.gla-toast-icon { font-size: 1.4rem; color: #22c55e; flex-shrink: 0; }
.gla-toast-msg { font-size: .9rem; line-height: 1.4; flex: 1; }
.gla-toast-msg strong { display: block; margin-bottom: 2px; }
.gla-toast-close {
    background: none; border: none; color: rgba(255,255,255,.5);
    cursor: pointer; font-size: 1.1rem; padding: 0; line-height: 1;
    flex-shrink: 0; transition: color .2s;
}
.gla-toast-close:hover { color: #fff; }
@media (max-width: 575.98px) {
    .gla-toast-wrap { right: 12px; left: 12px; bottom: 70px; }
    .gla-toast { min-width: auto; }
}

/* --- 10. Skeleton shimmer on product images --- */
.product-thumb-wrap {
    position: relative;
    overflow: hidden;
    background: #e9e9e9;
}
.product-thumb-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,.55) 50%,
        transparent 100%);
    background-size: 200% 100%;
    animation: gla-shimmer 1.6s infinite;
    pointer-events: none;
}
.product-thumb-wrap img.img-loaded + *,
.product-thumb-wrap.loaded::after { display: none; }
@keyframes gla-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* Hamburger always white — visible on dark/transparent navbar */
#site-nav .navbar-toggler {
    color: #fff !important;
    border-color: rgba(255,255,255,.35) !important;
    padding: .4rem .6rem;
}
#site-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,.2);
}
