/* =========================================================
   TANGGA FIBERGLASS DENKO
   PUSAT DALTON
   STYLE.CSS — STEP 1
   FONDASI + HEADER + HERO
========================================================= */


/* =========================================================
   01. ROOT / RESET
========================================================= */

:root {

    --navy:
        #07111f;

    --navy-2:
        #0b1728;

    --navy-3:
        #101f33;

    --yellow:
        #ffd400;

    --yellow-dark:
        #e5b900;

    --white:
        #ffffff;

    --text:
        #e8edf5;

    --text-soft:
        #aeb9c9;

    --border:
        rgba(255,255,255,.10);

    --card:
        #0b1728;

    --shadow:
        0 20px 60px rgba(0,0,0,.28);

    --radius:
        16px;

    --container:
        1180px;

}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--navy);

    color:
        var(--text);

    line-height:
        1.7;

    font-size:
        15px;

    overflow-x:
        hidden;

}


img {

    display:
        block;

    max-width:
        100%;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}


button,
a {

    -webkit-tap-highlight-color:
        transparent;

}


/* =========================================================
   03. CONTAINER
========================================================= */

.container {

    width:
        min(100% - 40px, var(--container));

    margin:
        0 auto;

}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {

    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 68px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220, 227, 234, 0.8);

    /* tambahan: kunci tinggi header agar tidak ada yang bisa tumpah keluar */
    overflow: hidden;
}

/* jaring pengaman: paksa SEMUA gambar di dalam header, apapun class-nya,
   untuk tidak lebih besar dari tinggi header */
.site-header img {
    max-height: 42px !important;
    width: auto !important;
    object-fit: contain !important;
}   



.site-header .container {

    min-height:
        76px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        40px;

}


/* =========================================================
   05. LOGO
========================================================= */

.logo {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    font-size:
        21px;

    font-weight:
        900;

    letter-spacing:
        -.5px;

    color:
        var(--white);

}


.logo::before {

    content:
        "";

    width:
        4px;

    height:
        27px;

    border-radius:
        4px;

    background:
        var(--yellow);

}


.logo span {

    color:
        var(--yellow);

}


/* =========================================================
   06. NAVIGATION
========================================================= */

.main-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        28px;

}


.main-nav a {

    position:
        relative;

    color:
        #c8d1de;

    font-size:
        13px;

    font-weight:
        600;

    transition:
        color .25s ease;

}


.main-nav a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        -8px;

    width:
        0;

    height:
        2px;

    background:
        var(--yellow);

    transition:
        width .25s ease;

}


.main-nav a:hover {

    color:
        var(--yellow);

}


.main-nav a:hover::after {

    width:
        100%;

}


/* =========================================================
   07. BUTTON
========================================================= */

.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        46px;

    padding:
        0 22px;

    border-radius:
        9px;

    font-size:
        13px;

    font-weight:
        800;

    border:
        1px solid transparent;

    cursor:
        pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}


.btn:hover {

    transform:
        translateY(-2px);

}


.btn-primary {

    color:
        #07111f;

    background:
        var(--yellow);

    box-shadow:
        0 10px 25px rgba(255,212,0,.18);

}


.btn-primary:hover {

    background:
        #ffe45c;

    box-shadow:
        0 14px 32px rgba(255,212,0,.25);

}


.btn-outline {

    color:
        var(--white);

    border-color:
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.04);

}


.btn-outline:hover {

    border-color:
        var(--yellow);

    color:
        var(--yellow);

}


/* =========================================================
   08. HERO
========================================================= */

.product-hero {

    position:
        relative;

    min-height:
        650px;

    display:
        flex;

    align-items:
        center;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(255,212,0,.10),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #050c17 0%,
            #091526 55%,
            #07111f 100%
        );

    overflow:
        hidden;

}


.product-hero::before {

    content:
        "";

    position:
        absolute;

    width:
        480px;

    height:
        480px;

    right:
        -180px;

    top:
        -180px;

    border:
        1px solid rgba(255,212,0,.10);

    border-radius:
        50%;

}


.product-hero::after {

    content:
        "";

    position:
        absolute;

    width:
        360px;

    height:
        360px;

    left:
        -180px;

    bottom:
        -220px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius:
        50%;

}


.product-hero-grid {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .95fr);

    align-items:
        center;

    gap:
        70px;

    padding:
        90px 0;

}


/* =========================================================
   09. HERO CONTENT
========================================================= */

.product-hero-content {

    max-width:
        650px;

}


.product-eyebrow {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    margin-bottom:
        18px;

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

}


.product-eyebrow::before {

    content:
        "";

    width:
        28px;

    height:
        2px;

    background:
        var(--yellow);

}


.product-hero h1 {

    max-width:
        700px;

    margin-bottom:
        22px;

    color:
        var(--white);

    font-size:
        clamp(38px, 5vw, 68px);

    line-height:
        1.05;

    letter-spacing:
        -2.5px;

    font-weight:
        900;

}


.product-hero h1 strong {

    display:
        inline;

    color:
        var(--yellow);

}


.product-subtitle {

    max-width:
        620px;

    margin-bottom:
        28px;

    color:
        var(--text-soft);

    font-size:
        16px;

    line-height:
        1.8;

}


/* =========================================================
   10. HERO BADGES
========================================================= */

.product-badges {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        30px;

}


.product-badges span {

    display:
        inline-flex;

    align-items:
        center;

    min-height:
        32px;

    padding:
        0 13px;

    border:
        1px solid rgba(255,212,0,.25);

    border-radius:
        999px;

    background:
        rgba(255,212,0,.06);

    color:
        #fff1a3;

    font-size:
        11px;

    font-weight:
        700;

}


/* =========================================================
   11. HERO ACTIONS
========================================================= */

.product-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

}


/* =========================================================
   12. HERO IMAGE
========================================================= */

.product-hero-image {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        500px;

}


.product-hero-image::before {

    content:
        "";

    position:
        absolute;

    width:
        430px;

    height:
        430px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255,212,0,.13),
            transparent 68%
        );

}


.image-frame {

    position:
        relative;

    z-index:
        2;

    width:
        min(100%, 500px);

    padding:
        18px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        22px;

    background:
        rgba(255,255,255,.035);

    box-shadow:
        var(--shadow);

    overflow:
        hidden;

}


.image-frame img {

    width:
        100%;

    height:
        auto;

    max-height:
        570px;

    object-fit:
        contain;

    border-radius:
        12px;

}


/* =========================================================
   13. SECTION GLOBAL
========================================================= */

section {

    position:
        relative;

}


.section-heading {

    max-width:
        780px;

    margin:
        0 auto 55px;

    text-align:
        center;

}


