/* ==========================================
   Category Filter Tabs — Services Page
   ========================================== */
.category-filter-area {
    padding: 40px 0 0;
    background: #f8f9fc;
}
.filter-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: none;
}
.filter-tabs .nav-item { flex-shrink: 0; }
.filter-tabs .nav-link {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 0;
    font-size: 14px; font-weight: 500;
    color: #555; background: #fff;
    border: 1px solid #e0e4ec;
    transition: all 0.3s ease; text-decoration: none;
}
.filter-tabs .nav-link:hover { background: #f0f2ff; border-color: #c4c9f0; color: #1a376b; }
.filter-tabs .nav-link.active {
    background: #1a376b; border-color: #1a376b; color: #fff;
    box-shadow: 0 4px 12px rgba(26, 55, 107, 0.25);
}
.filter-tabs .tab-icon { display: flex; align-items: center; font-size: 18px; }
.filter-tabs .tab-icon img { width: 24px; height: 24px; border-radius: 0; object-fit: cover; }
.filter-tabs .tab-count { font-size: 12px; opacity: 0.7; }
.filter-tabs .nav-link.active .tab-count { opacity: 0.9; }
.category-desc-area { padding: 20px 0 0; background: #f8f9fc; }
.category-description { color: #666; font-size: 15px; line-height: 1.7; }
.service-card-category {
    display: inline-block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: #1a376b; background: rgba(26, 55, 107, 0.08);
    padding: 3px 10px; border-radius: 0; margin-bottom: 8px;
}

/* =================================================================
   RESPONSIVE DESIGN OVERHAUL — Fluid Typography + Flexbox Layout
   ================================================================= */

/* --- 1. ROOT: Fluid container system --- */
:root {
    --container-max: 1400px;
    --container-padding: clamp(1rem, 3vw, 2rem);
    --section-space: clamp(3rem, 6vw, 7.5rem);
}

/* Override template's rigid container */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: min(92%, var(--container-max));
    }
}
@media (max-width: 1399px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: min(94%, 1140px);
    }
}
@media (max-width: 1199px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: min(96%, 960px);
    }
}
@media (max-width: 991px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
}

/* --- 2. RESPONSIVE SECTION SPACING --- */
.space {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}
.space-top {
    padding-top: var(--section-space);
}

/* Override template's hardcoded section paddings */
@media (min-width: 1200px) and (max-width: 1500px) {
    .hero-style2 {
        padding: clamp(3rem, 5vw, 7.5rem) 0 clamp(2rem, 3vw, 5rem);
    }
    .service-card-wrap2 {
        margin-top: clamp(2rem, 4vw, 7.5rem);
    }
    .about-area-2 .about-thumb2 {
        margin-bottom: clamp(1rem, 2vw, 3.75rem);
    }
}

/* --- 3. FLUID TYPOGRAPHY: Hero Title --- */
/* GANTI semua fixed px dengan clamp() — inilah AKAR MASALAH */
.hero-style2 .hero-title {
    font-size: clamp(2.5rem, 8vw, 9.375rem);  /* 40px → 150px fluid */
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.015em;
    margin-top: -0.15em;
}
/* Override ALL template media queries untuk hero title */
@media (max-width: 1500px) {
    .hero-style2 .hero-title { font-size: clamp(2.5rem, 8.5vw, 8.75rem); }
}
@media (max-width: 1399px) {
    .hero-style2 .hero-title { font-size: clamp(2.2rem, 7.5vw, 7.5rem); }
}
@media (max-width: 1199px) {
    .hero-style2 .hero-title { font-size: clamp(2rem, 7vw, 6.25rem); }
}
@media (max-width: 991px) {
    .hero-style2 .hero-title { font-size: clamp(1.8rem, 6vw, 4.375rem); }
}
@media (max-width: 767px) {
    .hero-style2 .hero-title { font-size: clamp(1.6rem, 5.5vw, 3.4375rem); }
}
@media (max-width: 575px) {
    .hero-style2 .hero-title { font-size: clamp(1.5rem, 7vw, 2.8125rem); }
}
@media (max-width: 375px) {
    .hero-style2 .hero-title { font-size: clamp(1.3rem, 8vw, 2.25rem); }
}

/* Hero text */
.hero-style2 .hero-text {
    max-width: clamp(18rem, 30vw, 25rem);
    margin-top: clamp(1rem, 2vw, 1.875rem);
    margin-bottom: clamp(1.5rem, 3vw, 3.125rem);
}
@media (max-width: 991px) {
    .hero-style2 .hero-text { max-width: 100%; }
}

/* Hero thumbnail */
.hero-style2 .hero-thumb {
    margin-top: clamp(1rem, 4vw, 4.688rem);
}

/* --- 4. FLUID TYPOGRAPHY: Section Headings --- */
.sec-title {
    font-size: clamp(1.75rem, 3.5vw, 3.125rem) !important;
    line-height: 1.15;
}
@media (max-width: 1199px) {
    .sec-title { font-size: clamp(1.6rem, 4vw, 2.5rem) !important; }
}
@media (max-width: 991px) {
    .sec-title { font-size: clamp(1.5rem, 5vw, 2.125rem) !important; }
}

/* Sub title */
.sub-title {
    font-size: clamp(0.8rem, 1vw, 0.875rem);
}

/* --- 5. SERVICE SLIDER: horizontal (ganti layout staggered) --- */
.service-card-list,
.service-card-list:nth-child(n) {
    margin-top: 0 !important;
}

.service-slider-wrap {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: 2.5rem;
}

.service-slider .slick-list {
    margin: 0 -12px;
    overflow: visible;
}

.service-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}

.service-slider .slick-slide > div {
    height: 100%;
}

.service-slider .service-card.style2 {
    margin-top: 0;
    height: 100%;
    min-height: clamp(18rem, 28vw, 22rem);
}
.service-card.style2 .service-card_text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-slider-wrap .slick-arrow {
    top: -4.5rem;
    transform: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border: 1px solid rgba(21, 22, 28, 0.12);
    background: var(--white-color);
    color: var(--title-color);
    border-radius: 0;
}

.service-slider-wrap .slick-arrow:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white-color);
}

.service-slider-wrap .slick-prev {
    right: 56px;
    left: auto;
}

.service-slider-wrap .slick-next {
    right: 0;
}

.service-slider-wrap .slick-dots {
    bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .service-slider-wrap .slick-arrow {
        display: none !important;
    }
    .service-slider-wrap {
        padding-bottom: 2rem;
    }
}

.service-card.style2 {
    padding: clamp(1.25rem, 2vw, 1.875rem) clamp(1.25rem, 2vw, 1.875rem) clamp(1.5rem, 2.5vw, 2.5rem);
}
.service-card.style2 .service-card_title {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.25;
    hyphens: auto;
    overflow-wrap: break-word;
}
.service-card.style2 .service-card_text {
    font-size: clamp(0.8rem, 1vw, 0.938rem);
    margin-bottom: clamp(1.5rem, 2.5vw, 3.25rem);
}
.service-card.style2 .service-card_number {
    font-size: clamp(0.8rem, 1vw, 1rem);
}

/* Equalize card heights */
@media (min-width: 992px) {
    .service-card.style2 {
        min-height: clamp(22rem, 30vw, 26.25rem);
        display: flex;
        flex-direction: column;
    }
    .service-card.style2 .btn-wrap { margin-top: auto; }
}

/* --- 6. PROCESS (legacy overrides kept minimal) --- */

