:root {
    --gs-navy: #122c36;
    --gs-navy-deep: #0b1f27;
    --gs-ink: #173b45;
    --gs-orange: #ff8225;
    --gs-orange-dark: #e56d12;
    --gs-burgundy: #b43f3f;
    --gs-cream: #f6f1ea;
    --gs-paper: #fbf8f4;
    --gs-white: #ffffff;
    --gs-muted: #5c6b72;
    --gs-line: rgba(23, 59, 69, 0.1);
    --gs-shadow: 0 18px 50px rgba(18, 44, 54, 0.1);
    --gs-shadow-sm: 0 8px 24px rgba(18, 44, 54, 0.07);
    --gs-radius: 18px;
    --gs-radius-sm: 12px;
    --gs-header-h: 86px;
    --primary-color: #b43f3f;
    --secondary-color: #ff8225;
    --dark-color: #173b45;
    --light-color: #f6f1ea;
    --extra-light-color: #fbf8f4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", "Poppins", system-ui, sans-serif;
    font-weight: 500;
    color: var(--gs-ink);
    background:
        radial-gradient(1200px 500px at 90% -10%, rgba(255, 130, 37, 0.08), transparent 50%),
        radial-gradient(900px 400px at -10% 20%, rgba(180, 63, 63, 0.06), transparent 45%),
        var(--gs-paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gs-ink);
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 2000;
    background: var(--gs-orange);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
}
.skip-link:focus {
    top: 12px;
    color: #fff;
}

/* Header */
.gs-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(18, 44, 54, 0.08);
}

.gs-topbar {
    background: var(--gs-navy-deep);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    padding: 8px 0;
}
.gs-topbar a {
    color: rgba(255, 255, 255, 0.82);
}
.gs-topbar a:hover {
    color: #fff;
}
.gs-topbar .gs-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 18px;
}
.gs-topbar i {
    color: var(--gs-orange);
}
.gs-topbar .gs-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-left: 6px;
}
.gs-topbar .gs-social a:hover {
    background: var(--gs-orange);
    color: #fff;
}

.gs-header .navbar {
    height: auto !important;
    min-height: var(--gs-header-h);
    padding: 12px 0;
    background: transparent !important;
    box-shadow: none;
}
.gs-header .navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 28px;
}
.gs-header .brand-name {
    background: none;
    -webkit-text-fill-color: inherit;
    margin-right: 0;
}
.gs-header .brand-name img {
    width: auto;
    max-width: 196px;
    height: 46px;
    object-fit: contain;
}
.gs-header .brand-subtitle {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gs-muted);
    font-weight: 600;
    margin-top: 2px;
}
.gs-header .navbar-toggler {
    border: 0;
    padding: 0;
    box-shadow: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 2010;
}
.gs-header .navbar-toggler:focus {
    box-shadow: none;
}
.gs-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--gs-navy);
    border-radius: 99px;
    transition: transform .28s ease, opacity .2s ease;
}
.gs-menu-toggle span + span {
    margin-top: 5px;
}
body.gs-menu-open .gs-menu-toggle {
    background: #fff;
    border-radius: 12px;
}
body.gs-menu-open .gs-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.gs-menu-open .gs-menu-toggle span:nth-child(2) {
    opacity: 0;
}
body.gs-menu-open .gs-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.gs-header .navbar-nav.row {
    flex-wrap: nowrap;
    margin: 0;
    --bs-gutter-x: 0;
}
.gs-header .nav-item {
    border-right: 0 !important;
    width: auto;
    padding: 0;
    flex: 0 0 auto;
    max-width: none;
}
.gs-header .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 14px !important;
    color: var(--gs-ink);
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 10px;
    white-space: nowrap;
    text-align: left;
    background: transparent !important;
}
.gs-header .nav-link i {
    display: none;
    margin: 0;
    font-size: 14px;
    color: var(--gs-orange);
}
.gs-header .nav-link span {
    display: inline;
    font-size: inherit;
    font-weight: 600;
}
.gs-header .nav-link span:last-of-type:not(:first-of-type) {
    display: none;
}
.gs-header .nav-link:hover,
.gs-header .nav-link:focus,
.gs-header .nav-item.dropdown:hover > .nav-link {
    color: var(--gs-orange);
    background: rgba(255, 130, 37, 0.08) !important;
}
.gs-header .dropdown-menu {
    border: 1px solid var(--gs-line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--gs-shadow);
    margin-top: 8px;
}
.gs-header .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 500;
    transform: none;
}
.gs-header .dropdown-item:hover {
    transform: none;
    background: rgba(255, 130, 37, 0.1);
}

