/* ============================
   GACG Brand Theme Overrides
   ============================ */

:root {
    --gacg-navy: #050d18;
    --gacg-navy-soft: #081427;
    --gacg-cream: #e4cfaa;
    --gacg-cream-soft: #f6ecda;
    --gacg-text-dark: #1f2933;
}

/* Global -------------------------------------------------- */

body {
    background-color: #ffffff;
    color: var(--gacg-text-dark);
}

/* Navbar -------------------------------------------------- */

.nk-navbar {
    background-color: var(--gacg-navy);
    color: var(--gacg-cream);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.nk-navbar .nk-nav > li > a {
    color: rgba(228, 207, 170, 0.85);
    letter-spacing: 0.09em;
    font-size: 0.8rem;
}

.nk-navbar .nk-nav > li > a:hover,
.nk-navbar .nk-nav > li.active > a {
    color: var(--gacg-cream);
}

/* Logo in navbar */

.nk-nav-logo img {
    height: 48px;
    width: auto;
}

.header-tagline {
    margin-left: 18px;
    padding-left: 18px;
    border-left: 1px solid rgba(228, 207, 170, 0.35);
    font-family: "Playfair Display", serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(228, 207, 170, 0.9);
    white-space: nowrap;
}

.header-tagline span {
    display: inline-block;
}

/* Hero ---------------------------------------------------- */

.nk-header-title-full .bg-image-overlay {
    background-color: rgba(5, 13, 24, 0.78) !important;
}

.nk-header-title .nk-subtitle {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--gacg-cream-soft);
}

.nk-header-title .nk-title {
    font-family: "Playfair Display", serif;
    color: var(--gacg-cream);
}

.nk-header-title em.fw-400 {
    font-style: normal;
    font-weight: 400;
    color: var(--gacg-cream-soft);
}

/* Sections ------------------------------------------------ */

.bg-white {
    background-color: #fdfbf7;
}

.nk-box.bg-dark-1 {
    background-color: var(--gacg-navy-soft);
}

.nk-box.bg-dark-1 .nk-ibox-1,
.nk-box.bg-dark-1 h2,
.nk-box.bg-dark-1 p {
    color: var(--gacg-cream-soft);
}

/* Service tiles */

.nk-portfolio-item-square {
    background-color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    overflow: hidden;
}

.nk-portfolio-item-info {
    background: linear-gradient(
        to bottom,
        rgba(5, 13, 24, 0.2),
        rgba(5, 13, 24, 0.78)
    );
}

.nk-portfolio-item-info h2 {
    font-family: "Playfair Display", serif;
    color: var(--gacg-cream-soft);
}

.nk-portfolio-item-info .portfolio-item-category {
    color: #fdfbf7;
    font-size: 0.9rem;
}

/* CTA / buttons ------------------------------------------ */

.btn-gacg,
.nk-btn-gacg {
    display: inline-block;
    border-radius: 999px;
    background-color: var(--gacg-cream);
    color: var(--gacg-navy);
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    font-weight: 600;
}

.btn-gacg:hover,
.nk-btn-gacg:hover {
    background-color: #f5e2bd;
    color: var(--gacg-navy);
    text-decoration: none;
}

/* Footer -------------------------------------------------- */

.nk-footer {
    background-color: var(--gacg-navy);
    color: var(--gacg-cream-soft);
}

.nk-footer-text p {
    color: rgba(245, 232, 207, 0.85);
}

/* ===============================================
   GACG NAVBAR LOGO FIX — override theme defaults
   =============================================== */

.nk-nav-logo img,
.nk-nav-logo-onscroll {
    height: 72px !important;      /* Increase as desired */
    width: auto !important;
    max-height: 72px !important;
    object-fit: contain !important;
}

/* Make the logo slightly bigger on desktop only */
@media (min-width: 992px) {
    .nk-nav-logo img,
    .nk-nav-logo-onscroll {
        height: 82px !important;
        max-height: 82px !important;
    }
}

/* ======================================================
   MOBILE HEADER FIXES FOR GACG BRAND
   ====================================================== */