.section-heading > span {

    display:
        inline-block;

    margin-bottom:
        10px;

    color:
        var(--yellow);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

}


.section-heading h2 {

    color:
        var(--white);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height:
        1.1;

    font-weight:
        900;

    letter-spacing:
        -1.5px;

}


.section-heading h2 strong {

    color:
        var(--yellow);

}


.section-heading p {

    max-width:
        650px;

    margin:
        15px auto 0;

    color:
        var(--text-soft);

    font-size:
        14px;

}


/* =========================================================
   14. MOBILE HEADER
========================================================= */

@media (max-width: 800px) {

    .site-header .container {

        min-height:
            66px;

    }


    .main-nav {

        gap:
            14px;

    }


    .main-nav a {

        font-size:
            11px;

    }


    .product-hero {

        min-height:
            auto;

    }


    .product-hero-grid {

        grid-template-columns:
            1fr;

        gap:
            45px;

        padding:
            65px 0;

    }


    .product-hero-content {

        text-align:
            center;

        margin:
            0 auto;

    }


    .product-eyebrow {

        justify-content:
            center;

    }


    .product-hero h1 {

        font-size:
            clamp(34px, 9vw, 52px);

        letter-spacing:
            -1.5px;

    }


    .product-subtitle {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .product-badges {

        justify-content:
            center;

    }


    .product-actions {

        justify-content:
            center;

    }


    .product-hero-image {

        min-height:
            auto;

    }


    .image-frame {

        width:
            min(100%, 520px);

    }

}


/* =========================================================
   15. SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .container {

        width:
            min(100% - 28px, var(--container));

    }


    .site-header .container {

        flex-direction:
            column;

        justify-content:
            center;

        gap:
            5px;

        padding:
            10px 0;

    }


    .main-nav {

        flex-wrap:
            wrap;

        justify-content:
            center;

        gap:
            10px 15px;

    }


    .main-nav a::after {

        display:
            none;

    }


    .product-hero-grid {

        padding:
            50px 0;

    }


    .product-hero h1 {

        font-size:
            34px;

    }


    .product-subtitle {

        font-size:
            14px;

    }


    .product-actions {

        flex-direction:
            column;

    }


    .product-actions .btn {

        width:
            100%;

    }


    .product-hero-image::before {

        width:
            280px;

        height:
            280px;

    }

}




/* =========================================================
   TANGGA FIBERGLASS DENKO
   STEP 2
   OVERVIEW + ABOUT + BENEFIT
========================================================= */


/* =========================================================
   16. OVERVIEW / QUICK INFO
========================================================= */

.overview-section {

    padding:
        0 0 90px;

    background:
        var(--navy);

}


.overview-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid var(--border);

    border-radius:
        18px;

    overflow:
        hidden;

    background:
        var(--card);

    box-shadow:
        0 20px 50px rgba(0,0,0,.20);

}


.overview-item {

    position:
        relative;

    min-height:
        125px;

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    padding:
        25px;

    border-right:
        1px solid var(--border);

}


.overview-item:last-child {

    border-right:
        0;

}


.overview-item::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        0;

    height:
        3px;

    background:
        var(--yellow);

    transition:
        width .3s ease;

}


.overview-item:hover::before {

    width:
        100%;

}


.overview-icon {

    flex:
        0 0 48px;

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(255,212,0,.28);

    border-radius:
        12px;

    background:
        rgba(255,212,0,.06);

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        900;

}


.overview-item small {

    display:
        block;

    margin-bottom:
        4px;

    color:
        #7f8da1;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        1.3px;

}


.overview-item strong {

    display:
        block;

    color:
        var(--white);

    font-size:
        14px;

    line-height:
        1.4;

}


/* =========================================================
   17. ABOUT SECTION
========================================================= */

.about-section {

    padding:
        110px 0;

    background:
        #091525;

    border-top:
        1px solid rgba(255,255,255,.04);

}


.about-content {

    max-width:
        900px;

    margin:
        0 auto;

    padding:
        45px;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    box-shadow:
        var(--shadow);

}


.about-content p {

    position:
        relative;

    padding-left:
        25px;

    margin-bottom:
        24px;

    color:
        #b9c4d2;

    font-size:
        15px;

    line-height:
        1.9;

}


.about-content p:last-child {

    margin-bottom:
        0;

}


.about-content p::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        9px;

    width:
        5px;

    height:
        5px;

    border-radius:
        50%;

    background:
        var(--yellow);

    box-shadow:
        0 0 0 5px rgba(255,212,0,.08);

}


/* =========================================================
   18. BENEFIT SECTION
========================================================= */

.benefit-section {

    padding:
        110px 0;

    background:
        var(--navy);

}


.benefit-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

}


.benefit-card {

    position:
        relative;

    min-height:
        275px;

    padding:
        32px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        linear-gradient(
            145deg,
            #0d1b2d,
            #091525
        );

    overflow:
        hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.benefit-card::before {

    content:
        "";

    position:
        absolute;

    right:
        -70px;

    top:
        -70px;

    width:
        160px;

    height:
        160px;

    border:
        1px solid rgba(255,212,0,.08);

    border-radius:
        50%;

}


.benefit-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,212,0,.35);

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

}


.card-number {

    position:
        absolute;

    top:
        24px;

    right:
        26px;

    color:
        rgba(255,255,255,.10);

    font-size:
        42px;

    line-height:
        1;

    font-weight:
        900;

}


.benefit-icon {

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        24px;

    border:
        1px solid rgba(255,212,0,.25);

    border-radius:
        13px;

    background:
        rgba(255,212,0,.07);

    color:
        var(--yellow);

    font-size:
        14px;

    font-weight:
        900;

}


.benefit-card h3 {

    margin-bottom:
        11px;

    color:
        var(--white);

    font-size:
        18px;

    line-height:
        1.3;

    font-weight:
        800;

}


.benefit-card p {

    max-width:
        310px;

    color:
        #8f9bad;

    font-size:
        13px;

    line-height:
        1.75;

}


/* =========================================================
   19. GENERIC CARD HOVER
========================================================= */

