/* =========================================
   SAJU FOOTBALL
   MAIN STYLE
========================================= */


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;
    color: #101828;

    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   COLOR VARIABLES
========================================= */

:root {
    --blue: #38bdf8;
    --blue-dark: #0284c7;
    --blue-light: #e0f2fe;

    --black: #0b1120;
    --dark: #111827;

    --text: #344054;
    --text-light: #667085;

    --white: #ffffff;

    --gray: #f8fafc;
    --border: #e4e7ec;

    --radius: 18px;

    --shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.08);
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;

    width: 100%;
    z-index: 1000;

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

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid
        rgba(228, 231, 236, 0.8);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: min(1180px, 92%);

    height: 74px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 21px;
    font-weight: 900;

    letter-spacing: -1px;

    color: var(--black);
}

.logo span {
    color: var(--blue);
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 10px;
}

.nav-links a {
    padding: 9px 14px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    color: var(--text);

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--blue-dark);

    background: var(--blue-light);

    transform: translateY(-1px);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 25px;
    cursor: pointer;

    color: var(--black);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height:
        calc(100vh - 74px);

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fcff 55%,
            #e0f2fe 100%
        );
}


/* BLUE DECORATION */

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -180px;
    top: -150px;

    background:
        rgba(56, 189, 248, 0.16);

    filter: blur(15px);
}

.hero::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    left: -120px;
    bottom: -100px;

    background:
        rgba(56, 189, 248, 0.10);

    filter: blur(10px);
}


/* HERO CONTENT */

.hero-content {
    width: min(1180px, 92%);

    margin: auto;

    position: relative;
    z-index: 2;

    padding:
        90px 0
        110px;

    max-width: 1180px;
}