@media (max-width: 767px) {

    /* 1. Proper left padding for the logo */
    .nk-nav-table > div:first-child {
        padding-left: 14px !important;
    }

    /* 2. Resize the logo on mobile only */
    .nk-nav-logo img,
    .nk-nav-logo-onscroll {
        height: 56px !important;
        max-height: 56px !important;
    }

    /* 3. Fix header height so it doesn't become huge */
    .nk-navbar {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    /* 4. Make the tagline wrap cleanly */
    .header-tagline {
        margin-left: 10px !important;
        padding-left: 10px !important;

        font-size: 0.63rem !important;
        letter-spacing: 0.18em !important;
        white-space: normal !important;
        line-height: 1.3;
        max-width: 130px;
    }

    /* 5. Slight repositioning so logo + tagline align */
    .nk-nav-logo {
        margin-right: 6px !important;
    }

    /* Optional: tighten mobile spacing even more */
    .nk-nav {
        margin-top: 6px !important;
    }
}

/* CTA style for Contact Us */
.nk-menu-item-highlight > a {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--gacg-cream);
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--gacg-cream);
    margin-top: 16px;
}

/* ======================================================
   PREMIUM HERO TYPOGRAPHY & ANIMATION (GACG EDITION)
   ====================================================== */

/* -----------------------------
   MOBILE APPEARANCE OVERRIDES
   ----------------------------- */
@media (max-width: 767px) {

    /* HERO TITLE (BIG SERIF TEXT) */
    .nk-header-title .nk-title,
    .nk-header-title .display-3,
    .nk-header-title h1 {
        font-size: 1.85rem !important;
        line-height: 1.20 !important;
        font-weight: 600 !important;
        letter-spacing: -0.01em !important;
        padding: 0 14px !important;
        opacity: 0;
        transform: translateY(18px);
        animation: heroFade 0.65s ease-out 0.15s forwards;
    }

    /* SUBTITLE (PEOPLE • ANALYTICS • SOLUTIONS) */
    .nk-header-title .nk-subtitle {
        font-size: 0.72rem !important;
        letter-spacing: 0.23em !important;
        margin-bottom: 8px !important;
        opacity: 0;
        transform: translateY(14px);
        animation: heroFade 0.65s ease-out forwards;
    }

    /* SECONDARY LINE ("Driving evidence-based…") */
    .nk-header-title em.fw-400 {
        display: inline-block;
        font-style: normal !important;
        font-size: 1rem !important;
        line-height: 1.34 !important;
        opacity: 0.9;
        padding: 0 18px !important;
        margin-top: 6px !important;
        opacity: 0;
        transform: translateY(20px);
        animation: heroFade 0.75s ease-out 0.25s forwards;
    }

    /* REDUCE HERO VERTICAL SPACING */
    .nk-header-title {
        padding-top: 52px !important;
        padding-bottom: 58px !important;
    }

    /* ENSURE CLEAN TOP SPACING WHEN LOGO SHRINKS */
    .nk-header {
        margin-top: 0 !important;
    }

    /* SLIGHTLY REDUCED SPACE BETWEEN WORD BLOCKS */
    .nk-header-title br {
        line-height: 0.85 !important;
    }
}

/* -----------------------------
   DESKTOP IMPROVEMENTS (subtle)
   ----------------------------- */
@media (min-width: 768px) {

    .nk-header-title .nk-title {
        letter-spacing: -0.015em !important;
        transform: translateY(14px);
        opacity: 0;
        animation: heroFade 0.7s ease-out 0.2s forwards;
    }

    .nk-header-title .nk-subtitle {
        opacity: 0;
        transform: translateY(10px);
        animation: heroFade 0.7s ease-out forwards;
    }

    .nk-header-title em.fw-400 {
        opacity: 0;
        transform: translateY(18px);
        animation: heroFade 0.8s ease-out 0.25s forwards;
    }
}

/* -----------------------------
   LUXURY FADE-IN ANIMATION
   ----------------------------- */
