/* =========================================================
   BALI NUSA MEDIA
   CLEAN FINAL GLOBAL CSS
   Internet | CCTV | Website | Toko
   ========================================================= */


/* =========================================================
   1. BRAND VARIABLES
   ========================================================= */

:root {
    --ink: #0B132B;
    --ink-soft: #3A4766;

    --paper: #FFFFFF;
    --sand: #F4F6FC;

    --blue: #0052CC;
    --blue-hover: #003D99;

    --purple: #6B21A8;

    --gradient-brand:
        linear-gradient(
            135deg,
            #0052CC 0%,
            #6B21A8 100%
        );

    --line: rgba(11, 19, 43, 0.08);

    --radius: 14px;

    --shadow:
        0 10px 30px rgba(11, 19, 43, 0.06);

    --shadow-hover:
        0 15px 35px rgba(11, 19, 43, 0.12);

    --maxw: 1180px;
    --page-space: 24px;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-width: 320px;

    overflow-x: hidden;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: var(--paper);
    color: var(--ink);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   3. GLOBAL CONTAINER
   ========================================================= */

.hub-container {
    width: min(
        calc(100% - (var(--page-space) * 2)),
        var(--maxw)
    );

    max-width: var(--maxw);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-wrapper {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 72px;
}


/* LOGO */

.logo-link {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    width: 170px;
    max-width: 170px;

    text-decoration: none;
}

.logo-link img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 68px;

    object-fit: contain;
}


/* DESKTOP NAV */

.site-nav {
    display: flex;

    align-items: center;

    gap: 24px;

    margin-left: auto;
}

.site-nav > a {
    white-space: nowrap;
}

.site-nav > a:not(.btn-cta),
.nav-dropdown-toggle {
    color: var(--ink);

    font-size: 0.9rem;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.site-nav > a:not(.btn-cta):hover,
.nav-dropdown-toggle:hover {
    color: var(--blue);
}


/* DROPDOWN */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 0;

    background: transparent;

    border: 0;

    cursor: pointer;
}

.nav-arrow {
    font-size: 0.75rem;

    transition:
        transform 0.2s ease;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.is-open .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 15px);
    left: 50%;

    width: 280px;

    padding: 9px;

    background: #FFFFFF;

    border:
        1px solid var(--line);

    border-radius: 12px;

    box-shadow:
        0 15px 35px
        rgba(11, 19, 43, 0.12);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(-6px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}

.nav-dropdown-menu a {
    display: block;

    padding: 12px 13px;

    border-radius: 8px;

    text-decoration: none;

    transition:
        background 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--sand);
}

.nav-dropdown-menu strong {
    display: block;

    margin-bottom: 3px;

    color: var(--ink);

    font-size: 0.9rem;

    line-height: 1.3;
}

.nav-dropdown-menu span {
    display: block;

    color: var(--ink-soft);

    font-size: 0.76rem;

    line-height: 1.4;
}


/* MOBILE HAMBURGER */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    padding: 0;

    background: transparent;

    border: 0;

    cursor: pointer;
}

.hamburger-icon {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    width: 24px;
    height: 24px;
}