.benefit-card,
.overview-item {

    will-change:
        transform;

}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 950px) {

    .overview-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .overview-item:nth-child(2) {

        border-right:
            0;

    }


    .overview-item:nth-child(-n+2) {

        border-bottom:
            1px solid var(--border);

    }


    .benefit-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   21. MOBILE
========================================================= */

@media (max-width: 600px) {

    .overview-section {

        padding:
            0 0 65px;

    }


    .overview-grid {

        grid-template-columns:
            1fr;

    }


    .overview-item {

        min-height:
            105px;

        border-right:
            0;

        border-bottom:
            1px solid var(--border);

    }


    .overview-item:last-child {

        border-bottom:
            0;

    }


    .overview-item:nth-child(2) {

        border-right:
            0;

    }


    .overview-item:nth-child(-n+2) {

        border-bottom:
            1px solid var(--border);

    }


    .about-section,
    .benefit-section {

        padding:
            75px 0;

    }


    .about-content {

        padding:
            28px 22px;

        border-radius:
            16px;

    }


    .about-content p {

        padding-left:
            19px;

        font-size:
            14px;

    }


    .benefit-grid {

        grid-template-columns:
            1fr;

        gap:
            14px;

    }


    .benefit-card {

        min-height:
            auto;

        padding:
            27px;

    }

}



/* =========================================================
   TANGGA FIBERGLASS DENKO
   STEP 3
   SPECIFICATION + DIMENSION + SAFETY
========================================================= */


/* =========================================================
   22. SPECIFICATION SECTION
========================================================= */

.specification-section {

    padding:
        110px 0;

    background:
        #091525;

}


.specification-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        18px;

}


.specification-card {

    position:
        relative;

    min-height:
        180px;

    padding:
        30px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        linear-gradient(
            145deg,
            #0d1b2d,
            #091525
        );

    overflow:
        hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.specification-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,212,0,.32);

    box-shadow:
        0 18px 40px rgba(0,0,0,.22);

}


.specification-card::after {

    content:
        "";

    position:
        absolute;

    right:
        -45px;

    bottom:
        -45px;

    width:
        120px;

    height:
        120px;

    border:
        1px solid rgba(255,212,0,.07);

    border-radius:
        50%;

}


.spec-number {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        42px;

    height:
        42px;

    margin-bottom:
        22px;

    border-radius:
        10px;

    background:
        rgba(255,212,0,.08);

    border:
        1px solid rgba(255,212,0,.22);

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        900;

}


.specification-card small {

    display:
        block;

    margin-bottom:
        7px;

    color:
        #728095;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        1.5px;

}


.specification-card h3 {

    margin:
        0 0 9px;

    color:
        var(--white);

    font-size:
        20px;

    font-weight:
        800;

    line-height:
        1.3;

}


.specification-card p {

    max-width:
        450px;

    color:
        #8996a8;

    font-size:
        13px;

    line-height:
        1.7;

}


/* =========================================================
   23. DIMENSION SECTION
========================================================= */

.dimension-section {

    padding:
        110px 0;

    background:
        var(--navy);

}


.dimension-table-wrapper {

    width:
        100%;

    overflow-x:
        auto;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        var(--card);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

}


.dimension-table {

    width:
        100%;

    border-collapse:
        collapse;

    min-width:
        620px;

}


.dimension-table tr {

    transition:
        background .2s ease;

}


.dimension-table tr:hover {

    background:
        rgba(255,255,255,.025);

}


.dimension-table tr:not(:last-child) {

    border-bottom:
        1px solid var(--border);

}


.dimension-table th {

    width:
        48%;

    padding:
        21px 25px;

    text-align:
        left;

    color:
        #8996a8;

    font-size:
        12px;

    font-weight:
        700;

}


.dimension-table td {

    padding:
        21px 25px;

    color:
        var(--white);

    font-size:
        13px;

    font-weight:
        800;

    text-align:
        right;

}


.dimension-table td::before {

    content:
        "•";

    margin-right:
        10px;

    color:
        var(--yellow);

}


/* =========================================================
   24. SAFETY SECTION
========================================================= */

.safety-section {

    position:
        relative;

    padding:
        115px 0;

    background:
        #091525;

    overflow:
        hidden;

}


.safety-section::before {

    content:
        "";

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    right:
        -180px;

    top:
        -180px;

    border:
        1px solid rgba(255,212,0,.06);

    border-radius:
        50%;

}


.safety-section::after {

    content:
        "";

    position:
        absolute;

    width:
        650px;

    height:
        650px;

    left:
        -350px;

    bottom:
        -350px;

    border:
        1px solid rgba(255,255,255,.025);

    border-radius:
        50%;

}


.safety-grid {

    position:
        relative;

    z-index:
        1;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        16px;

}


.safety-card {

    position:
        relative;

    min-height:
        250px;

    padding:
        30px 25px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        rgba(255,255,255,.025);

    overflow:
        hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;

}


.safety-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,212,0,.32);

    background:
        rgba(255,255,255,.045);

}


.safety-card::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        100%;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--yellow),
            transparent
        );

    opacity:
        .4;

}


.safety-icon {

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        25px;

    border-radius:
        12px;

    background:
        rgba(255,212,0,.07);

    border:
        1px solid rgba(255,212,0,.2);

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        900;

}


.safety-card h3 {

    margin-bottom:
        12px;

    color:
        var(--white);

    font-size:
        16px;

    line-height:
        1.35;

    font-weight:
        800;

}


.safety-card p {

    color:
        #8794a6;

    font-size:
        13px;

    line-height:
        1.75;

}


/* =========================================================
   25. SAFETY CHECK LIST
========================================================= */

.safety-card h3::after {

    content:
        "";

    display:
        block;

    width:
        28px;

    height:
        2px;

    margin-top:
        12px;

    background:
        var(--yellow);

}


/* =========================================================
   26. SPECIFICATION RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .specification-grid {

        grid-template-columns:
            1fr;

    }


    .safety-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   27. MOBILE
========================================================= */

@media (max-width: 600px) {

    .specification-section,
    .dimension-section,
    .safety-section {

        padding:
            75px 0;

    }


    .specification-grid {

        gap:
            12px;

    }


    .specification-card {

        min-height:
            auto;

        padding:
            25px;

    }


    .specification-card h3 {

        font-size:
            18px;

    }


    .dimension-table-wrapper {

        border-radius:
            14px;

    }


    .dimension-table th,
    .dimension-table td {

        padding:
            17px 18px;

        font-size:
            12px;

    }


    .dimension-table th {

        width:
            50%;

    }


    .safety-grid {

        grid-template-columns:
            1fr;

        gap:
            12px;

    }


    .safety-card {

        min-height:
            auto;

        padding:
            25px;

    }

}





/* =========================================================
   TANGGA FIBERGLASS DENKO
   STEP 4
   CONSTRUCTION + ADVANTAGES + APPLICATION
========================================================= */


/* =========================================================
   28. CONSTRUCTION SECTION
========================================================= */

.construction-section {

    position:
        relative;

    padding:
        115px 0;

    background:
        var(--navy);

    overflow:
        hidden;

}