@keyframes heroFade {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   GACG BRAND THEME — FINAL CONSOLIDATED VERSION
   ========================================================== */


/* ----------------------------------------------------------
   1. NAVBAR LOGO SIZING (Desktop + Mobile)
   ---------------------------------------------------------- */

.nk-nav-logo img,
.nk-nav-logo-onscroll {
    height: 72px !important;
    width: auto !important;
    max-height: 72px !important;
    object-fit: contain !important;
}

@media (min-width: 992px) {
    .nk-nav-logo img,
    .nk-nav-logo-onscroll {
        height: 82px !important;
        max-height: 82px !important;
    }
}

@media (max-width: 767px) {

    .nk-nav-table > div:first-child {
        padding-left: 14px !important;
    }

    .nk-nav-logo img,
    .nk-nav-logo-onscroll {
        height: 56px !important;
        max-height: 56px !important;
    }

    .nk-navbar {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .header-tagline {
        margin-left: 10px !important;
        padding-left: 10px !important;
        font-size: 0.63rem !important;
        letter-spacing: 0.18em !important;
        white-space: normal !important;
        line-height: 1.3;
        max-width: 130px;
    }
}



/* ----------------------------------------------------------
   2. HERO BACKGROUND GRADIENT (Luxury Readability)
   ---------------------------------------------------------- */

.nk-header-title-full .bg-image-overlay {
    background: linear-gradient(
        to bottom,
        rgba(5, 13, 24, 0.75) 0%,
        rgba(5, 13, 24, 0.35) 40%,
        rgba(5, 13, 24, 0.75) 100%
    ) !important;
}



/* ----------------------------------------------------------
   3. KEN BURNS EFFECT (Guaranteed Override)
   ---------------------------------------------------------- */

.nk-header-title [class*="bg-image"],
.nk-header-title [class*="bg-video"],
.nk-page-header [class*="bg-image"],
.nk-page-header [class*="bg-video"] {
    animation: kenburnsFix 18s ease-out infinite alternate !important;
    transform-origin: center !important;
    display: block !important;
}

@keyframes kenburnsFix {
    0%   { transform: scale(1) translateY(0) !important; }
    100% { transform: scale(1.05) translateY(-4px) !important; }
}


/* ----------------------------------------------------------
   5. SEQUENTIAL WORD REVEAL
   PEOPLE → ANALYTICS → SOLUTIONS
   ---------------------------------------------------------- */

.nk-header-title span.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.nk-header-title span.word:nth-child(1) {
    animation: wordIn 0.6s ease-out 0.1s forwards;
}
.nk-header-title span.word:nth-child(2) {
    animation: wordIn 0.6s ease-out 0.32s forwards;
}
.nk-header-title span.word:nth-child(3) {
    animation: wordIn 0.6s ease-out 0.55s forwards;
}

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



/* ----------------------------------------------------------
   6. SCROLL DOWN DOT (Elegant Minimal Pulse)
   ---------------------------------------------------------- */

.scroll-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #f8f2e7;
    border-radius: 50%;
    opacity: 0.3;
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { opacity: 0.15; transform: translateX(-50%) translateY(0); }
    50%  { opacity: 1; transform: translateX(-50%) translateY(6px); }
    100% { opacity: 0.15; transform: translateX(-50%) translateY(0); }
}



/* ----------------------------------------------------------
   7. PREMIUM HERO TYPOGRAPHY (Responsive)
   ---------------------------------------------------------- */

@media (max-width: 767px) {

    .nk-header-title .nk-title,
    .nk-header-title .display-3,
    .nk-header-title h1 {
        font-size: 1.85rem !important;
        line-height: 1.20 !important;
        font-weight: 600 !important;
        letter-spacing: -0.01em !important;
        padding: 0 14px !important;
        opacity: 0;
        transform: translateY(18px);
        animation: heroFade 0.65s ease-out 0.15s forwards;
    }

    .nk-header-title .nk-subtitle {
        font-size: 0.72rem !important;
        letter-spacing: 0.23em !important;
        margin-bottom: 8px !important;
        opacity: 0;
        transform: translateY(14px);
        animation: heroFade 0.65s ease-out forwards;
    }

    .nk-header-title em.fw-400 {
        display: inline-block;
        font-style: normal !important;
        font-size: 1rem !important;
        line-height: 1.34 !important;
        opacity: 0.9;
        padding: 0 18px !important;
        margin-top: 6px !important;
        opacity: 0;
        transform: translateY(20px);
        animation: heroFade 0.75s ease-out 0.25s forwards;
    }

    .nk-header-title {
        padding-top: 52px !important;
        padding-bottom: 58px !important;
    }
}

@media (min-width: 768px) {
    .nk-header-title .nk-title {
        letter-spacing: -0.015em !important;
        transform: translateY(14px);
        opacity: 0;
        animation: heroFade 0.7s ease-out 0.2s forwards;
    }

    .nk-header-title .nk-subtitle {
        opacity: 0;
        transform: translateY(10px);
        animation: heroFade 0.7s ease-out forwards;
    }

    .nk-header-title em.fw-400 {
        opacity: 0;
        transform: translateY(18px);
        animation: heroFade 0.8s ease-out 0.25s forwards;
    }
}

@keyframes heroFade {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

.service-btn {
    margin-top: 18px;
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255,255,255,0.92);
    color: #0d0f15 !important;
    font-weight: 600;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.25s ease;
}

.nk-portfolio-item-info:hover .service-btn {
    background: #C9A86A;
    color: #0d0f15 !important;
}

/* === FIX NAVBAR DROPDOWN CLIPPING === */
.nk-navbar .nk-nav > li {
    overflow: visible !important;
    position: relative !important;
}

.nk-navbar .nk-nav > li .dropdown {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0d0f15;
    padding: 12px 0;
    min-width: 240px;
    z-index: 9999;
    transition: opacity .25s ease;
}

.nk-navbar .nk-nav > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

/* ====================================================== */
/*   GACG PREMIUM DROPDOWN MENU — LUXURY GOLD UPGRADE     */
/* ====================================================== */

.nk-navbar .nk-nav > li .dropdown {
    background: rgba(13, 15, 21, 0.96);
    border-radius: 6px;
    padding: 12px 0;
    min-width: 260px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    transform: translateY(6px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(.25, .8, .25, 1);
}

.nk-navbar .nk-nav > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nk-navbar .dropdown li a {
    display: block;
    padding: 12px 22px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.85;
    transition: all .23s ease;
    border-left: 3px solid transparent;
}

.nk-navbar .dropdown li a:hover {
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
    border-left: 3px solid #C9A86A; /* signature GACG gold */
}

/* spacing between items */
.nk-navbar .dropdown li + li a {
    margin-top: 2px;
}

/* prevent clipping issues */
.nk-navbar .nk-nav > li {
    overflow: visible !important;
}

/* =============================== */
/*    GACG PREMIUM CONTACT FORM    */
/* =============================== */

.gacg-form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.4px;
    color: #555;
}

.gacg-form input,
.gacg-form textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fafafa;
}