.hamburger-icon span {
    display: block;

    width: 22px;
    height: 2px;

    background: var(--ink);

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-toggle[aria-expanded="true"]
.hamburger-icon span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"]
.hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"]
.hamburger-icon span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   5. CTA BUTTON
   ========================================================= */

.btn-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 11px 22px;

    background: var(--gradient-brand);

    color: #FFFFFF;

    border: 0;
    border-radius: 8px;

    font-size: 0.94rem;
    font-weight: 700;

    line-height: 1.2;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 4px 12px
        rgba(0, 82, 204, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.btn-cta:hover {
    color: #FFFFFF;

    transform: translateY(-2px);

    opacity: 0.96;

    box-shadow:
        0 8px 20px
        rgba(0, 82, 204, 0.25);
}


/* =========================================================
   6. HOMEPAGE HERO
   ========================================================= */

.hero-hub {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 64px;

    padding:
        76px 0
        82px;
}

.hero-text {
    min-width: 0;
}

.eyebrow {
    margin-bottom: 12px;

    color: var(--blue);

    font-size: 0.80rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.hero-text h1 {
    max-width: 620px;

    margin-bottom: 22px;

    color: var(--ink);

    font-size: clamp(
        2.3rem,
        4vw,
        3.15rem
    );

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -0.035em;
}

.hero-text h1 span {
    display: inline;

    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-text > p:not(.eyebrow) {
    max-width: 600px;

    margin-bottom: 0;

    color: var(--ink-soft);

    font-size: 1.04rem;

    line-height: 1.75;
}

.hero-image {
    width: 100%;

    min-width: 0;
}

.hero-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 16 / 10;

    border-radius: var(--radius);

    object-fit: cover;

    box-shadow: var(--shadow);
}


/* =========================================================
   7. HOMEPAGE SERVICES
   ========================================================= */

.services-section {
    padding:
        50px 0
        90px;
}

.section-title {
    max-width: 800px;

    margin:
        0 auto
        42px;

    text-align: center;
}

.section-title h2 {
    color: var(--ink);

    font-size: clamp(
        1.75rem,
        3vw,
        2.25rem
    );

    font-weight: 750;

    line-height: 1.25;
}

.section-title > p:last-child {
    max-width: 750px;

    margin:
        15px auto 0;

    color: var(--ink-soft);

    line-height: 1.7;
}

.grid-services {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}


/* SERVICE CARD */

.card-service {
    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: var(--paper);

    border:
        1px solid var(--line);

    border-radius: var(--radius);

    box-shadow:
        0 4px 15px
        rgba(11, 19, 43, 0.03);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.card-service:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0, 82, 204, 0.35);

    box-shadow: var(--shadow-hover);
}


/* SERVICE IMAGE */

.card-image-wrapper,
.service-image-wrapper {
    width: 100%;

    height: 205px;

    overflow: hidden;

    background: #FFFFFF;
}

.card-image-wrapper img,
.service-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.card-service:hover .card-image-wrapper img,
.card-service:hover .service-image-wrapper img {
    transform: scale(1.04);
}


/* SERVICE CONTENT */

.card-content {
    display: flex;

    flex-direction: column;

    flex-grow: 1;

    padding:
        25px 25px
        18px;
}

.card-service h3 {
    margin-bottom: 10px;

    color: var(--ink);

    font-size: 1.25rem;

    font-weight: 750;

    line-height: 1.3;
}

.card-service p {
    margin: 0;

    color: var(--ink-soft);

    font-size: 0.93rem;

    line-height: 1.65;
}


/* SERVICE BUTTON */

.card-service .btn-card {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    margin:
        auto 25px
        25px;

    padding:
        11px 16px;

    background: var(--sand);

    color: var(--ink);

    border-radius: 8px;

    font-size: 0.91rem;

    font-weight: 700;

    text-align: center;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-service .btn-card:hover {
    background: var(--gradient-brand);

    color: #FFFFFF;

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px
        rgba(0, 82, 204, 0.18);
}


/* =========================================================
   8. LOCAL SECTION
   ========================================================= */

.local-section {
    padding:
        35px 0
        75px;
}

.local-section .section-title {
    max-width: 800px;

    margin-left: auto;
    margin-right: auto;
}

.local-section .section-title p:last-child {
    line-height: 1.75;
}


/* =========================================================
   9. CTA SECTION
   ========================================================= */

.cta-section {
    position: relative;

    width: 100%;

    margin:
        0 0
        85px;

    padding:
        68px 40px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0052CC 0%,
            #312E81 50%,
            #6B21A8 100%
        );

    border-radius: 18px;

    color: #FFFFFF;

    text-align: center;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.15);
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -170px;
    right: -100px;

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -130px;
    left: -80px;

    background:
        rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    pointer-events: none;
}

.cta-section h2 {
    position: relative;
    z-index: 2;

    width: 100%;

    margin:
        0 0 15px;

    color: #FFFFFF;

    font-size: clamp(
        1.8rem,
        3vw,
        2.35rem
    );

    font-weight: 800;

    line-height: 1.25;
}

.cta-section p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin:
        0 auto 28px;

    color:
        rgba(255, 255, 255, 0.92);

    font-size: 1.02rem;

    line-height: 1.65;
}

.cta-section .btn-cta {
    position: relative;
    z-index: 2;

    background: #FFFFFF;

    color: var(--blue);

    border: none;

    box-shadow:
        0 7px 20px
        rgba(0, 0, 0, 0.15);
}

.cta-section .btn-cta:hover {
    background: #F5F7FF;

    color: var(--blue-hover);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.20);
}


/* =========================================================
   10. SERVICE DETAIL PAGES
   ========================================================= */

.service-page {
    padding-top: 20px;
}