.gs-header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 700;
    padding: 11px 18px;
    border: 0;
    line-height: 1.2;
}
.gs-btn-ghost {
    background: rgba(23, 59, 69, 0.06);
    color: var(--gs-ink);
}
.gs-btn-ghost:hover {
    background: rgba(23, 59, 69, 0.1);
    color: var(--gs-ink);
}
.gs-btn-primary,
.btn-primary {
    background: linear-gradient(180deg, var(--gs-orange) 0%, var(--gs-orange-dark) 100%);
    border-color: var(--gs-orange-dark);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    padding: 12px 22px;
    box-shadow: 0 10px 22px rgba(255, 130, 37, 0.28);
}
.gs-btn-primary:hover,
.btn-primary:hover {
    background: var(--gs-navy);
    border-color: var(--gs-navy);
    color: #fff !important;
    transform: translateY(-1px);
}
.gs-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 700;
}
.gs-btn-outline:hover {
    background: #fff;
    color: var(--gs-navy);
}

/* Mobile nav — full-screen drawer from left */
@media (max-width: 991.98px) {
    body.gs-menu-open {
        overflow: hidden;
    }
    .gs-header .navbar-collapse.collapse {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        max-height: none;
        background: #fff;
        z-index: 2000;
        padding: 18px 18px 0;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        box-shadow: none;
        border: 0;
    }
    html.gs-nav-ready .gs-header .navbar-collapse.collapse {
        transition: transform .38s cubic-bezier(.22,.8,.3,1), visibility 0s linear .38s, opacity .2s ease;
    }
    body.gs-menu-open .gs-header .navbar-collapse.collapse {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: transform .38s cubic-bezier(.22,.8,.3,1), visibility 0s, opacity .2s ease;
    }
    .gs-drawer-top {
        display: flex;
        align-items: center;
        padding: 6px 52px 14px 0;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--gs-line);
    }
    .gs-drawer-brand img {
        height: 36px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }
    .gs-header .navbar-nav {
        flex-direction: column !important;
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 8px 0 10px;
        background: transparent;
        gap: 4px;
    }
    .gs-header .nav-item,
    .gs-header .navbar-collapse.show .nav-item {
        width: 100%;
        float: none;
        padding: 0;
        border-bottom: 0;
    }
    .gs-header .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        background: var(--gs-paper) !important;
        border: 0;
        border-radius: 12px;
        margin-bottom: 0;
        padding: 9px 12px !important;
        font-size: 14.5px;
        font-weight: 650;
        color: var(--gs-navy);
        gap: 10px;
        min-height: 44px;
    }
    .gs-header .nav-link:hover,
    .gs-header .nav-link:focus,
    .gs-header .nav-item.dropdown:hover > .nav-link {
        background: rgba(255, 130, 37, 0.1) !important;
        color: var(--gs-navy);
    }
    .gs-header .nav-link i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        border-radius: 8px;
        background: #fff;
        color: var(--gs-orange);
        font-size: 12px;
        box-shadow: 0 1px 2px rgba(18, 44, 54, 0.06);
        margin: 0;
    }
    .gs-header .nav-link.dropdown-toggle::after {
        margin-left: auto;
        border-top-width: 5px;
        opacity: .45;
    }
    .gs-header .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 4px 0 2px 38px;
        display: none;
        margin: 0;
    }
    .gs-header .dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 500;
        color: var(--gs-muted);
        border-radius: 10px;
        background: transparent;
        min-height: 38px;
    }
    .gs-header .dropdown-item:hover,
    .gs-header .dropdown-item:focus {
        background: var(--gs-paper);
        color: var(--gs-navy);
    }
    .gs-header .dropdown-item i {
        display: inline-flex;
        width: 16px;
        color: var(--gs-orange);
        font-size: 11px;
        opacity: .85;
    }
    .gs-header .dropdown.show .dropdown-menu,
    .gs-header .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    .gs-header-cta {
        width: 100%;
        margin: 0;
        padding: 8px 0 0;
        flex-shrink: 0;
        gap: 8px;
    }
    .gs-header-cta .gs-btn {
        flex: 1;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        box-shadow: none;
        min-height: 40px;
    }
    .gs-header-cta .gs-btn-ghost {
        background: transparent;
        border: 1px solid var(--gs-line);
    }
    .gs-drawer-bottom {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        width: 100%;
        padding: 4px 0 calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--gs-line);
        background: #fff;
    }
    .gs-drawer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        padding: 14px 4px;
        color: inherit;
        text-decoration: none;
        background: transparent;
        border-radius: 0;
        min-height: 0;
        height: auto;
    }
    .gs-drawer-contact + .gs-drawer-contact {
        border-top: 1px solid var(--gs-line);
    }
    .gs-drawer-contact__label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--gs-muted);
    }
    .gs-drawer-contact__row {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .gs-drawer-contact__icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        flex-shrink: 0;
    }
    .gs-drawer-contact__value {
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }
    .gs-drawer-call .gs-drawer-contact__icon {
        background: var(--gs-orange);
    }
    .gs-drawer-call .gs-drawer-contact__value {
        color: var(--gs-orange);
    }
    .gs-drawer-wa .gs-drawer-contact__icon {
        background: #25d366;
    }
    .gs-drawer-wa .gs-drawer-contact__value {
        color: #128c7e;
    }
    .gs-drawer-bottom i {
        font-size: inherit;
        width: auto;
        height: auto;
        background: none;
        border-radius: 0;
        color: inherit;
    }
    body.gs-menu-open .mobile-fixed-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate(-50%, 30px) !important;
    }
}