.construction-grid {

    display:
        grid;

    grid-template-columns:
        1.15fr .85fr;

    gap:
        70px;

    align-items:
        stretch;

}


/* =========================================================
   CONSTRUCTION CONTENT
========================================================= */

.construction-content {

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

}


.construction-content > span {

    display:
        inline-block;

    margin-bottom:
        14px;

    color:
        var(--yellow);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        2px;

}


.construction-content h2 {

    margin:
        0 0 22px;

    max-width:
        650px;

    color:
        var(--white);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height:
        1.1;

    font-weight:
        800;

}


.construction-content h2 strong {

    color:
        var(--yellow);

}


.construction-content > p {

    max-width:
        650px;

    margin-bottom:
        28px;

    color:
        #8d9aac;

    font-size:
        14px;

    line-height:
        1.85;

}


/* =========================================================
   CONSTRUCTION LIST
========================================================= */

.construction-content ul {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        12px 18px;

    margin:
        0;

    padding:
        0;

    list-style:
        none;

}


.construction-content li {

    position:
        relative;

    padding:
        15px 15px 15px 42px;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    background:
        rgba(255,255,255,.025);

    color:
        #b5bfcd;

    font-size:
        12px;

    line-height:
        1.5;

    transition:
        border-color .25s ease,
        transform .25s ease,
        background .25s ease;

}


.construction-content li:hover {

    transform:
        translateX(4px);

    border-color:
        rgba(255,212,0,.25);

    background:
        rgba(255,212,0,.025);

}


.construction-content li::before {

    content:
        "✓";

    position:
        absolute;

    left:
        15px;

    top:
        50%;

    transform:
        translateY(-50%);

    width:
        19px;

    height:
        19px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255,212,0,.1);

    color:
        var(--yellow);

    font-size:
        10px;

    font-weight:
        900;

}


/* =========================================================
   29. CONSTRUCTION HIGHLIGHT
========================================================= */

.construction-highlight {

    position:
        relative;

    min-height:
        440px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid var(--border);

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            #0d1b2d,
            #07111e
        );

    overflow:
        hidden;

}


.construction-highlight::before {

    content:
        "";

    position:
        absolute;

    width:
        330px;

    height:
        330px;

    border:
        1px solid rgba(255,212,0,.12);

    border-radius:
        50%;

}


.construction-highlight::after {

    content:
        "";

    position:
        absolute;

    width:
        210px;

    height:
        210px;

    border:
        1px solid rgba(255,255,255,.05);

    border-radius:
        50%;

}


.construction-highlight > div {

    position:
        relative;

    z-index:
        2;

    width:
        210px;

    height:
        210px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(255,212,0,.28);

    border-radius:
        50%;

    background:
        rgba(255,212,0,.035);

    text-align:
        center;

    box-shadow:
        0 0 70px rgba(255,212,0,.05);

}


.construction-highlight small {

    margin-bottom:
        10px;

    color:
        #758296;

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        2px;

}


.construction-highlight strong {

    color:
        var(--yellow);

    font-size:
        28px;

    font-weight:
        900;

    letter-spacing:
        1px;

}


.construction-highlight span {

    margin-top:
        7px;

    color:
        #8c99aa;

    font-size:
        11px;

}


/* =========================================================
   30. ADVANTAGES SECTION
========================================================= */

.advantages-section {

    padding:
        115px 0;

    background:
        #091525;

}


.advantages-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

}


.advantage-card {

    position:
        relative;

    min-height:
        245px;

    padding:
        30px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        var(--card);

    overflow:
        hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.advantage-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,212,0,.3);

    box-shadow:
        0 20px 45px rgba(0,0,0,.22);

}


.advantage-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        0;

    width:
        100%;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            var(--yellow),
            transparent
        );

    opacity:
        .35;

}


.advantage-card > span {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        42px;

    height:
        42px;

    margin-bottom:
        25px;

    border-radius:
        10px;

    border:
        1px solid rgba(255,212,0,.2);

    background:
        rgba(255,212,0,.06);

    color:
        var(--yellow);

    font-size:
        10px;

    font-weight:
        900;

}


.advantage-card h3 {

    margin:
        0 0 12px;

    color:
        var(--white);

    font-size:
        18px;

    font-weight:
        800;

}


.advantage-card p {

    margin:
        0;

    color:
        #8592a4;

    font-size:
        13px;

    line-height:
        1.75;

}


/* =====================================================
   APPLICATION / GALERI PENGGUNAAN
   FINAL VERSION - PUSAT DALTON
===================================================== */

.application-section {
    width: 100%;
    padding: 110px 0;
    background: #06101f;
    overflow: hidden;
}

.application-section .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
}


/* -----------------------------------------------------
   HEADING
----------------------------------------------------- */

.application-section .section-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.application-section .section-heading > span {
    display: block;
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #ffd400;
}

.application-section .section-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px) !important;
    line-height: 1.08;

    font-weight: 800;
    color: #ffffff;
}

.application-section .section-heading h2 strong {
    color: #ffd400;
}

.application-section .section-heading p {
    max-width: 700px;
    margin: 18px auto 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,.68);
}


/* -----------------------------------------------------
   GRID
----------------------------------------------------- */

.application-grid {
    width: 100% !important;
    max-width: 1180px !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 22px !important;

    align-items: stretch;
}


/* -----------------------------------------------------
   CARD
----------------------------------------------------- */

.application-card {
    position: relative;

    width: 100% !important;
    min-width: 0;

    overflow: hidden;

    background: #0b1729;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.22);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.application-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255,212,0,.55);

    box-shadow:
        0 25px 55px rgba(0,0,0,.35);
}


/* -----------------------------------------------------
   IMAGE
----------------------------------------------------- */

.application-image {
    position: relative;

    width: 100% !important;

    height: 270px !important;

    aspect-ratio: auto !important;

    overflow: hidden;

    background: #111d2e;
}

.application-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;

    object-position: center;

    opacity: 1 !important;

    transition:
        transform .5s ease;
}

.application-card:hover
.application-image img {
    transform: scale(1.06);
}


/* -----------------------------------------------------
   IMAGE OVERLAY
----------------------------------------------------- */

.application-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.65),
            transparent 55%
        );
}


/* -----------------------------------------------------
   CONTENT
----------------------------------------------------- */

.application-content {
    position: relative;

    padding: 22px 22px 24px !important;

    min-height: 150px;

    background: #0b1729;
}

.application-content > span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-bottom: 14px;

    border-radius: 8px;

    background: #ffd400;
    color: #07101d;

    font-size: 11px;
    font-weight: 900;
}

.application-content h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 18px !important;
    line-height: 1.3;

    font-weight: 800;
}