.service-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 60px;

    padding:
        70px 0
        80px;
}

.service-hero-text h1 {
    max-width: 650px;

    margin-bottom: 20px;

    color: var(--ink);

    font-size: clamp(
        2.35rem,
        4vw,
        3.1rem
    );

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.03em;
}

.service-hero-text > p:not(.eyebrow) {
    max-width: 620px;

    margin-bottom: 28px;

    color: var(--ink-soft);

    font-size: 1.05rem;

    line-height: 1.75;
}

.service-hero-image {
    width: 100%;
}

.service-hero-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.service-section {
    padding:
        45px 0
        80px;
}

.service-section-soft {
    padding:
        70px 0;

    background: var(--sand);
}


/* SERVICE INFO CARDS */

.service-grid-3 {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 22px;
}

.service-grid-2 {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 22px;
}

.service-info-card {
    padding: 26px;

    background: #FFFFFF;

    border:
        1px solid var(--line);

    border-radius: var(--radius);

    box-shadow:
        0 4px 15px
        rgba(11, 19, 43, 0.03);
}

.service-info-card h3 {
    margin-bottom: 10px;

    color: var(--ink);

    font-size: 1.15rem;

    line-height: 1.35;
}

.service-info-card p {
    margin: 0;

    color: var(--ink-soft);

    font-size: 0.93rem;

    line-height: 1.7;
}


/* SERVICE PROCESS */

.service-process {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.service-process > div {
    padding: 24px;

    background: var(--paper);

    border:
        1px solid var(--line);

    border-radius: var(--radius);
}

.service-process span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 15px;

    background:
        var(--gradient-brand);

    color: #FFFFFF;

    border-radius: 50%;

    font-size: 0.8rem;
    font-weight: 800;
}

.service-process h3 {
    margin-bottom: 8px;

    color: var(--ink);

    font-size: 1.05rem;
}

.service-process p {
    color: var(--ink-soft);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* BRAND GRID */

.brand-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.brand-card {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 150px;

    padding: 20px;

    background: #FFFFFF;

    border:
        1px solid var(--line);

    border-radius: var(--radius);
}

.brand-card img {
    max-width: 100%;
    max-height: 90px;

    object-fit: contain;
}


/* PORTFOLIO */

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 22px;
}

.portfolio-card {
    overflow: hidden;

    background: #FFFFFF;

    border:
        1px solid var(--line);

    border-radius: var(--radius);

    box-shadow:
        0 4px 15px
        rgba(11, 19, 43, 0.04);
}

.portfolio-card img {
    width: 100%;
    height: auto;

    transition:
        transform 0.35s ease;
}

.portfolio-card:hover img {
    transform: scale(1.02);
}


/* =========================================================
   11. FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    background: #0B132B;

    color: #FFFFFF;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.9fr
        1.3fr;

    gap: 42px;

    padding:
        65px 0
        55px;
}

.footer-column {
    min-width: 0;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;

    width: 170px;

    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;

    object-fit: contain;
}

.footer-brand p {
    max-width: 360px;

    margin-bottom: 14px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 0.9rem;

    line-height: 1.7;
}

.footer-location {
    color:
        rgba(255, 255, 255, 0.52) !important;
}

.footer-column h3 {
    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: 1rem;

    font-weight: 750;
}

.footer-column > a {
    display: block;

    width: fit-content;

    margin-bottom: 11px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-column > a:hover {
    padding-left: 4px;

    color: #FFFFFF;
}

.footer-contact p {
    max-width: 340px;

    margin-bottom: 15px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.88rem;

    line-height: 1.7;
}

.footer-contact a {
    word-break: break-word;
}


/* FOOTER CTA */

.footer-cta {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.025);
}

.footer-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding:
        32px 0;
}

.footer-cta-label {
    margin-bottom: 6px;

    color: #6EA8FF;

    font-size: 0.74rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.footer-cta h2 {
    margin-bottom: 6px;

    color: #FFFFFF;

    font-size: 1.35rem;

    font-weight: 750;

    line-height: 1.3;
}

.footer-cta p:not(.footer-cta-label) {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.88rem;

    line-height: 1.6;
}

.footer-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding:
        11px 20px;

    flex-shrink: 0;

    background: #FFFFFF;

    color: var(--blue);

    border-radius: 8px;

    font-size: 0.9rem;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.footer-cta-button:hover {
    background: #F5F7FF;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.18);
}


/* FOOTER BOTTOM */

.footer-bottom {
    background: #080D20;
}

.footer-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        20px 0;
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.46);

    font-size: 0.78rem;

    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 18px;
}