/* --- 7. ABOUT SECTION: Fluid spacing --- */
.about-area-2 .title-area {
    margin-bottom: clamp(1rem, 2vw, 1.563rem);
}
.about-counter-number {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

/* --- 8. TESTIMONIAL: Fix overflow --- */
.testi-wrap2 .row.global-carousel {
    margin-left: 0;
    margin-right: 0;
}
.testi-card.style2 .testi-card_title {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}
.testi-card.style2 .testi-card_text {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
}
.testi-card.style2 .testi-profile-title {
    font-size: clamp(0.9rem, 1.2vw, 1.125rem);
}

/* --- 9. PRODUCTS / PRICING: Card consistency --- */
@media (min-width: 992px) {
    .pricing-card {
        min-height: clamp(24rem, 32vw, 27.5rem);
        display: flex;
        flex-direction: column;
    }
    .pricing-card .btn-with-icon { margin-top: auto; }
}
.pricing-card_title {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}
.pricing-card_price {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* --- 10. BLOG CARDS: Consistent height --- */
@media (min-width: 992px) {
    .blog-card.style2 {
        min-height: clamp(28rem, 38vw, 32.5rem);
        display: flex;
        flex-direction: column;
    }
    .blog-card.style2 .blog-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .blog-card.style2 .blog-content .btn { margin-top: auto; }
}
.blog-title {
    font-size: clamp(1rem, 1.5vw, 1.5rem) !important;
}

/* --- 11. NAVBAR: Prevent wrapping at 1280px --- */
@media (min-width: 1200px) and (max-width: 1399px) {
    .main-menu > ul > li > a {
        padding: 0 clamp(0.4rem, 0.8vw, 0.625rem);
        font-size: clamp(0.75rem, 1vw, 0.875rem);
    }
    .header-button .btn {
        padding: 0 clamp(0.8rem, 1.5vw, 1.25rem);
        font-size: clamp(0.7rem, 0.9vw, 0.8125rem);
    }
}

/* --- 12. PREVENT HORIZONTAL OVERFLOW --- */
.gg-process,
.gg-stats,
.about-area-2,
.portfolio-area-2,
.pricing-area-1,
.blog-area-2,
.testimonial-area-2 {
    overflow: hidden;
}

/* Row overflow fix */
.row {
    --bs-gutter-x: clamp(0.75rem, 1.5vw, 1.5rem);
}

/* --- 13. COUNTER / STATS (legacy) --- */

/* --- 14. FOOTER --- */
.footer-widget {
    word-break: break-word;
}

/* --- 15. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
    .filter-tabs .nav-link { padding: 8px 16px; font-size: 13px; }
    :root { --section-space: clamp(2rem, 5vw, 4rem); }
}
/* ==========================================
   HEADER FIXES — 100% zoom at 1280px
   ========================================== */

/* --- Top bar: social links gap terlalu besar (40px!) --- */
.social-links {
    gap: 12px;
}
.header-top .social-links a {
    font-size: 14px;
}

/* --- Top bar: header-links gap terlalu besar (20px) --- */
.header-links li:not(:last-child) {
    margin: 0 10px 0 0;
}

/* --- Main nav: margin antar menu item --- */
.main-menu > ul > li {
    margin: 0 8px;
}
.main-menu a {
    font-size: 14px;
}

/* --- Header button area: gap terlalu besar (40px) --- */
.header-button {
    gap: 12px 18px;
}

/* --- Navbar CTA button: lebih compact --- */
.header-button .btn {
    padding: 8px 16px;
    font-size: 13px;
}

/* --- Top bar: prevent wrapping pada 1280px --- */
@media (max-width: 1399px) {
    .header-top .header-links li {
        font-size: 13px;
    }
    .header-top .header-links li > i {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
        margin-right: 6px;
    }
}

/* --- Sticky header: jaga z-index --- */
.sticky-wrapper.sticky {
    z-index: 999;
}

/* ==========================================
   HEADER DESKTOP FIX v8 — Clean flex + dropdown
   ========================================== */

/* Dropdown terpotong oleh overflow:hidden — harus visible */
.nav-header,
.nav-header .sticky-wrapper,
.nav-header .menu-area {
    overflow: visible;
}

/* Sub-menu di atas konten hero */
.main-menu > ul > li:hover > ul.sub-menu,
.main-menu > ul > li:focus-within > ul.sub-menu {
    z-index: 1001;
}

/* Matikan dekorasi absolut template (penyebab overlap) */
.header-layout2 .header-navbar-logo,
.header-layout2 .logo-bg,
.header-layout2 .navbar-right-desc {
    display: none !important;
}

/* Top bar: nomor telepon */
.header-top-phone {
    text-align: right;
    line-height: 1.2;
}
.header-top-phone-label {
    display: block;
    font-size: 13px;
    color: var(--body-color);
}
.header-top-phone-link {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--title-color);
}
.header-top-phone-link:hover {
    color: var(--theme-color);
}

@media (min-width: 992px) {
    .header-layout2 .header-top .header-top-left,
    .header-layout2 .header-top .header-top-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .header-layout2 .main-menu {
        margin-left: 0 !important;
    }

    .header-layout2 .header-button {
        margin-right: 0 !important;
    }

    .header-layout2 .menu-area .header-menu-row {
        flex-wrap: nowrap !important;
        gap: 12px;
    }

    .header-layout2 .header-nav-col {
        flex: 1 1 auto;
        min-width: 0;
        position: relative;
    }

    .header-layout2 .main-menu > ul > li {
        position: relative;
    }

    .header-layout2 .main-menu {
        display: flex !important;
        justify-content: center;
    }

    .header-layout2 .main-menu > ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }

    .header-layout2 .header-logo img {
        max-height: 32px;
        width: auto;
    }

    .header-layout2 .header-button .btn {
        display: inline-flex !important;
        align-items: center;
        white-space: nowrap;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-layout2 .header-logo img {
        max-height: 32px;
    }
    .main-menu > ul > li {
        margin: 0 4px;
    }
    .main-menu > ul > li > a {
        font-size: 12px;
    }
    .header-button .btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .main-menu > ul > li {
        margin: 0 6px;
    }
    .main-menu > ul > li > a {
        font-size: 13px;
    }
}

@media (min-width: 1400px) {
    .main-menu > ul > li {
        margin: 0 10px;
    }
}

/* ==========================================
   HOMEPAGE SECTION POLISH
   ========================================== */

/* --- Homepage Hero (full-bleed + overlay + brand strip) --- */
#gg-hero.gg-hero-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: clamp(4.75rem, 7vw, 7.2rem);
    padding: 0;
    overflow: hidden;
    background: #0f172a;
}
#gg-hero .gg-hero-slider {
    position: relative;
}
#gg-hero .gg-hero-slider .slick-list {
    min-height: clamp(420px, 52vw, 620px);
}
#gg-hero .gg-hero-slider.slick-slider .slick-slide,
#gg-hero .gg-hero-slider.slick-slider .slick-slide > div {
    width: 100%;
    height: auto;
}
#gg-hero .gg-hero-slide {
    position: relative;
    min-height: clamp(420px, 52vw, 620px);
    overflow: hidden;
}
#gg-hero .gg-hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}
#gg-hero .gg-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.94) 0%,
        rgba(15, 23, 42, 0.88) 32%,
        rgba(15, 23, 42, 0.55) 58%,
        rgba(15, 23, 42, 0.15) 100%
    );
    pointer-events: none;
}
#gg-hero .gg-hero-slide__container {
    position: relative;
    z-index: 2;
    min-height: clamp(420px, 52vw, 620px);
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(5.5rem, 10vw, 7.5rem);
}
#gg-hero .gg-hero-slide__row {
    min-height: clamp(360px, 46vw, 560px);
}
#gg-hero .gg-hero-copy {
    width: 100%;
    max-width: 640px;
    margin: 0;
    text-align: left;
    color: var(--white-color);
}
#gg-hero .gg-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}
#gg-hero .gg-hero-label__line {
    display: inline-block;
    width: 36px;
    height: 3px;
    background: var(--theme-color);
    flex-shrink: 0;
}
#gg-hero .gg-hero-title {
    margin: 0 0 14px;
    font-family: var(--title-font);
    font-weight: 700;
    line-height: 1.08;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35em 0.5em;
}
#gg-hero .gg-hero-title__main {
    display: block;
    font-size: clamp(1.85rem, 3.8vw, 3.25rem);
    color: var(--white-color);
}
#gg-hero .gg-hero-title__accent {
    display: block;
    font-size: clamp(1.85rem, 3.8vw, 3.25rem);
    color: var(--theme-color);
}
#gg-hero .gg-hero-desc {
    margin: 0 0 20px;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--body-font);
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    line-height: 1.65;
}
#gg-hero .gg-hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 16px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
#gg-hero .gg-hero-features li {
    text-align: left;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}
