.gallery-section{
    padding:80px 20px;
    background:#f8fafc;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
    color:#0f172a;
}

.section-header p{
    color:#64748b;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-item:hover{
    transform:translateY(-5px);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* TABLET */
@media(max-width:991px){

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

    .gallery-item img{
        height:250px;
    }

}

/* HP */
@media(max-width:768px){

    .gallery-section{
        padding:60px 15px;
    }

    .section-header h2{
        font-size:28px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery-item img{
        height:auto;
        max-height:350px;
    }

}


.trust-section{
    padding:80px 20px;
    background:#ffffff;
}

.trust-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.trust-image{
    flex:1;
}

.trust-image img{
    width:100%;
    max-width:600px;
    height:400px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.trust-content{
    flex:1;
}

.trust-badge{
    display:inline-block;
    background:#e8f5e9;
    color:#0f8a3b;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.trust-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    color:#0f172a;
}

.trust-content h2 span{
    color:#0ea5e9;
}

.trust-content p{
    font-size:16px;
    line-height:1.8;
    color:#475569;
    margin-bottom:15px;
}

.trust-list{
    margin-top:25px;
}

.trust-item{
    padding:10px 0;
    font-size:16px;
    color:#1e293b;
    border-bottom:1px solid #e2e8f0;
}

.trust-btn{
    display:inline-block;
    margin-top:30px;
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

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

/* TABLET */
@media(max-width:992px){

    .trust-container{
        flex-direction:column;
    }

    .trust-content h2{
        font-size:34px;
    }

}

/* HP */
@media(max-width:768px){

    .trust-section{
        padding:60px 15px;
    }

    .trust-container{
        gap:30px;
    }

    .trust-image img{
        width:100%;
        height:auto;
        max-height:400px;
    }

    .trust-content h2{
        font-size:28px;
    }

    .trust-content p{
        font-size:15px;
    }

    .trust-item{
        font-size:15px;
    }

    .trust-btn{
        width:100%;
        text-align:center;
    }

}

.closing-section{
    background:linear-gradient(
        135deg,
        #2a0000 0%,
        #4a0404 50%,
        #170000 100%
    );
    padding:100px 20px;
    overflow:hidden;
    position:relative;
}

.closing-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

.closing-content{
    flex:1;
}

.closing-badge{
    display:inline-block;
    background:rgba(255,255,255,.1);
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.closing-content h2{
    color:#fff;
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
}

.closing-content h2 span{
    color:#ffd54f;
}

.closing-desc{
    color:#e2e8f0;
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

.closing-points{
    margin-bottom:35px;
}

.closing-item{
    color:#fff;
    padding:10px 0;
    font-size:17px;
}

.closing-cta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.closing-btn-primary{
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

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

.closing-btn-secondary{
    background:#ffffff;
    color:#111827;
    text-decoration:none;
    padding:18px 35px;
    border-radius:14px;
    font-weight:700;
}

.closing-image{
    flex:1;
    position:relative;
}

.closing-image img{
    width:100%;
    max-width:600px;
    height:400px;
    object-fit:cover;
    border-radius:25px;
    display:block;
    box-shadow:0 25px 50px rgba(0,0,0,.4);
}

.closing-floating-card{
    position:absolute;
    bottom:-20px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.closing-floating-card .number{
    font-size:32px;
    font-weight:800;
    color:#b91c1c;
}

.closing-floating-card .text{
    color:#475569;
    font-size:14px;
}

/* Tablet */
@media(max-width:992px){

    .closing-container{
        flex-direction:column-reverse;
    }

    .closing-content h2{
        font-size:38px;
    }

}

/* Mobile */
@media(max-width:768px){

    .closing-section{
        padding:70px 15px;
    }

    .closing-content h2{
        font-size:30px;
    }

    .closing-desc{
        font-size:16px;
    }

    .closing-image img{
        height:auto;
    }

    .closing-btn-primary,
    .closing-btn-secondary{
        width:100%;
        text-align:center;
    }

}

.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:70px;

    background:#ffffff;
    border-top:1px solid #e5e7eb;

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

    z-index:9999;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);
}

.nav-item{
    flex:1;
    text-decoration:none;
    color:#374151;

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

    height:100%;
    transition:.3s;
}

.nav-item:hover{
    background:#f8fafc;
}

.nav-icon{
    font-size:22px;
    margin-bottom:3px;
}

.nav-text{
    font-size:12px;
    font-weight:600;
}

.nav-wa{
    color:#25d366;
}

.nav-wa .nav-icon{
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15);
    }
    100%{
        transform:scale(1);
    }
}