.gacg-form input:focus,
.gacg-form textarea:focus {
    border-color: #C9A86A;
    box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.25);
    outline: none;
}

.gacg-btn {
    background-color: #C9A86A;
    color: #0d0f15;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.gacg-btn:hover {
    background-color: #b59255;
}

.gacg-status {
    margin-top: 18px;
    font-size: 15px;
    color: #fff;
}

/* =============================== */
/*    FORM SUCCESS / ERROR BOXES   */
/* =============================== */

#gacg-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: none; /* hidden by default */
}

/* Success */
#gacg-status.success {
    background-color: #C9A86A;
    color: #0d0f15;
}

/* Error */
#gacg-status.error {
    background-color: #b64646;
    color: #fff;
}

/* Optional fade animation */
#gacg-status.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

#gacg-status.fade-out {
    animation: fadeOut 0.4s ease forwards;
}

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

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Force status message to sit in normal flow so it is always visible */
#gacg-status {
    display: none;
    position: relative !important;
    top: 0 !important;
    margin-top: 18px !important;
}

#gacg-status {
    display: none;
    position: relative !important;
    width: 100% !important;
    float: left !important;
    clear: both !important;
    margin-top: 20px !important;
}



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

.gacg-team-section {
    padding-top: 120px;
}

.gacg-team-intro {
    max-width: 760px;
    margin: 0 auto 42px auto;
    font-size: 17px;
    line-height: 1.75;
    color: #4c4c4c;
}

.gacg-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    margin: 0 auto 38px auto;
    max-width: 860px;
}

.gacg-team-card {
    display: block;
    height: 100%;
    padding: 34px 28px 32px 28px;
    border: 1px solid rgba(13, 15, 21, 0.10);
    border-radius: 12px;
    background: #fff;
    color: #0d0f15;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(13, 15, 21, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gacg-team-card:hover,
.gacg-team-card:focus {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 106, 0.65);
    box-shadow: 0 18px 45px rgba(13, 15, 21, 0.12);
    color: #0d0f15;
    text-decoration: none;
}