#gg-hero .gg-hero-features li i {
    display: block;
    font-size: 1.65rem;
    margin-bottom: 8px;
    color: var(--white-color);
}
#gg-hero .gg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#gg-hero .gg-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
#gg-hero .gg-hero-btn--primary {
    background: var(--gg-accent-contrast, #c44701);
    color: var(--white-color) !important;
    border: 1px solid var(--gg-accent-contrast, #c44701);
}
#gg-hero .gg-hero-btn--primary:hover {
    background: color-mix(in srgb, var(--theme-color) 88%, #000);
    transform: translateY(-2px);
}
#gg-hero .gg-hero-btn--ghost {
    background: transparent;
    color: var(--white-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.55);
}
#gg-hero .gg-hero-btn--ghost:hover {
    border-color: var(--white-color);
    background: rgba(255, 255, 255, 0.08);
}
#gg-hero .gg-hero-features-card {
    display: none;
}
#gg-hero .gg-hero-below {
    position: relative;
    z-index: 4;
}
#gg-hero .gg-hero-brands {
    position: relative;
    z-index: 5;
    margin-top: clamp(-3.5rem, -6vw, -4.5rem);
    padding: 0 clamp(1rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
}
#gg-hero .gg-hero-brands__inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    background: var(--white-color);
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: clamp(0.85rem, 1.6vw, 1.15rem) clamp(1rem, 2.5vw, 1.75rem);
    min-height: 72px;
}
#gg-hero .gg-hero-brands__label {
    flex: 0 0 auto;
    margin: 0;
    padding-right: clamp(0.5rem, 1.5vw, 1.25rem);
    font-size: clamp(0.68rem, 0.85vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--body-color);
    white-space: nowrap;
    border-right: 1px solid var(--smoke-color2);
}
#gg-hero .gg-hero-brands-slick--mobile {
    display: none;
}
#gg-hero .gg-hero-brand-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    max-width: 88px;
    margin: 0 auto;
    padding: 10px;
    background: var(--white-color);
    border: 1px solid var(--smoke-color2);
}
#gg-hero .gg-hero-brand-box img {
    max-height: 32px;
    max-width: 100%;
    width: auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
}
#gg-hero .gg-hero-brands__slider-wrap {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}
#gg-hero .gg-hero-brands-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
#gg-hero .gg-hero-brands-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: gg-hero-brand-scroll 35s linear infinite;
    will-change: transform;
}
#gg-hero .gg-hero-brands-marquee:hover .gg-hero-brands-marquee__track {
    animation-play-state: paused;
}
@keyframes gg-hero-brand-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
#gg-hero .gg-hero-brand-item {
    flex: 0 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
#gg-hero .gg-hero-brand-item img {
    max-height: 36px;
    width: auto;
    max-width: 110px;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
}
@media (max-width: 1199px) {
    #gg-hero .gg-hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    #gg-hero .gg-hero-copy .gg-hero-features--desktop {
        display: none !important;
    }
    #gg-hero .gg-hero-features-card {
        display: block;
        margin: -2.75rem 0 0;
        padding: 1.35rem 1rem 1.15rem;
        background: var(--white-color);
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
    }
    #gg-hero .gg-hero-features-card .gg-hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 12px;
        margin: 0;
    }
    #gg-hero .gg-hero-features-card .gg-hero-features li {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        font-size: 0.8rem;
        line-height: 1.4;
        color: var(--title-color);
    }
    #gg-hero .gg-hero-features-card .gg-hero-features li i {
        flex-shrink: 0;
        font-size: 1.35rem;
        margin: 2px 0 0;
        color: var(--theme-color);
    }
    #gg-hero .gg-hero-slide__container {
        text-align: left;
        padding: 1.35rem 1rem 4.25rem;
        min-height: min(70vh, 500px);
    }
    #gg-hero .gg-hero-slide__row {
        min-height: auto;
    }
    #gg-hero .gg-hero-slide,
    #gg-hero .gg-hero-slider .slick-list {
        min-height: min(70vh, 500px);
    }
    #gg-hero .gg-hero-slide__overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.92) 0%,
            rgba(15, 23, 42, 0.65) 38%,
            rgba(15, 23, 42, 0.15) 100%
        );
    }
    #gg-hero .gg-hero-copy {
        margin-left: 0;
        width: 100%;
        max-width: none;
    }
    #gg-hero .gg-hero-title__main,
    #gg-hero .gg-hero-title__accent {
        font-size: clamp(1.4rem, 6vw, 1.85rem);
    }
    #gg-hero .gg-hero-desc {
        margin-bottom: 16px;
        max-width: none;
        -webkit-line-clamp: unset;
        display: block;
    }
    #gg-hero .gg-hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    #gg-hero .gg-hero-btn {
        width: 100%;
        border-radius: 10px;
        padding: 13px 18px;
    }
    #gg-hero .gg-hero-brands {
        margin-top: 0;
        padding: 1.25rem 0 1.5rem;
        background: var(--white-color);
    }
    #gg-hero .gg-hero-brands__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding: 0;
        box-shadow: none;
        min-height: 0;
        background: transparent;
    }
    #gg-hero .gg-hero-brands__label {
        display: block;
        width: 100%;
        text-align: center;
        border: none;
        padding: 0;
        font-size: 0.72rem;
        color: var(--body-color);
    }
    #gg-hero .gg-hero-brands-marquee--desktop {
        display: none !important;
    }
    #gg-hero .gg-hero-brands-slick--mobile {
        display: block;
    }
    #gg-hero .gg-hero-brands__slider-wrap {
        padding: 0 40px 28px;
        position: relative;
    }
    #gg-hero .gg-hero-brands-slick .slick-arrow {
        position: absolute;
        top: 38%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50% !important;
        background: var(--smoke-color3) !important;
        border: 1px solid var(--smoke-color2) !important;
        color: var(--title-color) !important;
        z-index: 2;
    }
    #gg-hero .gg-hero-brands-slick .slick-prev {
        left: 0;
    }
    #gg-hero .gg-hero-brands-slick .slick-next {
        right: 0;
    }
    #gg-hero .gg-hero-brands-slick .slick-dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex !important;
        justify-content: center;
        gap: 6px;
        margin: 0;
    }
    #gg-hero .gg-hero-brands-slick .slick-dots button {
        width: 8px;
        height: 8px;
        padding: 0;
        background: var(--smoke-color2);
        border: none;
    }
    #gg-hero .gg-hero-brands-slick .slick-dots .slick-active button {
        background: var(--theme-color);
        width: 20px;
    }
    #gg-hero .gg-hero-brands-slick .slick-dots button::before {
        display: none;
    }
    .about-area-2.space {
        padding-top: clamp(1.5rem, 5vw, 2.5rem) !important;
    }
    #gg-hero .gg-hero-slider .slick-dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 12px;
        display: flex !important;
        justify-content: center;
        gap: 6px;
        margin: 0;
        z-index: 3;
    }
    #gg-hero .gg-hero-slider .slick-dots button {
        width: 8px;
        height: 8px;
        padding: 0;
        background: rgba(255, 255, 255, 0.45);
        border: none;
    }
    #gg-hero .gg-hero-slider .slick-dots .slick-active button {
        background: var(--theme-color);
        width: 22px;
    }
    #gg-hero .gg-hero-slider .slick-dots button::before {
        display: none;
    }
}
@media (min-width: 992px) {
    #gg-hero .gg-hero-features-card {
        display: none !important;
    }
    #gg-hero .gg-hero-slider .slick-dots {
        display: none !important;
    }
}
@media (max-width: 767px) {
    #gg-hero.gg-hero-wrapper {
        margin-top: clamp(4rem, 14vw, 4.75rem);
        background: var(--white-color);
    }
    .about-area-2 .title-area,
    .about-area-2 .sec-title {
        padding-right: 0;
    }
}
@media (max-width: 575px) {
    #gg-hero .gg-hero-features-card .gg-hero-features li {
        font-size: 0.74rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    #gg-hero .gg-hero-brands-marquee__track {
        animation: none;
    }
}