.footer-bottom-links a {
    color:
        rgba(255, 255, 255, 0.46);

    font-size: 0.78rem;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}


/* =========================================================
   12. CATALOG / LEGACY PRODUCT STYLES
   ========================================================= */

.catalog-section {
    padding:
        60px 0;

    background: var(--sand);
}

.catalog-container {
    width: min(
        calc(100% - (var(--page-space) * 2)),
        var(--maxw)
    );

    max-width: var(--maxw);

    margin: 0 auto;
}

.catalog-header-main {
    text-align: center;

    margin-bottom: 40px;
}

.catalog-title {
    margin-bottom: 8px;

    color: var(--ink);

    font-size: 2rem;

    font-weight: 750;

    line-height: 1.25;
}

.catalog-subtitle-top {
    color: var(--ink-soft);

    font-size: 1rem;
}

.category-heading {
    margin-bottom: 20px;

    padding-left: 12px;

    border-left:
        4px solid var(--blue);

    color: var(--ink);

    font-size: 1.4rem;

    font-weight: 650;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(260px, 1fr)
        );

    gap: 24px;
}

.product-grid > [hidden] {
    display: none !important;
}

.product-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: var(--paper);

    border:
        1px solid var(--line);

    border-radius: 12px;

    box-shadow:
        0 4px 15px
        rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.10);
}

.product-card .card-image-wrapper {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 180px;

    overflow: hidden;

    background: #FFFFFF;
}

.product-card .card-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.product-card:hover .card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding:
        4px 10px;

    background:
        rgba(0, 0, 0, 0.75);

    color: #FFFFFF;

    border-radius: 20px;

    font-size: 0.75rem;

    font-weight: 600;

    backdrop-filter: blur(4px);
}

.card-body {
    display: flex;

    flex-direction: column;

    flex-grow: 1;

    padding: 20px;
}

.card-title {
    margin-bottom: 10px;

    color: var(--ink);

    font-size: 1.05rem;

    font-weight: 700;

    line-height: 1.4;
}

.card-specs {
    flex-grow: 1;

    margin-bottom: 20px;

    color: var(--ink-soft);

    font-size: 0.85rem;

    line-height: 1.5;
}

.card-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: auto;

    padding-top: 15px;

    border-top:
        1px solid var(--line);
}

.card-price {
    color: var(--blue);

    font-size: 1rem;

    font-weight: 700;
}

.btn-card-order {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding:
        8px 14px;

    background: #25D366;

    color: #FFFFFF;

    border-radius: 6px;

    font-size: 0.85rem;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.btn-card-order:hover {
    transform: scale(1.03);

    opacity: 0.9;
}

.loading-text {
    grid-column: 1 / -1;

    padding: 20px;

    color: var(--ink-soft);

    font-style: italic;

    text-align: center;
}


/* =========================================================
   13. TOKO
   ========================================================= */

.store-page {
    min-height: 60vh;
}

.store-hero {
    padding:
        70px 0
        60px;

    background:
        linear-gradient(
            135deg,
            #F4F6FC 0%,
            #FFFFFF 100%
        );
}

.store-hero h1 {
    max-width: 760px;

    margin-bottom: 18px;

    color: var(--ink);

    font-size: clamp(
        2.2rem,
        4vw,
        3rem
    );

    line-height: 1.15;
}

.store-hero p:last-child {
    max-width: 650px;

    color: var(--ink-soft);

    font-size: 1.05rem;
}

.store-section {
    padding:
        55px 0
        80px;
}


/* SEARCH */

.store-search {
    max-width: 600px;

    margin:
        0 auto
        25px;
}

.store-search label {
    display: block;

    margin-bottom: 7px;

    color: var(--ink);

    font-size: 0.86rem;

    font-weight: 700;
}

.store-search input {
    width: 100%;

    min-height: 48px;

    padding:
        10px 15px;

    border:
        1px solid var(--line);

    border-radius: 9px;

    background: #FFFFFF;

    color: var(--ink);

    font-size: 0.95rem;

    outline: none;
}

.store-search input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(0, 82, 204, 0.10);
}


/* FILTER */

.store-filters {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 32px;
}