.application-content p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 13px !important;
    line-height: 1.65;
}


/* =====================================================
   IMAGE ERROR STATE
===================================================== */

.application-image.image-missing {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 270px;

    background:
        linear-gradient(
            135deg,
            #0d1b2d,
            #14253b
        );
}

.application-image.image-missing::before {
    content: "Gambar produk";

    color: rgba(255,255,255,.45);

    font-size: 13px;
    font-weight: 600;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .application-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

    .application-image {
        height: 300px !important;
    }

}


@media (max-width: 600px) {

    .application-section {
        padding: 80px 0;
    }

    .application-section .container {
        width: calc(100% - 28px) !important;
    }

    .application-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .application-image {
        height: 280px !important;
    }

    .application-content {
        min-height: auto;
    }

}


/* =========================================================
   32. RESPONSIVE CONSTRUCTION
========================================================= */

@media (max-width: 1000px) {

    .construction-grid {

        grid-template-columns:
            1fr;

        gap:
            40px;

    }


    .construction-highlight {

        min-height:
            350px;

    }


    .advantages-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .application-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =========================================================
   33. TABLET
========================================================= */

@media (max-width: 760px) {

    .construction-content ul {

        grid-template-columns:
            1fr;

    }


    .advantages-grid {

        grid-template-columns:
            1fr;

    }


    .application-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .application-item {

        min-height:
            125px;

    }

}


/* =========================================================
   34. MOBILE
========================================================= */

@media (max-width: 520px) {

    .construction-section,
    .advantages-section,
    .application-section {

        padding:
            75px 0;

    }


    .construction-content h2 {

        font-size:
            30px;

    }


    .construction-content li {

        padding:
            14px 14px 14px 40px;

    }


    .construction-highlight {

        min-height:
            280px;

        border-radius:
            18px;

    }


    .construction-highlight > div {

        width:
            175px;

        height:
            175px;

    }


    .construction-highlight strong {

        font-size:
            22px;

    }


    .advantages-grid {

        gap:
            12px;

    }


    .advantage-card {

        min-height:
            auto;

        padding:
            25px;

    }


    .application-grid {

        grid-template-columns:
            1fr;

        gap:
            10px;

    }


    .application-item {

        min-height:
            95px;

        align-items:
            center;

    }

}




/* =========================================================
   TANGGA FIBERGLASS DENKO
   STEP 5
   CTA + FAQ + FOOTER + SEO + FINAL RESPONSIVE
========================================================= */


/* =========================================================
   35. CTA SECTION
========================================================= */

.cta-section {

    position:
        relative;

    padding:
        110px 0;

    background:
        #07111e;

    overflow:
        hidden;

}


.cta-section::before {

    content:
        "";

    position:
        absolute;

    width:
        520px;

    height:
        520px;

    left:
        -260px;

    top:
        -260px;

    border:
        1px solid rgba(255,212,0,.07);

    border-radius:
        50%;

}


.cta-section::after {

    content:
        "";

    position:
        absolute;

    width:
        400px;

    height:
        400px;

    right:
        -200px;

    bottom:
        -200px;

    border:
        1px solid rgba(255,255,255,.025);

    border-radius:
        50%;

}


.cta-box {

    position:
        relative;

    z-index:
        2;

    max-width:
        1050px;

    margin:
        0 auto;

    padding:
        65px;

    text-align:
        center;

    border:
        1px solid rgba(255,212,0,.18);

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            #101f32,
            #0a1625
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.3);

    overflow:
        hidden;

}


.cta-box::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        10%;

    width:
        80%;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--yellow),
            transparent
        );

}


.cta-box > span {

    display:
        block;

    margin-bottom:
        15px;

    color:
        var(--yellow);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        2px;

}


.cta-box h2 {

    max-width:
        760px;

    margin:
        0 auto 18px;

    color:
        var(--white);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height:
        1.1;

    font-weight:
        800;

}


.cta-box p {

    max-width:
        680px;

    margin:
        0 auto 30px;

    color:
        #8996a8;

    font-size:
        14px;

    line-height:
        1.8;

}


.cta-actions {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    flex-wrap:
        wrap;

}


/* =========================================================
   36. CTA BUTTONS
========================================================= */

.cta-actions .btn {

    min-width:
        175px;

}


/* =========================================================
   37. FAQ SECTION
========================================================= */

.faq-section {

    padding:
        110px 0;

    background:
        var(--navy);

}


.faq-container {

    max-width:
        900px;

    margin:
        0 auto;

}


.faq-item {

    margin-bottom:
        10px;

    border:
        1px solid var(--border);

    border-radius:
        14px;

    background:
        var(--card);

    overflow:
        hidden;

    transition:
        border-color .25s ease,
        background .25s ease;

}


.faq-item:hover {

    border-color:
        rgba(255,212,0,.2);

}


.faq-item.active {

    border-color:
        rgba(255,212,0,.3);

    background:
        #0d1b2d;

}


.faq-question {

    width:
        100%;

    min-height:
        72px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        20px 24px;

    border:
        0;

    outline:
        none;

    background:
        transparent;

    color:
        var(--white);

    text-align:
        left;

    cursor:
        pointer;

    font-family:
        inherit;

    font-size:
        14px;

    font-weight:
        700;

}


.faq-question span {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

}


.faq-question small {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    flex-shrink:
        0;

    width:
        34px;

    height:
        34px;

    border:
        1px solid rgba(255,212,0,.18);

    border-radius:
        9px;

    background:
        rgba(255,212,0,.05);

    color:
        var(--yellow);

    font-size:
        9px;

    font-weight:
        900;

}


.faq-question b {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-shrink:
        0;

    width:
        32px;

    height:
        32px;

    border:
        1px solid var(--border);

    border-radius:
        8px;

    color:
        var(--yellow);

    font-size:
        20px;

    font-weight:
        400;

    transition:
        transform .25s ease,
        background .25s ease;

}


.faq-item.active
.faq-question b {

    transform:
        rotate(45deg);

    background:
        rgba(255,212,0,.08);

}


.faq-answer {

    display:
        grid;

    grid-template-rows:
        0fr;

    transition:
        grid-template-rows .35s ease;

}


.faq-answer p {

    min-height:
        0;

    margin:
        0;

    padding:
        0 24px;

    color:
        #8996a8;

    font-size:
        13px;

    line-height:
        1.8;

    overflow:
        hidden;

}


.faq-item.active .faq-answer {

    grid-template-rows:
        1fr;

}


.faq-item.active .faq-answer p {

    padding:
        0 24px 25px 73px;

}


/* =========================================================
   38. FOOTER
========================================================= */