/* --- Section headers (konsisten) --- */
.section-header-row {
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

/* --- About --- */
.about-area-2 .about-thumb2 {
    padding: 0 clamp(0.5rem, 2vw, 1rem) clamp(2.75rem, 5vw, 3.5rem) clamp(8rem, 17vw, 11rem);
}
.about-area-2 .about-img-1 {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: clamp(15rem, 38vw, 21rem);
    margin-left: auto;
    margin-right: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.about-area-2 .about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.about-area-2 .about-thumb2 .about-counter-wrap.style2 {
    left: clamp(0px, 1vw, 10px);
    bottom: clamp(1.5rem, 3.5vw, 2.25rem);
    max-width: min(240px, 68%);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
    z-index: 2;
}
.about-area-2 .about-thumb2:after {
    left: clamp(2.75rem, 9vw, 5rem);
}
@media (max-width: 991px) {
    .about-area-2 .row.flex-row-reverse {
        flex-direction: column-reverse !important;
    }
    .about-area-2 .about-thumb2 {
        margin-bottom: 2rem !important;
    }
}
.about-area-2 .section-animation-shape1-1,
.about-area-2 .section-animation-shape1-2 {
    opacity: 0.2;
    pointer-events: none;
}

/* --- Services CTA box --- */
.service-area-2 .cta-wrap2-holder {
    margin-top: clamp(2rem, 4vw, 3.5rem);
}
.cta-wrap2 {
    max-width: 100%;
}
@media (max-width: 1199px) {
    .cta-wrap2 {
        display: flex;
        flex-wrap: wrap;
        gap: clamp(1.25rem, 3vw, 2rem);
        width: 100%;
        padding: clamp(1.25rem, 3vw, 2rem);
        margin-top: 0 !important;
    }
    .cta-wrap2:after {
        display: none;
    }
    .cta-wrap2 .cta-title {
        font-size: clamp(1.2rem, 3vw, 1.75rem);
    }
    .cta-wrap2 .cta-contact-grid .cta-contact-grid-details .link {
        font-size: clamp(1rem, 2.5vw, 1.35rem);
        margin-bottom: 0.5rem;
    }
}

.service-cta-only .cta-wrap2-holder {
    margin-top: 0;
}

/* --- Homepage CTA (split banner, full width) --- */
#home-cta-band.gg-home-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    background: #fff;
    margin-bottom: 0;
    overflow: hidden;
}
#home-cta-band .gg-cta-shell {
    width: 100%;
    max-width: none;
    background: #fff;
    overflow: hidden;
}
#home-cta-band .gg-cta-topbar {
    height: 6px;
    background: var(--theme-color);
}
#home-cta-band .gg-cta-card {
    display: grid;
    grid-template-columns: minmax(220px, 34%) 1fr;
    align-items: stretch;
    min-height: 0;
}
#home-cta-band .gg-cta-media {
    position: relative;
    overflow: hidden;
    min-height: 0;
    height: clamp(200px, 28vw, 300px);
}
#home-cta-band .gg-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
#home-cta-band .gg-cta-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 52%, #fff 88%);
    pointer-events: none;
}
#home-cta-band .gg-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3.5vw, 2.5rem);
    background: #fff;
    max-width: 720px;
}
#home-cta-band .gg-cta-eyebrow {
    margin: 0 0 12px;
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    color: var(--body-color);
    line-height: 1.5;
}
#home-cta-band .gg-cta-eyebrow__hl {
    display: inline-block;
    background: var(--theme-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 3px 9px;
    margin-right: 6px;
    font-size: 0.9em;
}
#home-cta-band .gg-cta-title {
    margin: 0 0 8px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
}
#home-cta-band .gg-cta-desc {
    margin: 0 0 14px;
    max-width: 520px;
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.65;
}
#home-cta-band .gg-cta-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 11px 22px;
    border-radius: 0;
    background: var(--theme-color);
    color: var(--white-color) !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border: 1px solid color-mix(in srgb, var(--theme-color) 80%, #000);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#home-cta-band .gg-cta-wa-btn i {
    font-size: 1.45rem;
}
#home-cta-band .gg-cta-wa-btn:hover {
    background: color-mix(in srgb, var(--theme-color) 88%, #000);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--theme-color) 40%, transparent);
}
#home-cta-band .gg-cta-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    color: var(--body-color);
    font-size: 0.92rem;
}
#home-cta-band .gg-cta-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#home-cta-band .gg-cta-perks i {
    font-size: 1.15rem;
    color: var(--theme-color);
}
@media (min-width: 992px) {
    #home-cta-band .gg-cta-card {
        grid-template-rows: clamp(200px, 28vw, 300px);
    }
    #home-cta-band .gg-cta-media {
        height: 100%;
    }
    #home-cta-band .gg-cta-content {
        height: 100%;
        overflow: hidden;
    }
}
@media (max-width: 991px) {
    #home-cta-band .gg-cta-card {
        grid-template-columns: 1fr;
    }
    #home-cta-band .gg-cta-media {
        height: clamp(180px, 42vw, 220px);
    }
    #home-cta-band .gg-cta-media::after {
        background: linear-gradient(180deg, transparent 70%, #fff 100%);
    }
    #home-cta-band .gg-cta-content {
        text-align: center;
        align-items: center;
    }
    #home-cta-band .gg-cta-wa-btn {
        align-self: center;
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }
    #home-cta-band .gg-cta-perks {
        justify-content: center;
    }
}

/* --- Process (alur kerja) --- */
.gg-process {
    background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
    overflow: hidden;
}
.gg-process__header {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gg-process__header .sec-title {
    text-transform: none;
    letter-spacing: -0.02em;
}
.gg-process__track {
    display: none;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    max-width: 920px;
    margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
    padding: 0 1.5rem;
}
@media (min-width: 992px) {
    .gg-process__track {
        display: flex;
    }
    .gg-process__track::before {
        content: "";
        position: absolute;
        left: 1.5rem;
        right: 1.5rem;
        top: 50%;
        height: 2px;
        background: linear-gradient(90deg, var(--theme-color) 0%, #c5d0e8 100%);
        transform: translateY(-50%);
        z-index: 0;
    }
}
.gg-process__track-dot {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--theme-color);
    border: 3px solid #f5f7fb;
    flex-shrink: 0;
}
.gg-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
}
@media (min-width: 576px) {
    .gg-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .gg-process__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.1rem, 1.8vw, 1.5rem);
    }
}
.gg-process__card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.6rem);
    background: #fff;
    border: 1px solid rgba(26, 55, 107, 0.08);
    box-shadow: 0 4px 24px rgba(26, 55, 107, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.gg-process__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.gg-process__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 55, 107, 0.12);
    border-color: rgba(26, 55, 107, 0.14);
}
.gg-process__card:hover::before {
    transform: scaleX(1);
}
.gg-process__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.gg-process__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    padding: 0.35rem 0.65rem;
    font-family: var(--title-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white-color);
    background: var(--theme-color);
}
.gg-process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(26, 55, 107, 0.06);
    color: var(--theme-color);
    font-size: 1.25rem;
    transition: background 0.25s ease, color 0.25s ease;
}
.gg-process__card:hover .gg-process__icon {
    background: var(--theme-color);
    color: var(--white-color);
}
.gg-process__title {
    margin: 0 0 0.65rem;
    font-family: var(--title-font);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--title-color);
    text-transform: none;
}
.gg-process__text {
    margin: 0;
    flex: 1;
    font-size: clamp(0.84rem, 0.95vw, 0.9rem);
    line-height: 1.65;
    color: var(--body-color);
}
@media (max-width: 575px) {
    .gg-process__card-top {
        margin-bottom: 0.85rem;
    }
}