.store-filter {
    min-height: 42px;

    padding:
        9px 16px;

    background: var(--sand);

    color: var(--ink);

    border:
        1px solid transparent;

    border-radius: 8px;

    font-size: 0.88rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.store-filter:hover,
.store-filter.active {
    background: var(--gradient-brand);

    color: #FFFFFF;
}


/* STORE GRID */

.store-product-grid {
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
}

.store-product-grid >
[data-product-card][hidden] {
    display: none !important;
}


/* STORE PRODUCT IMAGE */

.product-image-link {
    display: block;

    text-decoration: none;
}

.product-image {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 220px;

    padding: 20px;

    background: #FFFFFF;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;

    max-height: 210px;

    object-fit: contain;
}

.product-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding:
        5px 9px;

    background: var(--gradient-brand);

    color: #FFFFFF;

    border-radius: 20px;

    font-size: 0.72rem;

    font-weight: 700;
}

.product-content {
    padding: 20px;
}

.product-category {
    display: block;

    margin-bottom: 5px;

    color: var(--blue);

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;
}

.product-content h3 {
    margin-bottom: 8px;

    color: var(--ink);

    font-size: 1.05rem;

    line-height: 1.4;
}

.product-description {
    min-height: 48px;

    margin-bottom: 12px;

    color: var(--ink-soft);

    font-size: 0.85rem;

    line-height: 1.55;
}

.product-price {
    display: flex;

    align-items: baseline;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 8px;
}

.product-price strong {
    color: var(--blue);

    font-size: 1.08rem;
}

.product-price del {
    color: #8A93A7;

    font-size: 0.78rem;
}

.product-stock {
    display: block;

    margin-bottom: 14px;

    font-size: 0.78rem;

    font-weight: 700;
}

.product-stock.available {
    color: #18864B;
}

.product-stock.empty {
    color: #C0392B;
}

.store-empty {
    padding:
        60px 20px;

    text-align: center;
}

.store-empty h2 {
    margin-bottom: 10px;

    color: var(--ink);
}

.store-empty p {
    color: var(--ink-soft);
}


/* ORDER BUTTONS */

.product-order-buttons {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-top: 14px;
}