.gacg-team-photo-wrap {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0f15 0%, #2b2f3a 100%);
    border: 4px solid #f4f0e8;
}

.gacg-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gacg-team-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A86A;
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    letter-spacing: 1px;
    z-index: 0;
}

.gacg-team-photo {
    position: relative;
    z-index: 1;
}

.gacg-team-card h3 {
    margin: 0 0 6px 0;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.gacg-team-role {
    margin: 0 0 15px 0;
    color: #C9A86A;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 13px;
}

.gacg-team-summary {
    min-height: 76px;
    margin: 0 0 20px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

.gacg-profile-link {
    display: inline-block;
    color: #0d0f15;
    font-weight: 700;
    border-bottom: 2px solid #C9A86A;
    padding-bottom: 3px;
}

.gacg-associate-note {
    max-width: 860px;
    margin: 0 auto;
    padding: 26px 30px;
    border-left: 4px solid #C9A86A;
    background: #faf8f3;
    text-align: left;
}

.gacg-associate-note p {
    margin: 0;
    color: #3f3f3f;
    font-size: 16px;
    line-height: 1.75;
}

.gacg-profile-hero {
    background: #0d0f15;
    padding: 150px 0 90px 0;
}

.gacg-profile-hero-banner {
    position: relative;
    min-height: 560px;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.gacg-profile-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 15, 21, 0.08) 0%, rgba(13, 15, 21, 0.48) 62%, rgba(13, 15, 21, 0.76) 100%);
}

.gacg-profile-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 15px 72px 15px;
}

.gacg-profile-body {
    padding-top: 75px;
    padding-bottom: 75px;
    max-width: 880px;
}

.gacg-profile-kicker {
    color: #C9A86A;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .gacg-team-grid {
        grid-template-columns: 1fr;
    }

    .gacg-team-section {
        padding-top: 80px;
    }

    .gacg-team-photo-wrap {
        width: 165px;
        height: 165px;
    }

    .gacg-associate-note {
        text-align: center;
    }

    .gacg-profile-hero-banner {
        min-height: 420px;
        background-position: center top;
    }

    .gacg-profile-hero-content {
        padding-bottom: 48px;
    }
}


/* =========================================================
   Profile banner preset crop correction
   Keeps original preset hero structure; only adjusts image anchor.
   ========================================================= */

.gacg-profile-hero,
.gacg-profile-hero-banner {
    background-position: center top !important;
    background-size: cover !important;
}

.profile-tarquin-yue .gacg-profile-hero,
.profile-tarquin-yue .gacg-profile-hero-banner {
    background-position: center 12% !important;
}

.profile-sean-lee .gacg-profile-hero,
.profile-sean-lee .gacg-profile-hero-banner {
    background-position: center 10% !important;
}

.gacg-profile-hero-content {
    padding-top: 0 !important;
}


/* Divider between Our Team and Contact Us */
.gacg-team-contact-divider {
    background: #ffffff;
    padding: 22px 0 14px 0;
}
.gacg-team-contact-divider span {
    display: block;
    width: 100%;
    max-width: 980px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(201,168,106,0), rgba(201,168,106,.85), rgba(201,168,106,0));
}


/* GACG 4-pillar services section */
.gacg-services-intro p {
    font-size: 18px;
    line-height: 1.75;
    color: #555;
}

.gacg-service-pillars {
    margin-top: 10px;
}

.gacg-service-pillar-card {
    position: relative;
    display: block;
    min-height: 310px;
    padding: 42px 40px 38px 40px;
    background: #ffffff;
    border: 1px solid rgba(13, 15, 21, 0.10);
    box-shadow: 0 12px 34px rgba(13, 15, 21, 0.06);
    color: #333;
    text-decoration: none !important;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gacg-service-pillar-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #C9A86A;
    opacity: .95;
}

.gacg-service-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 46px rgba(13, 15, 21, 0.12);
    border-color: rgba(201, 168, 106, 0.55);
}

.gacg-service-pillar-number {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    letter-spacing: .12em;
    color: #C9A86A;
    margin-bottom: 20px;
}

.gacg-service-pillar-card h3 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #111;
    text-transform: none;
}