.site-footer {

    padding:
        35px 0;

    border-top:
        1px solid var(--border);

    background:
        #050c15;

}


.site-footer .container {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

}


.footer-product {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

}


.footer-product strong {

    color:
        var(--yellow);

    font-size:
        9px;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

}


.footer-product span {

    color:
        #8c99aa;

    font-size:
        12px;

}


.footer-contact a {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        42px;

    padding:
        0 20px;

    border:
        1px solid rgba(255,212,0,.25);

    border-radius:
        9px;

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        background .25s ease,
        border-color .25s ease;

}


.footer-contact a:hover {

    background:
        rgba(255,212,0,.08);

    border-color:
        rgba(255,212,0,.45);

}


/* =========================================================
   39. SEARCH TAGS
========================================================= */

.search-tags {

    position:
        absolute;

    width:
        1px;

    height:
        1px;

    padding:
        0;

    margin:
        -1px;

    overflow:
        hidden;

    clip:
        rect(0,0,0,0);

    white-space:
        nowrap;

    border:
        0;

}


/* =========================================================
   40. PAGE ERROR
========================================================= */

.page-error {

    min-height:
        100vh;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        30px;

    background:
        var(--navy);

}


.error-card {

    width:
        100%;

    max-width:
        520px;

    padding:
        50px;

    text-align:
        center;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    background:
        var(--card);

}


.error-icon {

    width:
        60px;

    height:
        60px;

    margin:
        0 auto 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255,212,0,.08);

    border:
        1px solid rgba(255,212,0,.25);

    color:
        var(--yellow);

    font-size:
        25px;

    font-weight:
        900;

}


.error-card h1 {

    margin-bottom:
        12px;

    color:
        var(--white);

    font-size:
        25px;

}


.error-card p {

    margin-bottom:
        25px;

    color:
        #8996a8;

    font-size:
        13px;

    line-height:
        1.7;

}


/* =========================================================
   41. GLOBAL BUTTON FINISHING
========================================================= */

.btn {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    min-height:
        48px;

    padding:
        0 23px;

    border-radius:
        9px;

    font-family:
        inherit;

    font-size:
        12px;

    font-weight:
        800;

    text-decoration:
        none;

    cursor:
        pointer;

    overflow:
        hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;

}


.btn:hover {

    transform:
        translateY(-3px);

}


.btn-primary {

    border:
        1px solid var(--yellow);

    background:
        var(--yellow);

    color:
        #07111e;

    box-shadow:
        0 10px 30px rgba(255,212,0,.12);

}


.btn-primary:hover {

    box-shadow:
        0 15px 35px rgba(255,212,0,.2);

}


.btn-outline {

    border:
        1px solid rgba(255,255,255,.16);

    background:
        transparent;

    color:
        var(--white);

}


.btn-outline:hover {

    border-color:
        rgba(255,212,0,.35);

    background:
        rgba(255,212,0,.05);

}


/* =========================================================
   42. FINAL SECTION SPACING
========================================================= */

.section-heading {

    margin-bottom:
        50px;

}


.section-heading > span {

    display:
        inline-block;

    margin-bottom:
        12px;

    color:
        var(--yellow);

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        2px;

}


.section-heading h2 {

    margin:
        0;

    color:
        var(--white);

    font-size:
        clamp(28px, 4vw, 44px);

    line-height:
        1.15;

    font-weight:
        800;

}


.section-heading h2 strong {

    color:
        var(--yellow);

}


.section-heading p {

    max-width:
        680px;

    margin:
        18px 0 0;

    color:
        #8794a6;

    font-size:
        14px;

    line-height:
        1.8;

}


/* =========================================================
   43. FINAL MOBILE
========================================================= */

@media (max-width: 700px) {

    .cta-section,
    .faq-section {

        padding:
            75px 0;

    }


    .cta-box {

        padding:
            40px 22px;

        border-radius:
            18px;

    }


    .cta-box h2 {

        font-size:
            30px;

    }


    .cta-actions {

        flex-direction:
            column;

        width:
            100%;

    }


    .cta-actions .btn {

        width:
            100%;

    }


    .faq-question {

        min-height:
            65px;

        padding:
            16px;

        font-size:
            13px;

    }


    .faq-question span {

        gap:
            10px;

    }


    .faq-question small {

        width:
            30px;

        height:
            30px;

    }


    .faq-item.active
    .faq-answer p {

        padding:
            0 16px 20px 56px;

    }


    .site-footer {

        padding:
            28px 0;

    }


    .site-footer .container {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .footer-contact {

        width:
            100%;

    }


    .footer-contact a {

        width:
            100%;

    }

}


/* =========================================================
   44. VERY SMALL SCREEN
========================================================= */

@media (max-width: 400px) {

    .cta-box {

        padding:
            32px 17px;

    }


    .cta-box h2 {

        font-size:
            26px;

    }


    .faq-question {

        font-size:
            12px;

    }


    .faq-question b {

        width:
            28px;

        height:
            28px;

    }

}


/* =========================================================
   45. ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        transition:
            none !important;

        animation:
            none !important;

    }

}



/* =========================================================
   TANGGA FIBERGLASS DENKO
   STEP 6
   PREMIUM FINISHING + HOVER + REVEAL + IMAGE + MOBILE NAV
========================================================= */


/* =========================================================
   46. SMOOTH SCROLL
========================================================= */

html {
    scroll-behavior: smooth;
}


/* =========================================================
   47. GLOBAL SELECTION
========================================================= */

::selection {
    background: var(--yellow);
    color: #07111e;
}


/* =========================================================
   48. IMAGE PREMIUM EFFECT
========================================================= */

.product-hero-image {
    position: relative;
}


.product-hero-image .image-frame {
    position: relative;
    overflow: hidden;
}


.product-hero-image .image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255,255,255,.08) 50%,
            transparent 80%
        );

    transform:
        translateX(-120%);

    transition:
        transform .8s ease;
}


.product-hero-image .image-frame:hover::before {
    transform:
        translateX(120%);
}


.product-hero-image img {
    transition:
        transform .6s cubic-bezier(.2,.7,.2,1),
        filter .4s ease;
}


.product-hero-image .image-frame:hover img {
    transform:
        scale(1.035);

    filter:
        brightness(1.04);
}


/* =========================================================
   49. OVERVIEW PREMIUM
========================================================= */

.overview-item {
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.overview-item:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(255,212,0,.28);

    background:
        rgba(255,255,255,.035);
}