.gs-drawer-top,
.gs-drawer-bottom {
    display: none;
}
@media (max-width: 991.98px) {
    .gs-drawer-top,
    .gs-drawer-bottom {
        display: flex;
    }
}

.mobile-fixed-menu {
    bottom: 14px;
    background: rgba(11, 31, 39, 0.94);
    box-shadow: 0 16px 40px rgba(11, 31, 39, 0.35);
    border-radius: 22px;
    padding: 8px 10px;
    backdrop-filter: blur(16px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.mobile-fixed-menu .nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: .68rem !important;
    font-weight: 600;
    background: transparent !important;
}
.mobile-fixed-menu .nav-link i {
    font-size: 1.15rem;
    margin-bottom: 3px;
}
.mobile-fixed-menu .nav-link.home-link {
    background: linear-gradient(180deg, var(--gs-orange), var(--gs-orange-dark)) !important;
    color: #fff !important;
    border-radius: 16px;
    border: 0;
    top: 0;
    box-shadow: 0 8px 18px rgba(255, 130, 37, 0.35);
}
.mobile-fixed-menu .nav-link:not(.home-link):hover {
    color: #fff !important;
}

/* Hero / slider */
.gs-hero {
    padding: 28px 0 8px;
}
.gs-hero .swiper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--gs-shadow);
    background: transparent;
    height: auto;
}
.gs-hero .swiper-wrapper,
.gs-hero .swiper-slide,
.gs-hero .swiper-slide a {
    height: auto !important;
}
.gs-hero .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block;
}
.gs-hero .swiper-button-next,
.gs-hero .swiper-button-prev {
    background: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--gs-navy);
    box-shadow: var(--gs-shadow-sm);
}
.gs-hero .swiper-pagination-bullet-active {
    background: var(--gs-orange);
    width: 22px;
}