.gacg-service-pillar-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 25px;
}

.gacg-service-pillar-card span {
    display: inline-block;
    font-weight: 600;
    letter-spacing: .04em;
    color: #111;
    border-bottom: 1px solid #C9A86A;
    padding-bottom: 4px;
}

.gacg-services-note {
    max-width: 880px;
    margin: 45px auto 0 auto;
    padding: 26px 32px;
    border-top: 1px solid rgba(201, 168, 106, .5);
    border-bottom: 1px solid rgba(201, 168, 106, .5);
}

.gacg-services-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 767px) {
    .gacg-service-pillar-card {
        min-height: auto;
        padding: 34px 28px;
    }

    .gacg-service-pillar-card h3 {
        font-size: 23px;
    }
}


/* =========================================================
   GACG About Us Revamp
   ========================================================= */

.gacg-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201,168,106,0),
        rgba(201,168,106,.8),
        rgba(201,168,106,0)
    );
    opacity: .7;
}

.gacg-section-kicker {
    font-size: 13px;
    letter-spacing: .22em;
    color: #C9A86A;
    margin-bottom: 18px;
    font-weight: 600;
}

.gacg-about-intro {
    max-width: 920px;
    margin: 40px auto 0 auto;
}

.gacg-about-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}

.gacg-about-pillars {
    margin-top: 25px;
    margin-bottom: 70px;
}

.gacg-about-card {
    height: 100%;
    padding: 40px 34px;
    background: #fff;
    border: 1px solid rgba(13,15,21,.08);
    box-shadow: 0 12px 32px rgba(13,15,21,.05);
    transition: all .25s ease;
}

.gacg-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(13,15,21,.10);
}

.gacg-about-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    text-transform: none;
}

.gacg-about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.gacg-process-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    margin: 20px 0 80px 0;
    flex-wrap: wrap;
}

.gacg-process-item {
    flex: 1 1 200px;
    max-width: 240px;
    background: #fff;
    padding: 28px 24px;
    border: 1px solid rgba(13,15,21,.08);
    text-align: center;
}

.gacg-process-item span {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .2em;
    color: #C9A86A;
    margin-bottom: 10px;
    font-weight: 700;
}

.gacg-process-item h4 {
    margin-bottom: 14px;
    text-transform: none;
}

.gacg-process-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.gacg-process-arrow {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #C9A86A;
    opacity: .7;
}

.gacg-industries {
    text-align: center;
    padding-bottom: 40px;
}

.gacg-industries h3 {
    margin-bottom: 26px;
    text-transform: none;
}

.gacg-industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.gacg-industry-tags span {
    padding: 12px 20px;
    background: #fff;
    border: 1px solid rgba(201,168,106,.45);
    font-size: 14px;
    letter-spacing: .04em;
}

@media (max-width: 900px) {

    .gacg-process-arrow {
        display: none;
    }

    .gacg-about-intro p {
        font-size: 17px;
    }
}


/* Equal height for About Us cards */
.gacg-about-pillars .col-md-4 {
    display: flex;
}

.gacg-about-pillars .gacg-about-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* =========================================================
   GACG Hero Section Revamp
   ========================================================= */

.gacg-hero-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.gacg-hero-kicker {
    color: #C9A86A;
    font-size: 13px;
    letter-spacing: .28em;
    font-weight: 700;
    margin-bottom: 24px;
}

.gacg-hero-content .nk-title {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.08;
    text-transform: none;
}

.gacg-hero-subtitle {
    max-width: 920px;
    margin: 28px auto 0 auto;
    color: rgba(255,255,255,.88);
    font-size: 21px;
    line-height: 1.75;
}

.gacg-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.gacg-hero-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all .25s ease;
}

.gacg-hero-btn-primary {
    background: #C9A86A;
    color: #07101d !important;
    border: 1px solid #C9A86A;
}

.gacg-hero-btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #07101d !important;
}

.gacg-hero-btn-secondary {
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(255,255,255,.04);
}

.gacg-hero-btn-secondary:hover {
    color: #07101d !important;
    background: #ffffff;
    border-color: #ffffff;
}