.product-order-buttons a {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding:
        10px 12px;

    border-radius: 8px;

    font-size: 0.82rem;

    font-weight: 700;

    text-align: center;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.btn-shopee {
    background: #EE4D2D;

    color: #FFFFFF;
}

.btn-shopee:hover {
    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0 6px 16px
        rgba(238, 77, 45, 0.22);
}

.btn-whatsapp {
    background: #25D366;

    color: #FFFFFF;
}

.btn-whatsapp:hover {
    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0 6px 16px
        rgba(37, 211, 102, 0.22);
}


/* =========================================================
   14. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --page-space: 22px;
    }

    .site-nav {
        gap: 17px;
    }

    .site-nav > a:not(.btn-cta),
    .nav-dropdown-toggle {
        font-size: 0.82rem;
    }

    .site-nav .btn-cta {
        min-height: 42px;

        padding:
            10px 15px;

        font-size: 0.82rem;
    }

    .logo-link {
        width: 155px;
        max-width: 155px;
    }

    .hero-hub {
        gap: 40px;

        padding:
            60px 0
            70px;
    }

    .hero-text h1 {
        font-size: 2.35rem;
    }

    .grid-services {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .footer-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 35px;
    }

    .service-process {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .brand-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .store-product-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }
}


/* =========================================================
   15. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --page-space: 16px;
    }

    .hub-container,
    .catalog-container {
        width: calc(100% - 32px);
    }


    /* HEADER */

    .header-wrapper {
        min-height: 60px;
    }

    .logo-link {
        width: 140px;
        max-width: 140px;
    }

    .logo-link img {
        max-height: 58px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;

        top:
            calc(100% + 1px);

        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;

        max-height:
            calc(100vh - 61px);

        overflow-y: auto;

        padding:
            10px 16px 18px;

        background: #FFFFFF;

        border-bottom:
            1px solid var(--line);

        box-shadow:
            0 15px 30px
            rgba(11, 19, 43, 0.08);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-8px);

        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
    }

    .site-nav.is-active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }

    .site-nav > a:not(.btn-cta) {
        display: flex;

        align-items: center;

        min-height: 48px;

        padding:
            10px 4px;

        border-bottom:
            1px solid var(--line);

        font-size: 0.92rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;

        min-height: 48px;

        padding:
            10px 4px;

        border-bottom:
            1px solid var(--line);

        font-size: 0.92rem;

        text-align: left;
    }

    .nav-dropdown.is-open
    .nav-dropdown-toggle {
        color: var(--blue);
    }

    .nav-dropdown-menu {
        position: static;

        display: none;

        width: 100%;

        padding:
            5px 0
            8px;

        background: transparent;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;
    }

    .nav-dropdown.is-open
    .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding:
            11px 10px
            11px 18px;
    }

    .nav-dropdown-menu strong {
        font-size: 0.87rem;
    }

    .nav-dropdown-menu span {
        font-size: 0.74rem;
    }

    .site-nav .btn-cta {
        width: 100%;

        min-height: 44px;

        margin-top: 13px;

        padding:
            11px 16px;

        font-size: 0.88rem;
    }


    /* HERO */

    .hero-hub {
        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            42px 0
            55px;
    }

    .hero-text h1 {
        max-width: 100%;

        margin-bottom: 17px;

        font-size: 2rem;

        line-height: 1.16;
    }

    .hero-text > p:not(.eyebrow) {
        max-width: 100%;

        font-size: 0.98rem;

        line-height: 1.7;
    }

    .hero-image img {
        border-radius: 12px;
    }


    /* SERVICES */

    .services-section {
        padding:
            30px 0
            60px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.65rem;
    }

    .section-title > p:last-child {
        margin-top: 12px;

        font-size: 0.94rem;
    }

    .grid-services {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .card-image-wrapper,
    .service-image-wrapper {
        height: 190px;
    }

    .card-content {
        padding:
            22px 20px
            16px;
    }

    .card-service h3 {
        margin-bottom: 9px;

        font-size: 1.2rem;
    }

    .card-service p {
        font-size: 0.91rem;

        line-height: 1.6;
    }

    .card-service .btn-card {
        min-height: 42px;

        margin:
            auto 20px
            20px;

        padding:
            10px 14px;

        font-size: 0.88rem;
    }


    /* LOCAL */

    .local-section {
        padding:
            25px 0
            50px;
    }


    /* CTA */

    .cta-section {
        margin:
            0 0
            55px;

        padding:
            48px 20px;

        border-radius: 14px;
    }

    .cta-section h2 {
        font-size: 1.65rem;
    }

    .cta-section p {
        margin-bottom: 24px;

        font-size: 0.94rem;
    }

    .cta-section .btn-cta {
        width: 100%;

        max-width: 260px;
    }


    /* SERVICE PAGES */

    .service-hero {
        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            40px 0
            55px;
    }

    .service-hero-text h1 {
        font-size: 2rem;
    }

    .service-hero-text > p:not(.eyebrow) {
        font-size: 0.97rem;
    }

    .service-section {
        padding:
            30px 0
            55px;
    }

    .service-section-soft {
        padding:
            50px 0;
    }

    .service-grid-3,
    .service-grid-2 {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-info-card {
        padding: 22px;
    }

    .service-process {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .brand-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 15px;
    }

    .brand-card {
        min-height: 120px;

        padding: 15px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            48px 0
            42px;
    }

    .footer-logo {
        width: 150px;

        margin-bottom: 16px;
    }

    .footer-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        padding:
            28px 0;
    }

    .footer-cta h2 {
        font-size: 1.15rem;
    }

    .footer-cta-button {
        width: 100%;

        max-width: 260px;
    }

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

        align-items: center;
        justify-content: center;

        text-align: center;

        padding:
            18px 0;
    }


    /* CATALOG */

    .catalog-section {
        padding:
            45px 0;
    }

    .catalog-title {
        font-size: 1.65rem;
    }

    .category-heading {
        font-size: 1.2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-card .card-image-wrapper {
        height: 170px;
    }

    .card-body {
        padding: 18px;
    }

    .card-footer {
        flex-wrap: wrap;
    }


    /* TOKO */

    .store-hero {
        padding:
            45px 0
            40px;
    }

    .store-section {
        padding:
            40px 0
            60px;
    }

    .store-product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 210px;
    }

    .store-filters {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;
    }

    .store-filter {
        flex-shrink: 0;
    }

    .product-order-buttons {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   16. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .logo-link {
        width: 125px;
        max-width: 125px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-hub {
        padding-top: 35px;
    }

    .card-image-wrapper,
    .service-image-wrapper {
        height: 175px;
    }

    .cta-section {
        padding:
            42px 17px;
    }

    .footer-grid {
        gap: 26px;
    }

    .footer-bottom-links {
        gap: 14px;
    }
}


/* =========================================================
   17. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}