/* Sections */
.gs-section {
    padding: 64px 0;
}
.gs-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}
.gs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gs-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gs-section-head h2,
.section-heading {
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    font-weight: 800;
    color: var(--gs-navy);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.gs-section-head p {
    color: var(--gs-muted);
    margin: 0;
}
.gs-divider,
hr.divider {
    width: 64px;
    height: 4px;
    border: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gs-orange), var(--gs-burgundy));
    opacity: 1;
    margin: 0 auto 28px;
}

/* About */
.gs-about {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--gs-shadow-sm);
}
.gs-about .top-title {
    color: var(--gs-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.gs-about .sub-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gs-navy);
    line-height: 1.2;
}
.gs-about .desc p {
    color: var(--gs-muted);
    font-size: 1.05rem;
}
.gs-about .button a {
    background: linear-gradient(180deg, var(--gs-orange), var(--gs-orange-dark));
    color: #fff;
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(255, 130, 37, 0.28);
}
.gs-about .picture {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--gs-shadow);
}
.gs-about .icons {
    margin-top: -36px;
}
.gs-about .icon {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 16px;
    padding: 18px 12px;
}
.gs-about .icon i {
    color: var(--gs-orange);
}

/* Features */
.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 18px;
    padding: 22px 16px 18px;
    height: 100%;
    margin: 0;
    box-shadow: var(--gs-shadow-sm);
    overflow: hidden;
}
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--gs-shadow);
    border-color: transparent;
}
.feature-box__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 130, 37, 0.12);
    color: var(--gs-orange);
    margin-bottom: 12px;
    flex-shrink: 0;
}
.feature-box__icon i,
.feature-box i {
    background: transparent !important;
    color: var(--gs-orange) !important;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1;
    transform: none !important;
    border-radius: 0;
}
.feature-box:hover i {
    background: transparent !important;
    color: var(--gs-orange) !important;
    transform: none !important;
}
.feature-title {
    color: var(--gs-navy);
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.feature-box p {
    margin: 8px 0 0;
    color: var(--gs-muted);
    font-size: 13px;
}

/* Services */
.gs-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 20px;
    overflow: hidden;
    color: inherit;
    box-shadow: 0 8px 24px rgba(18, 44, 54, 0.05);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.gs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(18, 44, 54, 0.12);
    border-color: transparent;
    color: inherit;
}
.gs-service-card__media {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--gs-navy);
}
.gs-service-card__media--sm {
    height: 200px;
}
.gs-service-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(11, 31, 39, 0.28) 100%);
    pointer-events: none;
}
.gs-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.gs-service-card:hover .gs-service-card__media img {
    transform: scale(1.06);
}
.gs-service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
    background: #fff;
    position: relative;
}
.gs-service-card__body h2,
.gs-service-card__body h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gs-navy);
    line-height: 1.3;
}
.gs-service-card__body p {
    margin: 0 0 16px;
    color: var(--gs-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 500;
}
.gs-service-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gs-orange);
    font-weight: 700;
    font-size: 0.92rem;
}
.gs-service-card__cta i {
    font-size: 12px;
    transition: transform .25s ease;
}
.gs-service-card:hover .gs-service-card__cta i {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .gs-service-card__media,
    .gs-service-card__media--sm {
        height: 200px;
    }
    .gs-service-card__body {
        padding: 16px;
    }
}

.service-card {
    border-radius: 22px;
    box-shadow: var(--gs-shadow-sm);
    border: 1px solid var(--gs-line);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gs-shadow);
}
.service-image {
    height: 280px;
}
.service-content {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
}
.service-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.service-link {
    background: var(--gs-navy);
}
.service-link:hover {
    background: var(--gs-orange);
    transform: none;
}
@media (max-width: 768px) {
    .service-image {
        height: 220px !important;
    }
}