/* --- Stats counter --- */
.gg-stats {
    position: relative;
    background: linear-gradient(135deg, #1a376b 0%, #0f2347 55%, #162d5a 100%);
    overflow: hidden;
}
.gg-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 50%, rgba(220, 38, 38, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.gg-stats .container {
    position: relative;
    z-index: 1;
}
.gg-stats__eyebrow {
    margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.gg-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
    .gg-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.gg-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.65rem;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.25s ease;
}
.gg-stats__item:hover {
    background: rgba(255, 255, 255, 0.07);
}
.gg-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    color: var(--white-color);
    background: var(--theme-color);
}
.gg-stats__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1em;
    font-family: var(--title-font);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white-color);
    letter-spacing: -0.03em;
}
.gg-stats__value .counter-number {
    color: inherit;
    -webkit-text-stroke: 0;
}
.gg-stats__suffix {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--theme-color);
    opacity: 1;
}
.gg-stats__label {
    margin: 0;
    max-width: 12rem;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.02em;
}
@media (max-width: 575px) {
    .gg-stats__grid {
        grid-template-columns: 1fr;
    }
    .gg-stats__item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
        padding: 1.15rem 1.25rem;
        gap: 0.5rem 1rem;
    }
    .gg-stats__icon {
        order: 0;
        flex-shrink: 0;
    }
    .gg-stats__value {
        order: 1;
        margin-left: auto;
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    .gg-stats__label {
        order: 2;
        width: 100%;
        max-width: none;
        padding-left: calc(2.5rem + 1rem);
        margin-top: -0.25rem;
    }
}

/* --- Accessibility: screen reader only text --- */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- Contact page --- */
.gg-contact-page__intro {
    max-width: 40rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.gg-contact-page__subtitle {
    margin: 0;
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.65;
}
.gg-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: linear-gradient(160deg, #1a376b 0%, #0f2347 100%);
    color: #fff;
    height: 100%;
}
.gg-contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.gg-contact-info__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.15rem;
}
.gg-contact-info__item h4 {
    margin: 0 0 0.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
}
.gg-contact-info__item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
}
.gg-contact-info__item a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gg-contact-wa-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
    gap: 0.5rem;
}
.gg-contact-wa-btn:hover {
    background: #1fb855 !important;
    border-color: #1fb855 !important;
}
.gg-contact-form-card {
    height: 100%;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    background: #fff;
    border: 1px solid rgba(26, 55, 107, 0.1);
    box-shadow: 0 8px 32px rgba(26, 55, 107, 0.08);
}
.gg-contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0.35rem;
}
.gg-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}
.gg-contact-form-note {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    color: var(--body-color);
    text-align: center;
    opacity: 0.85;
}
.gg-contact-map {
    background: #f5f7fb;
    padding-bottom: 0;
}
.gg-contact-map__frame {
    width: 100%;
    height: clamp(280px, 40vw, 420px);
    background: #e8ecf3;
}
.gg-contact-map__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.gg-contact-map__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: var(--body-color);
}
.gg-contact-map__caption > i {
    color: var(--theme-color);
    font-size: 1.1rem;
}
.gg-contact-map__link {
    margin-left: auto;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.gg-contact-map__link:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .gg-contact-map__link {
        margin-left: 0;
        width: 100%;
    }
}

/* --- Product detail: SEO summary & FAQ --- */
.product-seo-faq .product-seo-summary {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--body-color);
}
.product-seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.product-seo-keywords li {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--title-color);
    background: #fff;
    border: 1px solid rgba(26, 55, 107, 0.12);
}
.product-faq-accordion .accordion-item {
    margin-bottom: 0.75rem;
    border: 1px solid rgba(26, 55, 107, 0.1);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}
.product-faq-accordion .accordion-button {
    font-family: var(--title-font);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--title-color);
    background: #fff;
    box-shadow: none;
    padding: 1.1rem 1.25rem;
}
.product-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: rgba(220, 38, 38, 0.04);
}
.product-faq-accordion .accordion-button::after {
    filter: none;
}
.product-faq-accordion .accordion-body {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--body-color);
}
.gg-prose {
    word-break: break-word;
}

/* --- Portfolio slider --- */
.portfolio-slider-wrap {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: 2.5rem;
    position: relative;
}
.portfolio-slider .slick-list {
    margin: 0 -12px;
}
.portfolio-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}
.portfolio-slider .slick-slide > div {
    height: 100%;
}
.portfolio-slider .portfolio-card.style2 {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.portfolio-slider .portfolio-card.style2 .portfolio-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.portfolio-slider .portfolio-card.style2 .btn-with-icon {
    margin-top: auto;
}
.portfolio-slider .portfolio-card-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.portfolio-slider .portfolio-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-slider-wrap .slick-arrow,
.blog-slider-wrap .slick-arrow {
    top: -4.5rem;
    transform: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border: 1px solid rgba(21, 22, 28, 0.12);
    background: var(--white-color);
    color: var(--title-color);
    border-radius: 0;
}
.portfolio-slider-wrap .slick-arrow:hover,
.blog-slider-wrap .slick-arrow:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white-color);
}
.portfolio-slider-wrap .slick-prev,
.blog-slider-wrap .slick-prev {
    right: 56px;
    left: auto;
}
.portfolio-slider-wrap .slick-next,
.blog-slider-wrap .slick-next {
    right: 0;
}
.portfolio-slider-wrap .slick-dots,
.blog-slider-wrap .slick-dots {
    bottom: 0;
    text-align: center;
}
@media (max-width: 991px) {
    .portfolio-slider-wrap .slick-arrow,
    .blog-slider-wrap .slick-arrow {
        display: none !important;
    }
    .portfolio-slider-wrap,
    .blog-slider-wrap {
        padding-bottom: 2rem;
    }
}

/* --- Blog slider --- */
.blog-slider-wrap {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding-bottom: 2.5rem;
    position: relative;
}
.blog-slider .slick-list {
    margin: 0 -12px;
}
.blog-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}
.blog-slider .blog-card.style2 .blog-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.blog-slider .blog-card.style2 .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Pricing cards --- */
.pricing-card_category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--theme-color);
    background: color-mix(in srgb, var(--theme-color) 14%, transparent);
    padding: 6px 12px;
    margin-bottom: 12px;
}
.pricing-area-1 .pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-area-1 .pricing-card .btn-with-icon {
    margin-top: auto;
}
.pricing-area-1 .pricing-card .checklist li.unavailable {
    opacity: 0.45;
}

/* --- Testimonial --- */
@media (max-width: 1199px) {
    .testimonial-area-2 {
        margin-top: 0;
        padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    }
    .testimonial_shape_2-2,
    .testimonial_shape_2-3,
    .testimonial_shape_2-4 {
        display: none !important;
    }
    .testimonial_thumb2-1 {
        display: none !important;
    }
    .testimonial_bg_thumb2-1 {
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
        bottom: auto !important;
        min-height: 180px;
        margin-bottom: 1.5rem;
    }
    .testimonial-area-2 .col-xl-9 {
        width: 100%;
        max-width: 100%;
    }
    .testi-card.style2 {
        flex-direction: column;
        text-align: center;
    }
    .testi-card.style2 .testi-card-thumb {
        margin: 0 auto 1.25rem;
    }
}
@media (max-width: 767px) {
    .testimonial-anim-shape2-1 {
        display: none;
    }
}

/* --- Client logos --- */
.client-area-1 .client-logo {
    padding: 0.75rem 1rem;
}
.client-area-1 .client-logo img {
    max-height: 44px;
    width: auto;
    margin: 0 auto;
    opacity: 1;
    filter: none !important;
    transition: opacity 0.3s, transform 0.3s;
}
.client-area-1 .client-logo:hover img {
    opacity: 1;
    filter: none !important;
}

/* --- Our Brand section --- */
.our-brand-area {
    background: #ffffff;
    position: relative;
}
.our-brand-area .title-area .sec-text {
    max-width: 760px;
    margin: 0.75rem auto 0;
}
.our-brand-area .client-slider1 {
    border-top: 1px solid rgba(21, 22, 28, 0.1);
    border-bottom: 1px solid rgba(21, 22, 28, 0.1);
    padding: 1.25rem 0;
}
.our-brand-area .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 0.75rem 1rem;
}
.our-brand-area .client-logo a {
    width: 100%;
    text-align: center;
}
.our-brand-area .client-logo img {
    max-height: 46px;
    width: auto;
    margin: 0 auto;
    opacity: 1;
    filter: none !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.our-brand-area .client-logo:hover img {
    opacity: 1;
    filter: none !important;
    transform: translateY(-2px);
}
@media (max-width: 991px) {
    .our-brand-area .client-slider1 {
        padding: 1rem 0;
    }
    .our-brand-area .client-logo {
        min-height: 72px;
    }
}

/* Force-disable legacy template filters on brand logos */
.our-brand-area .client-slider1 .client-logo img,
.our-brand-area .client-logo img,
.client-slider1 .client-logo img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal;
}