.gacg-hero-location {
    margin-top: 28px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .gacg-hero-kicker {
        font-size: 11px;
        letter-spacing: .2em;
    }

    .gacg-hero-subtitle {
        font-size: 17px;
        line-height: 1.65;
    }

    .gacg-hero-content .nk-title {
        font-size: 42px;
    }

    .gacg-hero-btn {
        width: 100%;
        max-width: 280px;
    }
}


/* =========================================================
   GACG Footer Refinement
   ========================================================= */

.gacg-footer {
    background: #07101d;
    color: rgba(255,255,255,.82);
    margin-top: 0;
}

.gacg-footer-top {
    padding: 90px 0 70px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.gacg-footer h3,
.gacg-footer h5 {
    color: #ffffff;
}

.gacg-footer h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.gacg-footer h5 {
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: #C9A86A;
}

.gacg-footer p {
    line-height: 1.9;
    color: rgba(255,255,255,.72);
}

.gacg-footer-tagline {
    margin-top: 24px;
    color: #C9A86A;
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 700;
}

.gacg-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gacg-footer-links li {
    margin-bottom: 14px;
}

.gacg-footer-links a,
.gacg-footer-email {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    transition: all .25s ease;
}

.gacg-footer-links a:hover,
.gacg-footer-email:hover {
    color: #C9A86A;
}

.gacg-footer-email {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.gacg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
}

.gacg-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gacg-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.52);
}

.gacg-footer-note {
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .gacg-footer-top {
        padding: 70px 0 50px 0;
    }

    .gacg-footer h3 {
        font-size: 28px;
    }

    .gacg-footer-bottom-inner {
        flex-direction: column;
    }
}


/* =========================================================
   GACG Contact Section Refinement
   ========================================================= */

.gacg-contact-section {
    background: #ffffff;
    padding: 110px 0 100px 0;
}

.gacg-contact-intro h2 {
    margin-bottom: 28px;
}

.gacg-contact-intro > p {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 22px;
}

.gacg-contact-details {
    margin-top: 36px;
    border-top: 1px solid rgba(201,168,106,.45);
}

.gacg-contact-details > div {
    padding: 22px 0;
    border-bottom: 1px solid rgba(13,15,21,.08);
}

.gacg-contact-details span {
    display: block;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #C9A86A;
    font-weight: 700;
    margin-bottom: 8px;
}

.gacg-contact-details a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}

.gacg-contact-details a:hover {
    color: #C9A86A;
}

.gacg-contact-details p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.gacg-contact-card {
    background: #f8f8f7;
    border: 1px solid rgba(13,15,21,.08);
    box-shadow: 0 16px 42px rgba(13,15,21,.07);
    padding: 46px 42px;
}

.gacg-contact-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    text-transform: none;
}

.gacg-contact-card > p {
    color: #666;
    line-height: 1.75;
    margin-bottom: 30px;
}

.gacg-form label {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    margin: 18px 0 8px 0;
}

.gacg-form input,
.gacg-form textarea {
    width: 100%;
    border: 1px solid rgba(13,15,21,.13);
    background: #ffffff;
    padding: 14px 16px;
    color: #222;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.gacg-form input:focus,
.gacg-form textarea:focus {
    outline: none;
    border-color: rgba(201,168,106,.85);
    box-shadow: 0 0 0 3px rgba(201,168,106,.12);
}

.gacg-form textarea {
    resize: vertical;
}

.gacg-btn {
    margin-top: 26px;
    background: #07101d;
    color: #ffffff;
    border: 1px solid #07101d;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    transition: all .25s ease;
}

.gacg-btn:hover {
    background: #C9A86A;
    border-color: #C9A86A;
    color: #07101d;
}

.gacg-status {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;
    font-size: 14px;
}

.gacg-status.success {
    background: rgba(68, 140, 91, .12);
    color: #2f6f44;
}

.gacg-status.error {
    background: rgba(160, 65, 65, .12);
    color: #8a3434;
}

@media (max-width: 900px) {
    .gacg-contact-section {
        padding: 80px 0;
    }

    .gacg-contact-card {
        padding: 34px 26px;
    }
}


/* =========================================================
   GACG Core Service Detail Pages
   ========================================================= */

.gacg-service-detail-page {
    max-width: 980px;
    padding-top: 90px;
    padding-bottom: 90px;
}

.gacg-service-detail-intro {
    border-left: 4px solid #C9A86A;
    padding-left: 28px;
    margin-bottom: 70px;
}

.gacg-service-detail-intro p {
    font-size: 20px;
    line-height: 1.85;
    color: #444;
    margin: 0;
}

.gacg-service-detail-block {
    margin-bottom: 58px;
}

.gacg-service-detail-block h3 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 26px;
    text-transform: none;
}