/* Testimonials */
.gs-testimonials .card {
    border-radius: 20px;
    border: 1px solid var(--gs-line);
    height: 100%;
    background: #fff;
}
.gs-testimonials .card-body {
    padding: 28px !important;
}
.gs-testimonials .customer-name {
    color: var(--gs-navy);
    font-weight: 800;
}
.gs-quote {
    color: var(--gs-orange);
    font-size: 28px;
    margin-bottom: 8px;
}

/* Logos */
.logo-slider {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 20px 0 50px;
}
.logo-slide {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 16px;
    min-height: 92px;
}
.logo-slide img {
    max-height: 52px;
}

/* CTA band */
.gs-cta {
    background:
        linear-gradient(120deg, rgba(11, 31, 39, 0.92), rgba(180, 63, 63, 0.78)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: #fff;
    border-radius: 28px;
    padding: 48px 36px;
    text-align: center;
    margin: 20px 0 10px;
}
.gs-cta h2 {
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.gs-cta p {
    opacity: .88;
    max-width: 560px;
    margin: 0 auto 22px;
}

/* Page hero */
.gs-page-hero {
    background: linear-gradient(180deg, #f4efe8 0%, var(--gs-paper) 100%);
    color: var(--gs-navy);
    padding: 16px 0 14px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gs-line);
}
.gs-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(380px 80px at 6% 0%, rgba(255, 130, 37, 0.08), transparent 70%);
    pointer-events: none;
}
.gs-page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: auto;
    background: linear-gradient(90deg, var(--gs-orange), transparent 38%);
    opacity: .5;
    border-radius: 0;
    top: auto;
}
.gs-page-hero h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.25;
    margin: 0;
    color: var(--gs-navy);
    position: relative;
    z-index: 1;
}
.gs-page-hero p {
    color: var(--gs-muted);
    font-size: 13px;
    font-weight: 500;
    opacity: 1;
    max-width: 480px;
    margin: 3px 0 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gs-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    font-size: 12px;
    position: relative;
    z-index: 1;
}
.gs-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gs-muted);
}
.gs-breadcrumb li:not(:last-child)::after {
    content: "/";
    opacity: .45;
}
.gs-breadcrumb a {
    color: var(--gs-muted);
}
.gs-breadcrumb a:hover {
    color: var(--gs-orange);
}
.gs-contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.gs-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    color: var(--gs-navy);
    background: #fff;
    border: 1px solid var(--gs-line);
}
.gs-contact-chip:hover {
    color: var(--gs-navy);
    border-color: rgba(255, 130, 37, 0.45);
}
.gs-contact-chip--wa {
    background: #eef8f1;
    color: #177a45;
    border-color: rgba(37, 211, 102, 0.28);
}
.gs-contact-chip--wa:hover {
    color: #146c3c;
}

/* Footer */
footer {
    background: var(--gs-navy-deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0 28px;
    margin-top: 72px;
    position: relative;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gs-orange), var(--gs-burgundy), var(--gs-orange));
}
footer .footer-heading {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 16px;
}
footer ul li a {
    color: rgba(255, 255, 255, 0.72);
}
footer ul li a:hover {
    color: var(--gs-orange);
}
footer .footer-logo img {
    width: 180px;
    max-height: 56px;
    object-fit: contain;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
}
.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}
.gs-footer-about p {
    font-size: 14.5px;
    line-height: 1.7;
}
.social-links .social-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
}
.social-links .social-icon:hover {
    background: var(--gs-orange);
    color: #fff;
}