.hero-label {
    display: inline-block;

    padding:
        7px 13px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: var(--blue-light);

    color: var(--blue-dark);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero h1 {
    max-width: 800px;

    font-size:
        clamp(
            55px,
            8vw,
            105px
        );

    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 900;

    color: var(--black);

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-description {
    max-width: 680px;

    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 34px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

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

    min-height: 48px;

    padding:
        12px 21px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 750;

    cursor: pointer;

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


/* PRIMARY */

.btn-primary {
    background: var(--blue);

    color: var(--black);

    box-shadow:
        0 8px 25px
        rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    background: #67ccf7;

    box-shadow:
        0 12px 30px
        rgba(56, 189, 248, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}


/* SECONDARY */

.btn-secondary {
    background: var(--white);

    color: var(--black);

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

.btn-secondary:hover {
    transform: translateY(-3px);

    border-color: var(--blue);

    color: var(--blue-dark);

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

.btn-secondary:active {
    transform: translateY(0);
}


/* =========================================
   GENERAL SECTION
========================================= */

.section {
    width: min(1180px, 92%);

    margin: auto;

    padding:
        105px 0;
}


/* SECTION TITLE */

.section-heading {
    max-width: 650px;

    margin-bottom: 48px;
}

.section-label {
    font-size: 12px;
    font-weight: 850;

    letter-spacing: 1.6px;

    color: var(--blue-dark);

    margin-bottom: 8px;
}

.section-heading h2,
.support-content h2 {
    font-size:
        clamp(
            32px,
            5vw,
            50px
        );

    letter-spacing: -2px;

    line-height: 1.1;

    color: var(--black);

    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text-light);

    font-size: 16px;
}


/* =========================================
   SERVICE SECTION
========================================= */

.service-grid {
    display: grid;

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

    gap: 20px;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    padding: 30px;

    min-height: 300px;

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

    border-radius: var(--radius);

    background: var(--white);

    display: flex;
    flex-direction: column;

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

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

    border-color:
        rgba(56, 189, 248, 0.7);

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

.service-number {
    width: 45px;
    height: 45px;

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

    margin-bottom: 32px;

    border-radius: 12px;

    background: var(--blue-light);

    color: var(--blue-dark);

    font-size: 13px;
    font-weight: 850;
}

.service-card h3 {
    font-size: 21px;

    color: var(--black);

    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;

    color: var(--text-light);

    margin-bottom: 25px;
}


/* LINK BOTTOM */

.service-link {
    margin-top: auto;

    color: var(--blue-dark);

    font-size: 14px;
    font-weight: 750;

    transition: 0.2s ease;
}

.service-link:hover {
    transform: translateX(5px);
}


/* =========================================
   TESTIMONIAL SECTION
========================================= */

#testimoni {
    position: relative;
}

.testimonial-tabs {
    display: flex;

    gap: 8px;

    margin-bottom: 30px;

    padding: 5px;

    width: fit-content;

    background: var(--gray);

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

    border-radius: 13px;
}

.testimonial-tab {
    border: none;

    background: transparent;

    color: var(--text-light);

    padding:
        10px 17px;

    border-radius: 9px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s ease;
}

.testimonial-tab:hover {
    color: var(--blue-dark);
}

.testimonial-tab.active {
    background: var(--white);

    color: var(--black);

    box-shadow:
        0 4px 15px
        rgba(15, 23, 42, 0.08);
}


/* EMPTY TESTIMONIAL */

.testimonial-empty {
    grid-column: 1 / -1;

    min-height: 260px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 40px 20px;

    border:
        1px dashed
        #bae6fd;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f9ff
        );
}

.empty-icon {
    width: 50px;
    height: 50px;

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

    margin-bottom: 15px;

    border-radius: 14px;

    background: var(--blue-light);

    color: var(--blue-dark);

    font-size: 22px;
}

.testimonial-empty h3 {
    font-size: 20px;

    color: var(--black);

    margin-bottom: 7px;
}

.testimonial-empty p {
    max-width: 400px;

    color: var(--text-light);

    font-size: 14px;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    width: 100%;

    overflow: hidden;

    background: var(--white);

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

    border-radius: var(--radius);

    box-shadow:
        0 8px 25px
        rgba(15, 23, 42, 0.06);
}


/* HEADER */

.testimonial-card-header {
    padding: 18px;

    display: flex;

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

    gap: 15px;

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


.transaction-label {
    display: block;

    margin-bottom: 2px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;

    color: var(--text-light);
}


.testimonial-card-header h3 {
    color: var(--black);

    font-size: 18px;
}


.verified-badge {
    padding:
        6px 9px;

    border-radius: 50px;

    background: var(--blue-light);

    color: var(--blue-dark);

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================
   SLIDER
========================================= */

.testimonial-slider {
    position: relative;

    background: #0b1120;

    overflow: hidden;
}


.testimonial-images {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;
}


.testimonial-image {
    display: none;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #0b1120;
}


.testimonial-image.active {
    display: block;
}


/* =========================================
   ARROW BUTTON
========================================= */

.slider-button {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 38px;
    height: 38px;

    display: flex;

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

    border: none;

    border-radius: 50%;

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

    color: var(--black);

    font-size: 26px;

    cursor: pointer;

    z-index: 5;

    transition: 0.2s ease;
}


.slider-button:hover {
    transform:
        translateY(-50%)
        scale(1.1);

    background: var(--white);
}


.slider-prev {
    left: 10px;
}


.slider-next {
    right: 10px;
}


/* =========================================
   COUNTER
========================================= */

.slider-counter {
    position: absolute;

    right: 10px;
    bottom: 10px;

    padding:
        5px 9px;

    border-radius: 50px;

    background:
        rgba(11, 17, 32, 0.75);

    color: white;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================
   DOTS
========================================= */

.slider-dots {
    min-height: 38px;

    display: flex;

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

    gap: 6px;
}


.slider-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #cbd5e1;

    cursor: pointer;

    transition: 0.2s ease;
}


.slider-dot.active {
    width: 19px;

    border-radius: 50px;

    background: var(--blue);
}

/* TEMPORARY AREA */

.testimonial-grid {
    min-height: 280px;

    display: grid;

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

    gap: 20px;
}


/* =========================================
   COMMUNITY
========================================= */

.community-grid {
    display: grid;

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

    gap: 20px;
}

.community-card {
    padding: 30px;

    min-height: 200px;

    border-radius: var(--radius);

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

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fcff
        );

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

.community-card:hover {
    transform:
        translateY(-6px);

    border-color: var(--blue);

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

.community-card h3 {
    color: var(--black);

    font-size: 20px;

    margin-bottom: 10px;
}

.community-card p {
    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 25px;
}

.community-card span {
    color: var(--blue-dark);

    font-size: 14px;
    font-weight: 750;
}


/* =========================================
   SUPPORT
========================================= */

.support-section {
    width: min(1180px, 92%);

    margin-bottom: 100px;

    padding: 0;
}

.support-content {
    padding:
        65px;

    border-radius: 28px;

    position: relative;

    overflow: hidden;

    background: var(--black);

    color: var(--white);
}

.support-content::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(56, 189, 248, 0.25);

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

    filter: blur(10px);
}

.support-content > * {
    position: relative;

    z-index: 2;
}

.support-content .section-label {
    color: var(--blue);
}

.support-content h2 {
    color: var(--white);

    max-width: 700px;
}

.support-content p {
    color: #cbd5e1;

    max-width: 550px;

    margin-bottom: 25px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    min-height: 100px;

    width: min(1180px, 92%);

    margin: auto;

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

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

    gap: 20px;

    color: var(--text-light);

    font-size: 13px;
}

.footer a {
    color: var(--blue-dark);

    font-weight: 700;
}

.footer a:hover {
    text-decoration: underline;
}


/* =========================================
   TEXT SELECTION
========================================= */

::selection {
    background: var(--blue);

    color: var(--black);
}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #bae6fd;

    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

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

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

    .hero h1 {
        letter-spacing: -3px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navbar {
        height: 66px;
    }

    .logo {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }


    /* MENU MOBILE */
    /* Nanti diaktifkan melalui JavaScript */

    .nav-links {
        display: none;

        position: absolute;

        left: 4%;
        right: 4%;

        top: 75px;

        flex-direction: column;

        align-items: stretch;

        padding: 10px;

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

        border-radius: 15px;

        background: white;

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

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
    }


    /* HERO */

    .hero {
        min-height:
            calc(100vh - 66px);
    }

    .hero-content {
        padding:
            70px 0
            80px;
    }

    .hero-label {
        font-size: 10px;
    }

    .hero h1 {
        font-size:
            clamp(
                48px,
                17vw,
                75px
            );

        letter-spacing: -3px;

        margin-bottom: 22px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* SECTION */

    .section {
        padding:
            75px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .support-content h2 {
        letter-spacing: -1.5px;
    }


    /* SERVICE */

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

    .service-card {
        min-height: 260px;
    }


    /* TESTIMONI */

    .testimonial-tabs {
        width: 100%;
    }

    .testimonial-tab {
        flex: 1;

        padding:
            10px 8px;

        font-size: 12px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    /* COMMUNITY */

    .community-grid {
        grid-template-columns: 1fr;
    }


    /* SUPPORT */

    .support-section {
        margin-bottom: 70px;
    }

    .support-content {
        padding:
            40px 25px;

        border-radius: 20px;
    }


    /* FOOTER */

    .footer {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding:
            30px 0;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 46px;
    }

    .testimonial-tabs {
        flex-direction: column;
    }

}

/* =========================================
   TESTIMONIAL IMAGE MODAL
========================================= */

.testimonial-image {
    cursor: zoom-in;
}


/* BACKGROUND */

.image-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

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

    padding: 25px;

    background:
        rgba(5, 10, 20, 0.92);

    backdrop-filter: blur(8px);
}


.image-modal.active {
    display: flex;
}


/* IMAGE */

.image-modal img {
    display: block;

    width: auto;
    height: auto;

    max-width: 95vw;
    max-height: 92vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 20px 70px
        rgba(0, 0, 0, 0.45);

    cursor: default;
}


/* CLOSE */

.image-modal-close {
    position: fixed;

    top: 18px;
    right: 22px;

    width: 46px;
    height: 46px;

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

    border: none;

    border-radius: 50%;

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

    color: white;

    font-size: 32px;

    cursor: pointer;

    transition: 0.2s ease;

    z-index: 10000;
}


.image-modal-close:hover {
    background:
        rgba(255, 255, 255, 0.22);

    transform: scale(1.08);
}


/* MOBILE */

@media (max-width: 700px) {

    .image-modal {
        padding: 10px;
    }

    .image-modal img {
        max-width: 100%;
        max-height: 94vh;

        border-radius: 6px;
    }

    .image-modal-close {
        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;
    }

}

/* =========================================
   STEP 7
   TESTIMONIAL CATALOG POLISH
========================================= */


/* GRID DESKTOP */

.testimonial-grid {
    display: grid;

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

    gap: 24px;

    align-items: start;

    min-height: 280px;
}


/* CARD */

.testimonial-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(228, 231, 236, 0.95);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 24px
        rgba(15, 23, 42, 0.06);

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


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

    border-color:
        rgba(56, 189, 248, 0.65);

    box-shadow:
        0 16px 38px
        rgba(15, 23, 42, 0.10);
}


/* HEADER CARD */

.testimonial-card-header {
    min-height: 76px;

    padding:
        16px 17px;

    display: flex;

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

    gap: 12px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfdff
        );

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


.transaction-label {
    display: block;

    margin-bottom: 2px;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 1.3px;

    color: #98a2b3;
}


.testimonial-card-header h3 {
    margin: 0;

    font-size: 17px;
    font-weight: 850;

    color: var(--black);
}


.verified-badge {
    display: inline-flex;

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

    padding:
        6px 9px;

    border-radius: 999px;

    background: var(--blue-light);

    color: var(--blue-dark);

    font-size: 9px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================
   IMAGE AREA
========================================= */

.testimonial-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #0b1120;

    touch-action: pan-y;
}


.testimonial-images {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;
}


.testimonial-image {
    display: none;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #0b1120;

    cursor: zoom-in;

    user-select: none;

    -webkit-user-drag: none;
}


.testimonial-image.active {
    display: block;
}


/* =========================================
   ARROW
========================================= */

.slider-button {
    width: 38px;
    height: 38px;

    opacity: 0;

    pointer-events: none;

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


.testimonial-card:hover
.slider-button {
    opacity: 1;

    pointer-events: auto;
}


.slider-button:hover {
    background: #ffffff;
}


/* =========================================
   COUNTER
========================================= */

.slider-counter {
    right: 10px;
    bottom: 10px;

    padding:
        5px 9px;

    border-radius: 999px;

    background:
        rgba(11, 17, 32, 0.78);

    backdrop-filter:
        blur(6px);

    color: #ffffff;

    font-size: 10px;
    font-weight: 750;
}


/* =========================================
   DOT NAVIGATION
========================================= */

.slider-dots {
    min-height: 42px;

    display: flex;

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

    gap: 6px;

    background: #ffffff;
}


.slider-dot {
    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: #d0d5dd;
}


.slider-dot.active {
    width: 22px;

    background: var(--blue);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

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

        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

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

        gap: 18px;
    }


    .testimonial-card {
        width: 100%;

        max-width: 430px;

        margin:
            0 auto;

        border-radius: 16px;
    }


    .testimonial-card:hover {
        transform: none;
    }


    .testimonial-card-header {
        min-height: 68px;

        padding:
            14px 15px;
    }


    .testimonial-card-header h3 {
        font-size: 16px;
    }


    /*
       Di HP kita prioritaskan swipe.
       Tombol panah disembunyikan.
    */

    .slider-button {
        display: none;
    }


    .slider-counter {
        right: 8px;
        bottom: 8px;
    }


    .slider-dots {
        min-height: 38px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .testimonial-card {
        border-radius: 14px;
    }

    .verified-badge {
        padding:
            5px 7px;

        font-size: 8px;
    }

}

/* =========================================
   STEP 8
   HOME + NAVBAR POLISH
========================================= */


/* =========================================
   HEADER
========================================= */

.header {
    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(228, 231, 236, 0.75);
}


.navbar {
    height: 72px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: inline-flex;

    align-items: center;

    font-size: 21px;
    font-weight: 950;

    letter-spacing: -1.1px;

    transition:
        transform 0.2s ease;
}


.logo:hover {
    transform:
        translateY(-1px);
}


.logo span {
    margin-left: 2px;

    color: var(--blue);
}


/* =========================================
   NAVIGATION
========================================= */

.nav-links {
    gap: 5px;
}


.nav-links a {
    position: relative;

    padding:
        9px 13px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

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


.nav-links a:hover {
    background:
        var(--blue-light);

    color:
        var(--blue-dark);

    transform:
        translateY(-1px);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height:
        calc(100vh - 72px);

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f9fcff 48%,
            #edf9ff 100%
        );
}


/* GRID DECORATION */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border-radius: 0;

    background-image:
        linear-gradient(
            rgba(56, 189, 248, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(56, 189, 248, 0.055) 1px,
            transparent 1px
        );

    background-size:
        45px 45px;

    filter: none;
}


/* BLUE GLOW */

.hero::after {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -180px;
    top: -170px;
    left: auto;
    bottom: auto;

    border-radius: 50%;

    background:
        rgba(56, 189, 248, 0.15);

    filter:
        blur(25px);
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width:
        min(1180px, 92%);

    max-width: none;

    padding:
        110px 0
        125px;
}


.hero-label {
    position: relative;

    display: inline-flex;

    align-items: center;

    padding:
        8px 13px;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(56, 189, 248, 0.25);

    border-radius: 999px;

    background:
        rgba(224, 242, 254, 0.75);

    color:
        var(--blue-dark);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 1.7px;
}


/* DOT */

.hero-label::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 8px;

    border-radius: 50%;

    background:
        var(--blue);

    box-shadow:
        0 0 0 5px
        rgba(56, 189, 248, 0.12);
}


/* =========================================
   HERO TITLE
========================================= */

.hero h1 {
    max-width: 900px;

    margin-bottom: 28px;

    font-size:
        clamp(
            58px,
            8vw,
            108px
        );

    font-weight: 950;

    line-height: 0.88;

    letter-spacing: -6px;

    color:
        var(--black);
}


.hero h1 span {
    position: relative;

    color:
        var(--blue);
}


/* =========================================
   HERO DESCRIPTION
========================================= */

.hero-description {
    max-width: 690px;

    margin-bottom: 36px;

    color:
        #667085;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   HERO BUTTON
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.hero-buttons .btn {
    min-width: 145px;

    min-height: 50px;

    padding:
        12px 22px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;
}


/* RACIK */

.hero-buttons .btn-primary {
    background:
        linear-gradient(
            135deg,
            #38bdf8,
            #7dd3fc
        );

    color:
        #07111f;

    border:
        1px solid
        rgba(2, 132, 199, 0.12);

    box-shadow:
        0 10px 28px
        rgba(56, 189, 248, 0.28);
}


.hero-buttons
.btn-primary:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 16px 36px
        rgba(56, 189, 248, 0.37);
}


/* TIKTOK */

.hero-buttons
.btn-secondary {
    background:
        rgba(255, 255, 255, 0.85);

    backdrop-filter:
        blur(10px);

    border:
        1px solid
        #dfe5ec;
}


.hero-buttons
.btn-secondary:hover {
    transform:
        translateY(-4px);

    background:
        #ffffff;

    border-color:
        var(--blue);

    box-shadow:
        0 12px 28px
        rgba(15, 23, 42, 0.09);
}


/* =========================================
   SERVICE POLISH
========================================= */

.service-card {
    border-radius: 20px;

    overflow: hidden;
}


.service-number {
    border:
        1px solid
        rgba(56, 189, 248, 0.20);
}


.service-card h3 {
    font-size: 20px;

    letter-spacing:
        -0.5px;
}


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

    box-shadow:
        0 18px 38px
        rgba(15, 23, 42, 0.09);
}


.service-link {
    width: fit-content;

    position: relative;
}


.service-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background:
        var(--blue);

    transition:
        width 0.2s ease;
}


.service-link:hover::after {
    width: 100%;
}


/* =========================================
   SECTION CONSISTENCY
========================================= */

.section-heading h2 {
    font-weight: 900;

    letter-spacing:
        -2.3px;
}


.section-label {
    font-size: 10px;

    font-weight: 850;

    letter-spacing: 1.8px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero-content {
        padding:
            95px 0
            105px;
    }


    .hero h1 {
        letter-spacing:
            -4px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navbar {
        height: 66px;
    }


    .hero {
        min-height:
            calc(100vh - 66px);
    }


    .hero::before {
        background-size:
            32px 32px;
    }


    .hero::after {
        width: 350px;
        height: 350px;

        right: -170px;
        top: -80px;
    }


    .hero-content {
        padding:
            75px 0
            90px;
    }


    .hero-label {
        margin-bottom: 20px;

        font-size: 9px;
    }


    .hero h1 {
        max-width: 100%;

        font-size:
            clamp(
                49px,
                16vw,
                72px
            );

        line-height: 0.92;

        letter-spacing:
            -3.5px;

        margin-bottom: 24px;
    }


    .hero-description {
        max-width: 100%;

        margin-bottom: 30px;

        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;

        min-height: 51px;
    }


    .service-card {
        min-height: 250px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 45px;

        letter-spacing:
            -2.5px;
    }

}

/* =========================================
   STEP 9
   MODERN MOBILE NAVIGATION
========================================= */


/* ACTIVE NAV LINK */

.nav-links a.active {
    color: var(--blue-dark);

    background: var(--blue-light);
}


/* =========================================
   HAMBURGER
========================================= */

.menu-toggle {
    width: 42px;
    height: 42px;

    padding: 9px;

    border: none;

    border-radius: 11px;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

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

    gap: 5px;

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


.menu-toggle:hover {
    background: var(--blue-light);
}


.menu-toggle:active {
    transform: scale(0.94);
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    border-radius: 50px;

    background: var(--black);

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


/* HAMBURGER → X */

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================
   MOBILE MENU
========================================= */

@media (max-width: 700px) {

    .menu-toggle {
        display: flex;
    }


    .nav-links {
        display: flex;

        position: fixed;

        top: 76px;
        left: 4%;
        right: 4%;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 10px;

        border:
            1px solid
            rgba(228, 231, 236, 0.95);

        border-radius: 16px;

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

        backdrop-filter: blur(18px);

        -webkit-backdrop-filter: blur(18px);

        box-shadow:
            0 20px 45px
            rgba(15, 23, 42, 0.13);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-12px)
            scale(0.98);

        transform-origin: top;

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


    .nav-links.active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }


    .nav-links a {
        width: 100%;

        padding:
            13px 14px;

        border-radius: 10px;

        font-size: 14px;
    }


    .nav-links a:hover {
        transform: none;
    }

}

/* =========================================
   STEP 10
   COMMUNITY + SUPPORT + FOOTER + WHATSAPP
========================================= */


/* =========================================
   COMMUNITY
========================================= */

.community-grid {
    gap: 22px;
}


.community-card {
    position: relative;

    min-height: 220px;

    padding: 30px;

    overflow: hidden;

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

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fcff 100%
        );

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


/* BLUE ACCENT */

.community-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            #7dd3fc
        );

    opacity: 0;

    transition:
        opacity 0.22s ease;
}


.community-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(56, 189, 248, 0.55);

    box-shadow:
        0 18px 40px
        rgba(15, 23, 42, 0.09);
}


.community-card:hover::before {
    opacity: 1;
}


.community-card h3 {
    margin-bottom: 11px;

    font-size: 20px;
    font-weight: 850;

    letter-spacing: -0.5px;
}


.community-card p {
    min-height: 65px;

    margin-bottom: 24px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}


.community-card span {
    display: inline-block;

    color: var(--blue-dark);

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease;
}


.community-card:hover span {
    transform:
        translateX(5px);
}


/* =========================================
   SUPPORT
========================================= */

.support-section {
    margin-top: 25px;

    margin-bottom: 90px;
}


.support-content {
    position: relative;

    min-height: 350px;

    padding:
        70px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #08111f 0%,
            #0b1120 55%,
            #10243a 100%
        );

    box-shadow:
        0 25px 60px
        rgba(15, 23, 42, 0.14);
}


/* SUPPORT GRID */

.support-content::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size:
        38px 38px;

    pointer-events: none;
}


.support-content::before {
    width: 420px;
    height: 420px;

    right: -130px;
    top: -170px;

    background:
        rgba(56, 189, 248, 0.22);

    filter:
        blur(25px);
}


.support-content h2 {
    max-width: 720px;

    font-weight: 900;

    letter-spacing: -2px;
}


.support-content p {
    max-width: 580px;

    line-height: 1.75;
}


.support-content .btn {
    width: fit-content;

    min-width: 160px;

    margin-top: 5px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    min-height: 120px;

    padding:
        30px 0;

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


.footer p {
    color: #98a2b3;

    font-size: 12px;
}


.footer a {
    position: relative;

    color: var(--blue-dark);

    font-weight: 800;

    text-decoration: none;
}


.footer a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--blue);

    transition:
        width 0.2s ease;
}


.footer a:hover::after {
    width: 100%;
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 5000;

    display: flex;

    align-items: center;

    gap: 9px;

    min-height: 52px;

    padding:
        7px 16px
        7px 7px;

    border:
        1px solid
        rgba(56, 189, 248, 0.35);

    border-radius: 999px;

    background:
        rgba(11, 17, 32, 0.94);

    backdrop-filter:
        blur(12px);

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

    color: #ffffff;

    box-shadow:
        0 14px 35px
        rgba(15, 23, 42, 0.22);

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


.floating-whatsapp:hover {
    transform:
        translateY(-4px);

    background:
        #101c2d;

    box-shadow:
        0 18px 42px
        rgba(15, 23, 42, 0.28);
}


.floating-whatsapp:active {
    transform:
        translateY(-1px)
        scale(0.97);
}


.floating-whatsapp-icon {
    width: 38px;
    height: 38px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--blue);

    color:
        var(--black);

    font-size: 10px;
    font-weight: 950;

    letter-spacing: -0.3px;
}


.floating-whatsapp-text {
    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .support-content {
        padding:
            55px 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .community-card {
        min-height: auto;

        padding:
            25px;
    }


    .community-card p {
        min-height: auto;
    }


    .community-card:hover {
        transform: none;
    }


    .support-section {
        margin-bottom: 65px;
    }


    .support-content {
        min-height: 330px;

        padding:
            45px 25px;

        border-radius: 20px;
    }


    .support-content h2 {
        letter-spacing:
            -1.5px;
    }


    .support-content .btn {
        width: 100%;
    }


    /* Floating WA lebih compact di HP */

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;

        min-height: 50px;

        padding: 6px;
    }


    .floating-whatsapp-icon {
        width: 38px;
        height: 38px;
    }


    .floating-whatsapp-text {
        display: none;
    }


    .footer {
        min-height: 110px;
    }

}

/* =========================================
   STEP 11
   TESTIMONIAL SEARCH + COUNT
========================================= */

.testimonial-tools {
    width: 100%;

    margin-bottom: 28px;

    display: flex;

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

    gap: 18px;
}


/* TOTAL TRANSACTION */

.testimonial-count {
    display: flex;

    align-items: center;

    min-height: 46px;
}


.testimonial-count span {
    display: inline-flex;

    align-items: center;

    padding:
        8px 13px;

    border:
        1px solid
        #bae6fd;

    border-radius: 999px;

    background:
        #f0f9ff;

    color:
        var(--blue-dark);

    font-size: 12px;
    font-weight: 800;
}


/* SEARCH */

.testimonial-search {
    width: 100%;

    max-width: 330px;
}


.testimonial-search input {
    width: 100%;

    height: 46px;

    padding:
        0 16px;

    outline: none;

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

    border-radius: 12px;

    background:
        #ffffff;

    color:
        var(--black);

    font-size: 13px;

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


.testimonial-search input::placeholder {
    color:
        #98a2b3;
}


.testimonial-search input:hover {
    border-color:
        #bae6fd;
}


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

    box-shadow:
        0 0 0 4px
        rgba(56, 189, 248, 0.12);
}


/* NO SEARCH RESULT */

.testimonial-no-result {
    grid-column:
        1 / -1;

    min-height: 200px;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    padding: 35px;

    border:
        1px dashed
        var(--border);

    border-radius:
        var(--radius);

    color:
        var(--text-light);
}


.testimonial-no-result h3 {
    margin-bottom: 6px;

    color:
        var(--black);

    font-size: 18px;
}


.testimonial-no-result p {
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 700px) {

    .testimonial-tools {
        margin-bottom: 22px;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    .testimonial-count {
        min-height: auto;
    }


    .testimonial-search {
        max-width: 100%;
    }


    .testimonial-search input {
        height: 48px;

        font-size: 14px;
    }

}