.gacg-service-detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gacg-service-detail-block li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.gacg-service-detail-block li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: #C9A86A;
}

.gacg-service-detail-cta {
    margin-top: 80px;
    padding: 46px 42px;
    background: #07101d;
    color: rgba(255,255,255,.86);
    text-align: center;
}

.gacg-service-detail-cta p {
    max-width: 760px;
    margin: 0 auto 28px auto;
    font-size: 18px;
    line-height: 1.8;
}

.gacg-service-detail-cta a {
    display: inline-block;
    padding: 14px 32px;
    background: #C9A86A;
    color: #07101d !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: all .25s ease;
}

.gacg-service-detail-cta a:hover {
    background: #ffffff;
}

@media (max-width: 900px) {
    .gacg-service-detail-page {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .gacg-service-detail-intro {
        padding-left: 20px;
    }

    .gacg-service-detail-intro p {
        font-size: 18px;
    }

    .gacg-service-detail-block h3 {
        font-size: 28px;
    }

    .gacg-service-detail-cta {
        padding: 34px 24px;
    }
}


/* =========================================================
   GACG Service Back Link
   ========================================================= */

.gacg-back-link {
    margin-bottom: 42px;
}

.gacg-back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .04em;
    transition: all .25s ease;
}

.gacg-back-link a:hover {
    color: #C9A86A;
}


/* =========================================================
   GACG Premium Service Page Enhancements
   ========================================================= */

.gacg-service-enhancement,
.gacg-service-process,
.gacg-related-services {
    margin-bottom: 70px;
}

.gacg-service-enhancement h3,
.gacg-service-process h3,
.gacg-related-services h3 {
    font-size: 30px;
    margin-bottom: 24px;
    text-transform: none;
}

.gacg-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gacg-tag-grid span {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    background: #f7f7f6;
    border: 1px solid rgba(201,168,106,.45);
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.gacg-format-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

.gacg-format-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(13,15,21,.08);
    box-shadow: 0 10px 26px rgba(13,15,21,.05);
}

.gacg-format-card p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.gacg-service-process {
    padding: 36px 40px;
    border-left: 4px solid #C9A86A;
    background: rgba(201,168,106,.05);
}

.gacg-service-process p {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

.gacg-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.gacg-related-links a {
    display: inline-block;
    padding: 14px 22px;
    border: 1px solid rgba(13,15,21,.10);
    background: #fff;
    color: #333;
    text-decoration: none !important;
    transition: all .25s ease;
}

.gacg-related-links a:hover {
    border-color: rgba(201,168,106,.65);
    color: #C9A86A;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .gacg-format-grid {
        grid-template-columns: 1fr;
    }

    .gacg-service-process {
        padding: 28px 24px;
    }

    .gacg-service-enhancement h3,
    .gacg-service-process h3,
    .gacg-related-services h3 {
        font-size: 26px;
    }
}


/* =========================================================
   GACG Premium Image Sections
   ========================================================= */

.gacg-visual-divider {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gacg-visual-divider:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,16,29,.82), rgba(7,16,29,.48), rgba(7,16,29,.78)),
        linear-gradient(180deg, rgba(7,16,29,.18), rgba(7,16,29,.45));
}

.gacg-visual-divider .container {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gacg-visual-divider h2 {
    color: #fff;
    font-size: 46px;
    line-height: 1.25;
    text-align: center;
    max-width: 900px;
    margin: 0;
    text-transform: none;
}

.gacg-service-image-band {
    max-width: 980px;
    margin: 70px auto 0 auto;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(13,15,21,.10);
    border: 1px solid rgba(13,15,21,.08);
}

.gacg-service-image-band img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    filter: brightness(.82) saturate(.88);
}

@media (max-width: 900px) {
    .gacg-visual-divider,
    .gacg-visual-divider .container {
        min-height: 280px;
    }

    .gacg-visual-divider h2 {
        font-size: 32px;
    }

    .gacg-service-image-band img {
        height: 260px;
    }
}