/* --- Contact --- */
@media (max-width: 991px) {
    .contact-area-1 .row.flex-row-reverse {
        flex-direction: column-reverse !important;
    }
    .contact-area-1 .contact-thumb1-1 {
        max-width: 360px;
        margin: 0 auto 2rem;
    }
}

/* --- Kurangi noise dekoratif --- */
.contact-area-1 .section-animation-shape1-1 {
    pointer-events: none;
}
.contact-area-1 .container {
    position: relative;
    z-index: 2;
}
@media (max-width: 991px) {
    .about-area-2 .section-animation-shape1-1,
    .about-area-2 .section-animation-shape1-2,
    .service-area-2 .service_shape_2-1,
    .blog-area-2 .section-animation-shape1-1,
    .contact-area-1 .section-animation-shape1-1 {
        display: none !important;
    }
}

/* --- Portfolio card text --- */
.portfolio-card.style2 .portofolio-card-text {
    font-size: clamp(0.8rem, 1vw, 0.938rem);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.portfolio-card.style2 .portfolio-card-title {
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    line-height: 1.3;
}

/* --- Video area --- */
.video-area-1 .play-btn-wrap.style2 {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

/* ==========================================
   PAGE HERO / BREADCRUMB (semua halaman)
   ========================================== */
.breadcumb-wrapper.gg-page-hero {
    background: #0f172a !important;
    background-image: none !important;
    margin-top: clamp(4.75rem, 7vw, 7.2rem);
    padding: 0 !important;
    min-height: clamp(200px, 32vw, 280px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.breadcumb-wrapper.gg-page-hero::after {
    display: none !important;
}
.gg-page-hero__accent-top {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(36px, 8vw, 56px);
    height: 5px;
    background: var(--theme-color);
    z-index: 2;
}
.gg-page-hero__inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 3.5rem) var(--container-padding, 1rem) clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
}
.gg-page-hero__title,
.breadcumb-wrapper.gg-page-hero .breadcumb-title {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--white-color) !important;
    font-family: var(--title-font);
    font-size: clamp(1.75rem, 5vw, 3.25rem) !important;
    font-weight: 700 !important;
    line-height: 1.15;
    text-align: center;
    position: static;
    z-index: 1;
}
.gg-page-hero__crumb-bar {
    position: relative;
    width: 100%;
    margin-top: auto;
}
.gg-page-hero__crumb-bar .container {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 0;
}
.gg-page-hero__crumb-track {
    display: inline-flex;
    max-width: 100%;
    background: var(--theme-color);
    clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 100%, 0 100%);
}
.gg-page-hero__menu,
.breadcumb-wrapper.gg-page-hero .breadcumb-menu {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 12px clamp(1rem, 2.5vw, 1.5rem);
    padding-right: calc(clamp(1rem, 2.5vw, 1.5rem) + 28px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    text-align: left;
}
.gg-page-hero__menu li,
.breadcumb-wrapper.gg-page-hero .breadcumb-menu li {
    display: inline-flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gg-page-hero__menu li::before,
.breadcumb-wrapper.gg-page-hero .breadcumb-menu li::before {
    display: none !important;
}
.gg-page-hero__menu li + li::before,
.breadcumb-wrapper.gg-page-hero .breadcumb-menu li + li::before {
    content: "»";
    display: inline-block !important;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: none;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    opacity: 1;
}
.gg-page-hero__menu a,
.gg-page-hero__menu span,
.breadcumb-wrapper.gg-page-hero .breadcumb-menu a,
.breadcumb-wrapper.gg-page-hero .breadcumb-menu span {
    color: var(--white-color) !important;
    font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}
.gg-page-hero__menu a:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}
.breadcrumb-menu .icon,
.breadcumb-menu .icon {
    display: none !important;
}
@media (max-width: 767px) {
    .breadcumb-wrapper.gg-page-hero {
        min-height: clamp(170px, 38vw, 220px);
    }
    .gg-page-hero__crumb-track {
        clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0 100%);
    }
    .gg-page-hero__menu,
    .breadcumb-wrapper.gg-page-hero .breadcumb-menu {
        padding: 10px 0.85rem;
        padding-right: calc(0.85rem + 18px);
    }
}

/* ==========================================
   SQUARE DESIGN — konsisten kotak (frontend)
   ========================================== */
:root {
    --gg-radius: 0;
}

/* Tombol & CTA */
.btn,
.btn.style2,
.btn.style3,
.btn-with-icon .btn-icon,
.icon-btn,
.play-btn,
.play-btn.style5,
.hero-tag_icon,
.header-button .btn,
.sec-btn .btn {
    border-radius: var(--gg-radius) !important;
}

/* Header & social */
.header-top .social-links a,
.social-btn a,
.social-btn.style3 a,
.social-btn.style5 a {
    border-radius: var(--gg-radius) !important;
}

/* Kartu & badge */
.service-card,
.service-card.style2,
.service-card.style3,
.portfolio-card,
.portfolio-card.style2,
.blog-card,
.blog-card.style2,
.pricing-card,
.pricing-card_category,
.service-card-category,
.filter-tabs .nav-link,
.checklist li:before,
.tag,
.nice-select,
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
.popup-search-box,
.sidemenu-content,
.mobile-menu-area,
.preloader-inner,
.counter-card,
.about-counter-wrap,
.contact-grid-icon,
.cta-wrap2,
.cta-wrap2 .icon-btn,
.portfolio-card-thumb .icon-btn,
.portfolio-card-thumb .portfolio-card-number,
.blog-date,
.blog-date a,
.testi-card .quote-icon,
.client-logo,
.pricing-card .pricing-card-icon .icon,
.pricing-card .pricing-card-icon .tag,
.service-slider-wrap .slick-arrow,
.portfolio-slider-wrap .slick-arrow,
.blog-slider-wrap .slick-arrow {
    border-radius: var(--gg-radius) !important;
}

/* Slider dots & ripple pseudo (kotak) */
.slick-dots button,
.slick-dots li button:before,
.btn::before,
.btn::after,
.icon-btn::before,
.icon-btn::after {
    border-radius: var(--gg-radius) !important;
}

/* Separator breadcrumb */
.breadcumb-menu li:before,
.breadcrumb-menu li:before {
    border-radius: var(--gg-radius) !important;
}

/* Bootstrap utility di halaman public construz */
.rounded,
.rounded-1,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-5,
.rounded-circle,
.rounded-pill {
    border-radius: var(--gg-radius) !important;
}

/* WhatsApp popup */
.wa-popup-container,
.wa-popup-close,
.wa-popup-icon,
.wa-popup-body input,
.wa-popup-body textarea,
.wa-popup-submit {
    border-radius: var(--gg-radius) !important;
}

.wa-float-btn {
    border-radius: 50% !important;
    width: 62px !important;
    height: 62px !important;
    padding: 0 !important;
    font-size: 34px !important;
    line-height: 1 !important;
}
.wa-float-btn i {
    font-size: 1em;
    line-height: 1;
    display: block;
}
@media (max-width: 767px) {
    .wa-float-btn {
        width: auto !important;
        height: auto !important;
        min-height: 48px;
        padding: 10px 16px 10px 12px !important;
        border-radius: 999px !important;
        font-size: 26px !important;
    }
}

/* ==========================================
   DETAIL PAGE CTA — tombol bisa diklik
   ========================================== */

/* Pseudo ripple theme menangkap klik di atas teks/link */
.btn::before,
.btn::after,
.icon-btn::before,
.icon-btn::after {
    pointer-events: none !important;
}

