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

.hero{
    background: #030b17;
    padding-top: 56px; /* tinggi navbar */
}

.hero-banner{
    width: 100%;
    height: auto;
    display: block;
}


/* =========================
   ACTION SECTION
========================= */

.hero-action{
    background:
        linear-gradient(
            rgba(3,11,23,.35),
            rgba(3,11,23,.35)
        ),
        url('../images/bgtombol.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 70px 0;
}
.action-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


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

.btn-action{
    min-width: 280px;

    padding: 18px 30px;

    text-align: center;
    text-decoration: none;

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

    border-radius: 14px;

    transition: all .3s ease;

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

.btn-action:hover{
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-product{
    background: linear-gradient(
        135deg,
        #0d6efd,
        #00bfff
    );

    color:#fff;

    box-shadow:
        0 0 15px rgba(13,110,253,.5),
        0 0 30px rgba(13,110,253,.2);
}

.btn-product:hover{
    color: #fff;
}

.btn-contact{
    background:#08111f;

    color:#fff;

    border:1px solid #1d4ed8;

    box-shadow:
        0 0 10px rgba(29,78,216,.25);
}

.btn-contact:hover{
    color: #fff;
    border-color: #0d6efd;
}

.about-section{
    background:#050d18;
    color:#fff;
    padding:100px 0;
}

.section-tag{
    color:#00bfff;
    font-weight:600;
    letter-spacing:2px;
}

.about-section h2{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
}

.about-card{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-item{
    background:#08111f;

    border:1px solid rgba(0,191,255,.15);

    border-radius:15px;

    padding:25px;

    text-align:center;
}

.stat-item h3{
    color:#00bfff;
    margin-bottom:10px;
}

/* =========================
   BRAND
========================= */
.brand-section{
    background:#07111f;
    padding:100px 0;
}

.brand-section h2{
    color:#fff;
    margin-top:10px;
}

.brand-section span{
    color:#00bfff;
    letter-spacing:2px;
}

.brand-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

    margin-top:50px;
}

.brand-card{

    background:#f8fafc;

    border:1px solid rgba(0,191,255,.15);

    border-radius:15px;

    padding:30px;

    min-height:130px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;
}

.brand-card:hover{

    transform:translateY(-5px);

    border-color:#00bfff;

    box-shadow:
    0 0 25px rgba(0,191,255,.15);
}

.brand-card img{

    max-width:100%;
    max-height:60px;

    object-fit:contain;
}

/* =========================
   PRODUK
========================= */

.product-section{
    background:#050d18;
    color:#fff;
    padding:100px 0;
}

.product-section .section-title span{
    color:#00bfff;
    letter-spacing:2px;
    font-weight:600;
}

.product-section .section-title h2{
    margin-top:10px;
    margin-bottom:15px;
    font-weight:700;
}

.product-section .section-title p{
    color:#a8b3c5;
}

.product-card{

    background:#08111f;

    border:1px solid rgba(0,191,255,.12);

    border-radius:18px;

    overflow:hidden;

    height:100%;

    transition:.3s;
}

.product-card:hover{

    transform:translateY(-8px);

    border-color:#00bfff;

    box-shadow:
        0 10px 30px rgba(0,191,255,.15);
}

.product-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;
}

.product-content{
    padding:25px;
}

.product-content h4{
    margin-bottom:12px;
    font-weight:700;
}

.product-content p{
    color:#a8b3c5;
    margin-bottom:0;
}

/* =========================
   CUSTOMER SECTION
========================= */

.customer-section{

    background:
        linear-gradient(
            180deg,
            #050d18 0%,
            #07111f 100%
        );

    padding:100px 0;

    color:#fff;
}


/* =========================
   SECTION TITLE
========================= */

.customer-section .section-title{

    max-width:800px;

    margin:0 auto;
}

.customer-section .section-title span{

    color:#00bfff;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.customer-section .section-title h2{

    color:#fff;

    font-weight:700;

    margin-top:10px;

    margin-bottom:15px;
}

.customer-section .section-title p{

    color:#94a3b8;

    margin-bottom:0;
}


/* =========================
   GRID
========================= */

.customer-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-top:60px;
}


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

.customer-card{

    background:#08111f;

    border:1px solid
    rgba(0,191,255,.12);

    border-radius:18px;

    padding:25px;

    min-height:100px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.5px;

    transition:all .3s ease;
}


/* =========================
   HOVER
========================= */

.customer-card:hover{

    transform:translateY(-6px);

    border-color:#00bfff;

    box-shadow:
        0 0 25px rgba(0,191,255,.15);
}

.btn-customer-more{

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #00bfff
        );

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.btn-customer-more:hover{

    transform:translateY(-3px);

    box-shadow:
        0 0 20px rgba(0,191,255,.25);
}


/* =========================
   KONTAK
========================= */
/* =========================
   CONTACT SECTION
========================= */

.contact-section{

    background:
        linear-gradient(
            180deg,
            #07111f 0%,
            #050d18 100%
        );

    padding:100px 0;

    color:#fff;
}


/* =========================
   CONTACT CARD
========================= */

.contact-card{

    background:#08111f;

    border:1px solid
    rgba(0,191,255,.12);

    border-radius:18px;

    padding:35px;

    color:#fff;

    height:100%;
}

.contact-card h4{

    color:#fff;

    font-weight:700;
}

.contact-card p{

    color:#cbd5e1;

    margin-bottom:18px;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.btn-whatsapp{

    background:
        linear-gradient(
            135deg,
            #00bfff,
            #0d6efd
        );

    color:#fff;

    border:none;

    border-radius:12px;

    font-weight:600;

    padding:16px;

    display:block;

    text-align:center;

    text-decoration:none;

    transition:.3s;
}

.btn-whatsapp:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 0 25px rgba(0,191,255,.25);
}


/* =========================
   MAP
========================= */

.map-wrapper{

    overflow:hidden;

    border-radius:18px;

    height:100%;

    min-height:420px;

    border:1px solid #e2e8f0;
}

.map-wrapper iframe{

    width:100%;

    height:100%;

    border:none;
}

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

/* MOBILE */

@media (max-width: 768px){

    .hero-action{
        padding:25px 0;
    }

    .action-box{
        gap:12px;
    }

    .btn-action{

        min-width:160px;

        padding:12px 20px;

        font-size:15px;

        border-radius:10px;
    }

}