.gs-float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1040;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.gs-float-wa:hover {
    transform: translateY(-3px) scale(1.04);
    color: #fff !important;
}
@media (max-width: 991.98px) {
    .gs-float-wa {
        bottom: 92px;
        right: 14px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Contact / content cards */
.contact-section {
    padding: 0 0 60px;
    background: transparent;
}
.contact-card,
.content-area .card,
.sidebar-services .card {
    border-radius: 20px !important;
    box-shadow: var(--gs-shadow-sm) !important;
    border: 1px solid var(--gs-line) !important;
}
.contact-card:hover {
    transform: none;
}
.contact-card .card-body {
    background: #fff !important;
}
.contact-card .card-title {
    color: var(--gs-navy);
    font-size: 1.45rem;
}
.contact-card .card-header,
.sidebar-services .card-header {
    background: var(--gs-navy) !important;
    color: #fff;
}
.card-header.bg-light {
    background: #f3f5f6 !important;
    color: var(--gs-navy) !important;
}
.card-header.bg-light h6,
.card-header.bg-light .mb-0 {
    color: var(--gs-navy) !important;
}
.card-header.bg-primary {
    background: var(--gs-navy) !important;
    color: #fff !important;
}
.card-header.bg-primary .card-title,
.card-header.bg-primary h1,
.card-header.bg-primary h2,
.card-header.bg-primary h5 {
    color: #fff !important;
}
.form-control, .form-control:focus {
    height: auto;
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid var(--gs-line);
    background: #fff;
}
textarea.form-control {
    min-height: 140px;
}
.contact-info-item {
    background: var(--gs-paper);
    border-left-color: var(--gs-orange);
}

.gs-contact-panel,
.gs-contact-aside__card {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 20px;
    box-shadow: var(--gs-shadow-sm);
    padding: 28px 28px 26px;
}
.gs-contact-eyebrow {
    display: inline-block;
    color: var(--gs-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.gs-contact-panel__intro h2,
.gs-contact-aside__card h2 {
    font-size: 1.35rem !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gs-navy);
    margin: 0 0 6px;
    line-height: 1.3;
}
.gs-contact-panel__intro p,
.gs-contact-aside__card > p {
    color: var(--gs-muted);
    font-size: 14px;
    margin: 0 0 22px;
    line-height: 1.5;
}
.gs-contact-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gs-navy);
    margin-bottom: 6px;
}
.gs-contact-field {
    position: relative;
}
.gs-contact-field > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gs-muted);
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
}
.gs-contact-field--area > i {
    top: 16px;
    transform: none;
}
.gs-contact-field .form-control {
    height: auto;
    min-height: 48px;
    padding: 12px 14px 12px 40px;
    border: 1px solid var(--gs-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    font-size: 14.5px;
}
.gs-contact-field .form-control:focus {
    border-color: rgba(255, 130, 37, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 130, 37, 0.12);
}
.gs-contact-field--area .form-control {
    min-height: 140px;
    resize: vertical;
}
.gs-contact-submit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 18px;
}
.gs-contact-hint {
    font-size: 12px;
    color: var(--gs-muted);
}
.gs-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gs-contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.gs-contact-list li {
    margin: 0;
}
.gs-contact-list li + li {
    border-top: 1px solid var(--gs-line);
}
.gs-contact-list li > div,
.gs-contact-list li > a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
}
.gs-contact-list li > a:hover .gs-contact-list__icon {
    background: var(--gs-orange);
    color: #fff;
}
.gs-contact-list li > div > span:last-child,
.gs-contact-list li > a > span:last-child {
    display: block;
    min-width: 0;
}
.gs-contact-list__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 130, 37, 0.12);
    color: var(--gs-orange);
    font-size: 14px;
}
.gs-contact-list small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gs-muted);
    margin-bottom: 2px;
}
.gs-contact-list strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gs-navy);
    line-height: 1.4;
}
.gs-contact-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #eef8f1;
    border: 1px solid rgba(37, 211, 102, 0.28);
    color: #146c3c;
    text-decoration: none;
}
.gs-contact-wa:hover {
    color: #146c3c;
    background: #e3f6ea;
}
.gs-contact-wa > i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.gs-contact-wa small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .8;
}
.gs-contact-wa strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
}
.gs-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.gs-contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gs-paper);
    color: var(--gs-navy);
    border: 1px solid var(--gs-line);
}
.gs-contact-social a:hover {
    background: var(--gs-orange);
    border-color: var(--gs-orange);
    color: #fff;
}
.gs-contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gs-line);
    background: #fff;
    min-height: 220px;
}
.gs-contact-map iframe,
.gs-contact-map > * {
    display: block;
    width: 100% !important;
    min-height: 220px;
    border: 0 !important;
}