.detail-cta-actions {
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.detail-cta-actions .btn {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.product-thumb,
.service-details-thumb {
    overflow: hidden;
}

.product-thumb img,
.service-details-thumb img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(16rem, 40vw, 28rem);
    object-fit: cover;
    display: block;
}

/* --- Products listing page --- */
.products-page .products-grid .portfolio-card.style2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border: 1px solid var(--smoke-color2);
}
.products-page .products-grid .portfolio-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2vw, 1.35rem);
}
.products-page .products-grid .portfolio-card-thumb {
    position: relative;
    overflow: hidden;
}
.products-page .products-grid .portfolio-card-thumb a {
    display: block;
}
.products-page .products-grid .portfolio-card-thumb img {
    width: 100%;
    height: clamp(12rem, 28vw, 16rem);
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.products-page .products-grid .portfolio-card.style2:hover .portfolio-card-thumb img {
    transform: scale(1.04);
}
.products-page .products-grid .btn-with-icon {
    margin-top: auto;
}
.products-page .portofolio-card-text {
    margin-bottom: 1rem;
}
/* Pagination — Bootstrap, satu baris (bukan Tailwind default) */
.gg-pagination-wrap {
    margin-top: clamp(2rem, 5vw, 3.125rem);
    display: flex;
    justify-content: center;
    width: 100%;
}
.gg-pagination .pagination {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.gg-pagination .page-link {
    border-radius: 0;
    color: var(--title-color);
    border-color: var(--smoke-color2);
    padding: 0.45rem 0.85rem;
    min-width: 2.5rem;
    text-align: center;
    line-height: 1.25;
}
.gg-pagination .page-link:hover {
    color: var(--theme-color);
    background: rgba(234, 85, 1, 0.08);
    border-color: var(--theme-color);
}
.gg-pagination .page-item.active .page-link {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}
.gg-pagination .page-item.disabled .page-link {
    color: #94a3b8;
    background: #f8fafc;
}

/* Popup/overlay tertutup jangan blok klik halaman */
.mobile-menu-wrapper:not(.body-visible),
.sidemenu-wrapper:not(.show),
.popup-search-box:not(.show),
.wa-popup-overlay:not(.show) {
    pointer-events: none !important;
}

/* ==========================================
   CONTAINER GUARDRAILS — tighter left/right margins
   ========================================== */
.hero-wrapper .container,
.breadcumb-wrapper .container,
.space .container,
.space-top .container,
.space-bottom .container,
.footer-wrapper .container,
.copyright-wrap .container,
.category-filter-area .container,
.category-desc-area .container {
    width: 100%;
    max-width: min(88%, 1180px) !important;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1399px) {
    .hero-wrapper .container,
    .breadcumb-wrapper .container,
    .space .container,
    .space-top .container,
    .space-bottom .container,
    .footer-wrapper .container,
    .copyright-wrap .container,
    .category-filter-area .container,
    .category-desc-area .container {
        max-width: min(90%, 1080px) !important;
    }
}

@media (max-width: 991px) {
    .hero-wrapper .container,
    .breadcumb-wrapper .container,
    .space .container,
    .space-top .container,
    .space-bottom .container,
    .footer-wrapper .container,
    .copyright-wrap .container,
    .category-filter-area .container,
    .category-desc-area .container {
        max-width: 100% !important;
        padding-left: clamp(14px, 4vw, 24px);
        padding-right: clamp(14px, 4vw, 24px);
    }
}

/* Scroll-to-top: semantic button without default UA chrome */
button.scroll-top {
    border: none;
    padding: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

/* Hero: force left-aligned copy (wins over cached / theme rules) */
#gg-hero .gg-hero-slide__container .row {
    justify-content: flex-start !important;
}
#gg-hero .gg-hero-slide__container .gg-hero-copy {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

/* Contact section — social link row */
.gg-contact-social-card {
    display: block;
}
.gg-contact-social-card .contact-grid-details {
    width: 100%;
}
.gg-contact-social-hint {
    margin-bottom: 0.35rem;
    font-size: 0.9em;
    opacity: 0.75;
}
.gg-contact-social-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 5;
}
.gg-contact-social-links a,
.gg-contact-social-links .gg-social-link {
    flex: 0 0 auto;
    position: relative;
    z-index: 6;
    pointer-events: auto !important;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.gg-contact-social-links a i,
.gg-contact-social-links .gg-social-link i {
    pointer-events: none;
}

.checklist li i[class^="ri-"],
.checklist li i[class*=" ri-"] {
    color: var(--theme-color);
    flex-shrink: 0;
}
.about-area-2 .about-grid-wrap .icon i[class^="ri-"],
.about-area-2 .about-grid-wrap .icon i[class*=" ri-"] {
    font-size: 2rem;
    line-height: 80px;
    color: var(--theme-color);
    transition: 0.4s;
}
.about-area-2 .about-grid-wrap:hover .icon i[class^="ri-"],
.about-area-2 .about-grid-wrap:hover .icon i[class*=" ri-"] {
    color: #fff;
    transform: rotateY(180deg);
}
.about-area-2 .about-counter-wrap.style2 .about-counter-icon i[class^="ri-"],
.about-area-2 .about-counter-wrap.style2 .about-counter-icon i[class*=" ri-"] {
    font-size: 2rem;
    color: var(--theme-color);
}

/* ==========================================
   ERROR PAGES — 404, 403, 500, dll.
   ========================================== */
.gg-error-body {
    background: #f8fafc;
}
.gg-error-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.gg-error-bar__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    color: var(--title-color);
    font-weight: 700;
    text-decoration: none;
}
.gg-error-bar__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: var(--gg-radius);
    background: var(--theme-color);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}
.gg-error-page {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}
.gg-error-card {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.gg-error-card__visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(234, 85, 1, 0.22) 0%, transparent 42%),
        linear-gradient(160deg, #111827 0%, #1f2937 52%, #0f172a 100%);
}
.gg-error-card__code {
    position: relative;
    z-index: 1;
    font-family: var(--title-font);
    font-size: clamp(4.5rem, 14vw, 7.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.08);
}
.gg-error-card__icon {
    position: absolute;
    inset: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(4.5rem, 10vw, 6rem);
    height: clamp(4.5rem, 10vw, 6rem);
    border-radius: var(--gg-radius);
    background: var(--theme-color);
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    box-shadow: 0 14px 34px rgba(234, 85, 1, 0.35);
}
.gg-error-card__content {
    padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.75rem) 0;
}
.gg-error-card__eyebrow {
    margin-bottom: 0.75rem;
}
.gg-error-card__title {
    margin-bottom: 0.75rem;
}
.gg-error-card__message {
    margin: 0 0 0.65rem;
    max-width: 42rem;
    color: var(--body-color);
    font-size: clamp(0.98rem, 1.2vw, 1.05rem);
    line-height: 1.7;
}
.gg-error-card__hint {
    margin: 0 0 1.35rem;
    max-width: 42rem;
    color: rgba(15, 23, 42, 0.62);
    font-size: 0.92rem;
    line-height: 1.6;
}
.gg-error-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}
.gg-error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 46px;
    padding-inline: 1.15rem;
}
.gg-error-btn--ghost {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: var(--title-color);
}
.gg-error-btn--ghost:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.gg-error-links__label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.45);
}
.gg-error-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.gg-error-links__list a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.35rem 0.85rem;
    border-radius: var(--gg-radius);
    background: rgba(234, 85, 1, 0.08);
    color: var(--theme-color);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.gg-error-links__list a:hover {
    background: var(--theme-color);
    color: #fff;
}
.gg-error-footer .copyright-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gg-error-minimal-footer {
    padding: 1.25rem;
    text-align: center;
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.88rem;
}
@media (max-width: 991px) {
    .gg-error-card {
        grid-template-columns: 1fr;
    }
    .gg-error-card__visual {
        min-height: 220px;
    }
    .gg-error-card__content {
        padding: 0 1.25rem 1.75rem;
    }
}
@media (max-width: 575px) {
    .gg-error-card__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .gg-error-btn {
        justify-content: center;
        width: 100%;
    }
}

/* --- Accessibility: contrast & link distinguishability --- */
:root {
    --gg-accent-contrast: #c44701;
}

#gg-hero .gg-hero-btn--primary {
    background: var(--gg-accent-contrast);
    border-color: var(--gg-accent-contrast);
    color: #ffffff !important;
}
#gg-hero .gg-hero-btn--primary span {
    color: #ffffff !important;
}

.portfolio-card.style2 .portfolio-card-subtitle {
    background: var(--gg-accent-contrast);
    color: #ffffff;
}

.portfolio-card.style2 .portofolio-card-text,
.blog-card.style2 .blog-text {
    color: #4b5563;
    opacity: 1;
}