.overview-icon {
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.overview-item:hover .overview-icon {
    background:
        var(--yellow);

    color:
        #07111e;

    transform:
        scale(1.05);
}


/* =========================================================
   50. ABOUT CONTENT
========================================================= */

.about-content p {
    transition:
        color .25s ease,
        transform .25s ease;
}


.about-content p:hover {
    color:
        #b7c1cf;

    transform:
        translateX(4px);
}


/* =========================================================
   51. CARD HOVER MICRO INTERACTION
========================================================= */

.model-card,
.specification-card,
.safety-card,
.advantage-card,
.application-item {
    will-change:
        transform;
}


/* =========================================================
   52. MODEL IMAGE EFFECT
========================================================= */

.model-card-image {
    overflow:
        hidden;
}


.model-card-image img {
    transition:
        transform .55s cubic-bezier(.2,.7,.2,1),
        filter .35s ease;
}


.model-card:hover .model-card-image img {
    transform:
        scale(1.045);

    filter:
        brightness(1.04)
        contrast(1.02);
}


/* =========================================================
   53. MODEL NUMBER
========================================================= */

.model-number {
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.model-card:hover .model-number {
    background:
        var(--yellow);

    color:
        #07111e;

    transform:
        translateY(-2px);
}


/* =========================================================
   54. MODEL DETAIL LINK
========================================================= */

.model-detail-link {
    transition:
        color .25s ease,
        gap .25s ease;
}


.model-detail-link span {
    display:
        inline-block;

    transition:
        transform .25s ease;
}


.model-detail-link:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   55. SECTION REVEAL
========================================================= */

@keyframes sectionReveal {

    from {
        opacity: 0;
        transform:
            translateY(20px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


.hero-content,
.product-hero-image,
.overview-item,
.section-heading,
.model-card,
.specification-card,
.safety-card,
.advantage-card,
.application-item,
.construction-content,
.construction-highlight,
.cta-box,
.faq-item {
    animation:
        sectionReveal .7s ease both;
}


/* =========================================================
   56. STAGGER CARD ANIMATION
========================================================= */

.model-card:nth-child(2),
.specification-card:nth-child(2),
.safety-card:nth-child(2),
.advantage-card:nth-child(2),
.application-item:nth-child(2),
.faq-item:nth-child(2) {
    animation-delay:
        .08s;
}


.model-card:nth-child(3),
.specification-card:nth-child(3),
.safety-card:nth-child(3),
.advantage-card:nth-child(3),
.application-item:nth-child(3),
.faq-item:nth-child(3) {
    animation-delay:
        .16s;
}


.model-card:nth-child(4),
.specification-card:nth-child(4),
.safety-card:nth-child(4),
.advantage-card:nth-child(4),
.application-item:nth-child(4),
.faq-item:nth-child(4) {
    animation-delay:
        .24s;
}


.model-card:nth-child(5),
.specification-card:nth-child(5),
.safety-card:nth-child(5),
.advantage-card:nth-child(5),
.application-item:nth-child(5),
.faq-item:nth-child(5) {
    animation-delay:
        .32s;
}


.model-card:nth-child(6),
.specification-card:nth-child(6),
.safety-card:nth-child(6),
.advantage-card:nth-child(6),
.application-item:nth-child(6),
.faq-item:nth-child(6) {
    animation-delay:
        .40s;
}


/* =========================================================
   57. HERO BADGES
========================================================= */

.product-badges span {
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.product-badges span:hover {
    transform:
        translateY(-3px);

    background:
        rgba(255,212,0,.09);

    border-color:
        rgba(255,212,0,.3);
}


/* =========================================================
   58. EYEBROW
========================================================= */

.product-eyebrow {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;
}


.product-eyebrow::before {
    content:
        "";

    width:
        28px;

    height:
        2px;

    background:
        var(--yellow);
}


/* =========================================================
   59. HERO IMAGE GLOW
========================================================= */

.product-hero-image::after {
    content:
        "";

    position:
        absolute;

    z-index:
        -1;

    width:
        70%;

    height:
        70%;

    left:
        15%;

    top:
        15%;

    border-radius:
        50%;

    background:
        rgba(255,212,0,.045);

    filter:
        blur(60px);

    pointer-events:
        none;
}


/* =========================================================
   60. CONSTRUCTION HIGHLIGHT ANIMATION
========================================================= */

@keyframes softPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(255,212,0,0);
    }

    50% {
        box-shadow:
            0 0 45px rgba(255,212,0,.08);
    }

}


.construction-highlight > div {
    animation:
        softPulse 4s ease-in-out infinite;
}


/* =========================================================
   61. CTA PULSE
========================================================= */

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow:
            0 10px 30px rgba(255,212,0,.10);
    }

    50% {
        box-shadow:
            0 14px 40px rgba(255,212,0,.20);
    }

}


.cta-actions .btn-primary {
    animation:
        ctaGlow 3s ease-in-out infinite;
}


/* =========================================================
   62. FAQ SMOOTH
========================================================= */

.faq-question {
    transition:
        color .25s ease,
        background .25s ease;
}


.faq-question:hover {
    color:
        var(--yellow);

    background:
        rgba(255,255,255,.015);
}


/* =========================================================
   63. FOOTER HOVER
========================================================= */

.footer-product span {
    transition:
        color .25s ease;
}


.footer-product:hover span {
    color:
        #b8c2cf;
}


/* =========================================================
   64. FOCUS ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid var(--yellow);

    outline-offset:
        4px;
}


/* =========================================================
   65. PREVENT HORIZONTAL OVERFLOW
========================================================= */

html,
body {
    max-width:
        100%;

    overflow-x:
        hidden;
}


/* =========================================================
   66. MOBILE HERO IMAGE
========================================================= */

@media (max-width: 700px) {

    .product-hero-image {
        margin-top:
            10px;
    }


    .product-hero-image .image-frame {
        border-radius:
            16px;
    }


    .product-hero-image img {
        transform:
            none !important;
    }


    .product-hero-image .image-frame:hover img {
        transform:
            none !important;
    }


    .product-badges {
        gap:
            7px;
    }


    .product-badges span {
        padding:
            7px 10px;

        font-size:
            9px;
    }

}


/* =========================================================
   67. MOBILE CARD HOVER
========================================================= */

@media (max-width: 600px) {

    .model-card:hover,
    .specification-card:hover,
    .safety-card:hover,
    .advantage-card:hover,
    .application-item:hover {
        transform:
            none;
    }


    .construction-content li:hover {
        transform:
            none;
    }

}


/* =========================================================
   68. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation:
            none !important;

        transition:
            none !important;

    }

}



/* =====================================================
   FINAL LAYOUT FIX
   PUSAT DALTON - TANGGA FIBERGLASS
   OVERRIDE
===================================================== */


/* =====================================================
   GLOBAL
===================================================== */

html {
    font-size: 16px;
}

body {
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =====================================================
   HERO
===================================================== */

.product-hero {
    width: 100%;
}

.product-hero-grid {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr) !important;
    gap: 70px !important;
    align-items: center !important;
}

.product-hero-content {
    width: 100%;
}

.product-hero-content h1 {
    font-size: clamp(38px, 4vw, 64px) !important;
    line-height: 1.04 !important;
    margin: 0 0 22px !important;
}

.product-hero-content p,
.product-subtitle,
.product-lead {
    font-size: 16px !important;
    line-height: 1.75 !important;
    max-width: 680px !important;
}

.product-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 25px 0 !important;
}

.product-badges span {
    font-size: 13px !important;
    padding: 9px 15px !important;
}


/* =====================================================
   HERO IMAGE
===================================================== */

.product-hero-image,
.product-hero-visual {
    width: 100% !important;
    min-width: 0 !important;
}

.product-hero-image img,
.product-hero-visual img,
.image-frame img {
    display: block !important;
    width: 100% !important;
    max-width: 560px !important;
    height: auto !important;
    max-height: 650px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}


/* =====================================================
   QUICK FEATURES
===================================================== */

.quick-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 18px !important;
}