@media (max-width: 767.98px) {
    .gs-contact-panel,
    .gs-contact-aside__card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .gs-contact-submit .gs-btn {
        width: 100%;
    }
}

/* Login */
.login-section {
    background: transparent;
    padding: 28px 0 60px;
}
.login-card {
    border-radius: 24px;
    box-shadow: var(--gs-shadow);
}
.login-header {
    background: linear-gradient(135deg, var(--gs-navy-deep), #1f5363);
}

/* 404 */
.gs-404 {
    text-align: center;
    padding: 70px 16px 40px;
}
.gs-404 .code {
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    background: linear-gradient(180deg, var(--gs-orange), var(--gs-burgundy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Profile / misc */
.profile-section {
    background: transparent;
}
.profile-card {
    border: 1px solid var(--gs-line);
    box-shadow: var(--gs-shadow-sm);
}

.referance-card {
    height: 100%;
}
.referance-logo {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 16px;
    box-shadow: var(--gs-shadow-sm);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.referance-card:hover .referance-logo {
    transform: translateY(-3px);
    box-shadow: var(--gs-shadow);
}
.referance-logo .logo-wrapper {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px 10px;
}
.referance-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .75;
    transition: .3s ease;
}
.referance-card:hover .referance-logo img {
    filter: none;
    opacity: 1;
}
.referance-name {
    margin: 0;
    padding: 0 10px 12px;
    text-align: center;
}
.referance-name p,
.referance-name__title,
.referance-name__sector {
    margin: 0;
}
.referance-name__title {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gs-navy);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.referance-name__sector {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--gs-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.package-card {
    border: 1px solid var(--gs-line);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gs-shadow);
}
.package-header.bg-primary,
.package-header {
    background: var(--gs-navy) !important;
}
.content-area .card-body {
    background: #fff !important;
}
.content-area .card-text {
    font-size: 1.05rem;
    color: var(--gs-ink);
}
.content-area .card-text img {
    border-radius: 14px;
    margin: 12px 0;
}
.content-area .card-text h2,
.content-area .card-text h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gs-navy);
    margin-top: 1.4em;
}

@media (max-width: 767.98px) {
    .gs-about {
        padding: 22px;
        border-radius: 20px;
    }
    .gs-cta {
        padding: 32px 20px;
        border-radius: 20px;
    }
    .gs-section {
        padding: 44px 0;
    }
    .gs-features .feature-box {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 10px;
        padding: 12px 12px;
        border-radius: 14px;
        min-height: 74px;
        box-shadow: 0 4px 14px rgba(18, 44, 54, 0.05);
    }
    .gs-features .feature-box:hover {
        transform: none;
    }
    .gs-features .feature-box__icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 0;
    }
    .gs-features .feature-box__icon i {
        font-size: 14px;
    }
    .gs-features .feature-title {
        font-size: 12.5px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .gs-features .feature-box p {
        display: none;
    }
    body {
        padding-bottom: 110px;
    }
    .gs-header .brand-subtitle {
        display: none;
    }
    .gs-page-hero {
        padding: 12px 0 10px;
        margin-bottom: 14px;
    }
    .gs-page-hero h1 {
        font-size: 1.08rem;
    }
    .gs-page-hero p {
        font-size: 12px;
    }
    .gs-contact-hero-actions {
        margin-top: 8px;
    }
    .referance-logo {
        border-radius: 12px;
    }
    .referance-logo .logo-wrapper {
        height: 72px !important;
        padding: 10px 8px 6px;
    }
    .referance-name {
        padding: 0 6px 8px;
    }
    .referance-name__title {
        font-size: 11px;
        font-weight: 650;
        -webkit-line-clamp: 1;
        white-space: nowrap;
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .referance-name__sector {
        display: none;
    }
    .referance-card:hover .referance-logo {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    html:not(.gs-nav-ready) #navbarContent.collapse {
        visibility: hidden !important;
        transform: translateX(-100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