.blog-card.style2 .blog-meta a {
    color: #4b5563;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-card .blog-img .blog-date a {
    background: var(--gg-accent-contrast);
    color: #ffffff;
}

#home-cta-band .gg-cta-eyebrow__hl {
    background: var(--gg-accent-contrast);
    color: #ffffff;
}

#home-cta-band .gg-cta-wa-btn {
    background: var(--gg-accent-contrast);
    border-color: var(--gg-accent-contrast);
    color: #ffffff !important;
}

/* --- Footer layout (Construz 4-column, no newsletter) --- */
.footer-layout2 .widget-area {
    padding: 80px 0 40px;
}

.footer-layout2 .widget-about .footer-logo {
    margin-bottom: 28px;
}

.footer-layout2 .widget-about .footer-logo img {
    max-height: 42px;
    width: auto;
}

.footer-layout2 .widget-about .widget_title {
    margin-bottom: 24px;
    margin-top: 0;
}

.footer-layout2 .widget-about .about-text {
    max-width: 280px;
}

.footer-layout2 .widget-about .about-year {
    margin-top: 18px;
    color: var(--theme-color);
    -webkit-text-stroke: 0;
}

.footer-layout2 .widget-about .about-subtitle {
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-layout2 .footer-widget .widget_title:not(:first-child) {
    margin-top: 32px;
}

.footer-layout2 .footer-widget .footer-text {
    max-width: 240px;
}

.footer-layout2 .widget_nav_menu .grid-style {
    gap: 25px clamp(36px, 5vw, 72px);
}

.footer-layout2 .social-btn.style5 a.gg-social-link {
    display: inline-block;
    text-decoration: none;
}

.footer-layout2 .social-btn.style5 a.gg-social-link .visually-hidden {
    display: none;
}

.footer-layout2 .copyright-text .gg-footer-credit-wrap {
    display: inline-block;
    margin-top: 0.35rem;
}

@media (min-width: 1200px) {
    .footer-layout2 .widget-area > .row {
        --bs-gutter-x: 2rem;
    }
}

@media (min-width: 768px) {
    .footer-layout2 .copyright-text .gg-footer-credit-wrap {
        margin-top: 0;
        margin-left: 0.25rem;
    }
}

.footer-layout2 .copyright-text .gg-footer-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.footer-layout2 .copyright-text .gg-footer-credit {
    color: #ffb899;
}

.footer-layout2 .copyright-text .gg-footer-link:hover,
.footer-layout2 .copyright-text .gg-footer-credit:hover {
    color: var(--theme-color);
}

/* --- Blog detail (Construz layout) --- */
.blog-details .blog-single {
    margin-bottom: 0;
}
.blog-details .blog-single .blog-img img {
    min-height: clamp(16rem, 32vw, 28rem);
}
.blog-details .blog-single .blog-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-top: 1.25rem;
}
.blog-details .blog-single .blog-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--body-color);
}
.blog-details .gg-blog-content {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--body-color);
}
.blog-details .gg-blog-content > *:first-child {
    margin-top: 0;
}
.blog-details .gg-blog-content h2,
.blog-details .gg-blog-content h3,
.blog-details .gg-blog-content h4 {
    color: var(--title-color);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-family: var(--title-font);
}
.blog-details .gg-blog-content p {
    margin-bottom: 1rem;
}
.blog-details .gg-blog-content blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 1.75rem 1.5rem 1.5rem;
    border-left: 4px solid var(--theme-color);
    background: #f7f7f7;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--title-color);
}
.blog-details .gg-blog-content blockquote p:last-child {
    margin-bottom: 0;
}
.blog-details .gg-blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.25rem 0;
}
.blog-details .blog-tags-wrap {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 31, 31, 0.1);
}
.blog-details .blog-tags-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--title-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.blog-details .sidebar-area {
    position: sticky;
    top: 110px;
}
@media (max-width: 991px) {
    .blog-details .sidebar-area {
        position: static;
        top: auto;
    }
}

.blog-details .gg-blog-toc {
    margin: 1.75rem 0 2rem;
    padding: 1.35rem 1.5rem;
    background: var(--smoke-color);
    border-left: 4px solid var(--theme-color);
}
.blog-details .gg-blog-toc__title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--title-font);
}
.blog-details .gg-blog-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}
.blog-details .gg-blog-toc__item a {
    display: inline-block;
    color: var(--title-color);
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.blog-details .gg-blog-toc__item a:hover {
    color: var(--theme-color);
}
.blog-details .gg-blog-toc__item--h3 a {
    padding-left: 1rem;
    font-size: 0.94rem;
}
.blog-details .gg-blog-toc__item--h4 a {
    padding-left: 2rem;
    font-size: 0.9rem;
    color: var(--body-color);
}
.blog-details .gg-blog-content :is(h2, h3, h4) {
    scroll-margin-top: 110px;
}

/* --- Catalog pages (products & services) --- */
.gg-catalog-page.product-area-1 {
    padding-bottom: clamp(4rem, 8vw, 6rem);
}
.gg-catalog-page .sidebar-shop {
    position: sticky;
    top: 110px;
}
.gg-catalog-header .sec-title {
    margin-bottom: 0.5rem;
}
.gg-catalog-page .product-card .product-img img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    max-height: 220px;
}
.gg-catalog-page .product-card .product-category-label {
    display: block;
    color: var(--theme-color);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}
.gg-catalog-page .product-card .link-btn {
    display: inline-block;
    margin-top: 0.75rem;
}
.gg-catalog-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #94a3b8;
}
@media (max-width: 991px) {
    .gg-catalog-page .sidebar-shop {
        position: static;
        top: auto;
    }
}

/* --- Product detail (Construz shop layout, no price) --- */
.gg-product-detail .product-big-img {
    min-height: clamp(18rem, 40vw, 28rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}
.gg-product-detail .product-big-img .img img {
    width: 100%;
    max-height: clamp(16rem, 36vw, 26rem);
    object-fit: contain;
}
.gg-product-detail .product-thumb-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
}
.gg-product-detail .product-thumb-tab .tab-btn {
    border: 2px solid transparent;
    padding: 0;
    background: var(--smoke-color);
    cursor: pointer;
    width: 88px;
    height: 88px;
    overflow: hidden;
}
.gg-product-detail .product-thumb-tab .tab-btn.active,
.gg-product-detail .product-thumb-tab .tab-btn:hover {
    border-color: var(--theme-color);
}
.gg-product-detail .product-thumb-tab .tab-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gg-product-detail .product-about {
    padding-left: 0;
}
.gg-product-detail .gg-product-excerpt {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
}
.gg-product-detail .product-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--body-color);
}
.gg-product-detail .product-rating i {
    color: var(--theme-color);
    margin-right: 0.35rem;
}
.gg-product-detail .gg-btn-wa {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}
.gg-product-detail .gg-btn-wa:hover {
    background: #1fb855 !important;
    border-color: #1fb855 !important;
}
.gg-product-detail .product-tab-area .tab-pane {
    padding-top: 0.5rem;
    color: var(--body-color);
    line-height: 1.8;
}
.gg-product-detail .related-product-wrapper {
    padding-top: clamp(3rem, 6vw, 5rem);
}
.gg-product-detail .related-product-wrapper .product-card .product-img img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    max-height: 200px;
}

/* --- Blog listing --- */
.gg-blog-list .blog-card.style2 {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gg-blog-list .blog-card.style2 .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gg-blog-list .blog-card.style2 .blog-text {
    flex: 1;
}
.gg-blog-list .blog-card.style2 .btn.style2 {
    align-self: flex-start;
    margin-top: auto;
}
.gg-blog-list .blog-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.gg-blog-list__empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #94a3b8;
}
.gg-blog-list .gg-pagination .page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border: none;
    border-radius: 2px;
    color: var(--theme-color);
    font-weight: 500;
}
.gg-blog-list .gg-pagination .page-item.active .page-link,
.gg-blog-list .gg-pagination .page-link:hover {
    background: var(--theme-color);
    color: #fff;
}
.gg-blog-list .gg-pagination .page-link i {
    font-size: 1.2rem;
    line-height: 1;
}