.quick-card {
    min-height: 120px !important;
    padding: 24px !important;
}

.quick-card small {
    font-size: 11px !important;
}

.quick-card strong {
    display: block;
    font-size: 18px !important;
    line-height: 1.3 !important;
}


/* =====================================================
   SECTION GLOBAL
===================================================== */

.about-section,
.specification-section,
.dimension-section,
.safety-section,
.construction-section,
.advantages-section,
.application-section,
.industrial-section,
.faq-section,
.cta-section {
    width: 100%;
}

.about-section .container,
.specification-section .container,
.dimension-section .container,
.safety-section .container,
.construction-section .container,
.advantages-section .container,
.application-section .container,
.industrial-section .container,
.faq-section .container,
.cta-section .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    width: 100% !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-heading h2 {
    font-size: clamp(32px, 3.5vw, 52px) !important;
    line-height: 1.08 !important;
}

.section-heading p {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   ABOUT
===================================================== */

.about-content {
    width: min(900px, 100%) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.about-content p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 18px !important;
}


/* =====================================================
   BENEFITS
===================================================== */

.benefit-grid,
.advantages-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 20px !important;
}

.benefit-card,
.advantage-card {
    min-height: 190px !important;
    padding: 28px !important;
}

.benefit-card h3,
.advantage-card h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

.benefit-card p,
.advantage-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   APPLICATION
===================================================== */

.application-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 22px !important;
}

.application-card {
    width: 100% !important;
    min-width: 0 !important;
}

.application-image {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
}

.application-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.application-content {
    padding: 20px !important;
}

.application-content h3 {
    font-size: 18px !important;
}

.application-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
}


/* =====================================================
   SPECIFICATION TABLE
===================================================== */

.spec-table,
.specification-table {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    border-collapse: collapse !important;
}

.spec-table th,
.spec-table td,
.specification-table th,
.specification-table td {
    padding: 17px 20px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}


/* =====================================================
   DIMENSION
===================================================== */

.dimension-table-wrapper {
    width: 100% !important;
    max-width: 950px !important;
    margin: 0 auto !important;
}

.dimension-table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.dimension-table th,
.dimension-table td {
    padding: 16px 20px !important;
    font-size: 14px !important;
}


/* =====================================================
   SAFETY
===================================================== */

.safety-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 20px !important;
}

.safety-card {
    min-height: 210px !important;
    padding: 28px !important;
}

.safety-card h3 {
    font-size: 19px !important;
}

.safety-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   CONSTRUCTION
===================================================== */

.construction-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 24px !important;
}

.construction-card {
    width: 100% !important;
}

.construction-image {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
}

.construction-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


/* =====================================================
   INDUSTRIAL
===================================================== */

.industrial-section .container {
    width: min(1180px, calc(100% - 48px)) !important;
}

.industrial-list {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 15px !important;
}

.industrial-item {
    padding: 18px 20px !important;
    font-size: 14px !important;
}


/* =====================================================
   FAQ
===================================================== */

.faq-container {
    width: min(900px, 100%) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.faq-item {
    width: 100% !important;
    margin-bottom: 12px !important;
}

.faq-question {
    width: 100% !important;
    min-height: 64px !important;
    padding: 18px 22px !important;
    font-size: 15px !important;
}

.faq-answer {
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   CTA
===================================================== */

.cta-box {
    width: min(1000px, 100%) !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 55px !important;
}

.cta-box h2 {
    font-size: clamp(30px, 4vw, 48px) !important;
    line-height: 1.1 !important;
}

.cta-box p {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .container,
    .product-hero-grid,
    .about-section .container,
    .specification-section .container,
    .dimension-section .container,
    .safety-section .container,
    .construction-section .container,
    .advantages-section .container,
    .application-section .container,
    .industrial-section .container,
    .faq-section .container,
    .cta-section .container {
        width: min(
            100% - 32px,
            700px
        ) !important;
    }


    .product-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }


    .quick-grid {
        grid-template-columns:
            repeat(2, 1fr) !important;
    }


    .benefit-grid,
    .advantages-grid {
        grid-template-columns:
            repeat(2, 1fr) !important;
    }


    .application-grid {
        grid-template-columns:
            repeat(2, 1fr) !important;
    }


    .safety-grid {
        grid-template-columns:
            repeat(2, 1fr) !important;
    }


    .construction-grid {
        grid-template-columns: 1fr !important;
    }


    .industrial-list {
        grid-template-columns:
            repeat(2, 1fr) !important;
    }

}


@media (max-width: 600px) {

    .container,
    .product-hero-grid,
    .about-section .container,
    .specification-section .container,
    .dimension-section .container,
    .safety-section .container,
    .construction-section .container,
    .advantages-section .container,
    .application-section .container,
    .industrial-section .container,
    .faq-section .container,
    .cta-section .container {
        width: calc(100% - 28px) !important;
    }


    .quick-grid,
    .benefit-grid,
    .advantages-grid,
    .application-grid,
    .safety-grid,
    .industrial-list {
        grid-template-columns: 1fr !important;
    }


    .product-hero-content h1 {
        font-size: 36px !important;
    }


    .section-heading h2 {
        font-size: 32px !important;
    }


    .cta-box {
        padding: 32px 22px !important;
    }


    .spec-table th,
    .spec-table td,
    .specification-table th,
    .specification-table td {
        padding: 12px !important;
        font-size: 13px !important;
    }

}