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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fb;
    color:#333;
    line-height:1.6;
}

/* ===================================
   WARNA
=================================== */

:root{

    --primary:#0056b3;
    --secondary:red
    ;
    --white:#ffffff;
    --dark:#222;
    --gray:#666;
    --light:#f5f5f5;

}

/* ===================================
   CONTAINER
=================================== */

.container{

    width:80%;
    max-width:1200px;
    margin:auto;

}

section{

    padding:80px 8%;

}

.section-title{

    text-align:center;
    font-size:36px;
    color:var(--primary);
    margin-bottom:50px;
    font-weight:bold;

}

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

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:999;

}

.navbar{

    width:90%;
    max-width:1200px;

    margin:auto;

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

    height:75px;

}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.logo-text{
    font-size:2rem;
    font-weight:800;
    color:black;
}

.logo-text span{
    color:red;
}

.nav-menu{

    display:flex;
    list-style:none;
    gap:30px;

}

.nav-menu a{

    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition:.3s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.menu-toggle{

    display:none;
    font-size:28px;
    cursor:pointer;

}

.harga-note{
    text-align: center;
    font-style: italic;
    font-size: 18px;
    color: #666;
    margin-top: 30px;
    margin-bottom: 30px;
}

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

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

.hero{
    position: relative;
    overflow: hidden;

    min-height: 100vh;

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

    color: white;

    background:
        linear-gradient(
            135deg,
            rgba(0, 86, 179, 0.92),
            rgba(0, 50, 120, 0.88),
            rgba(10, 25, 60, 0.90)
        ),
        url("../images/hero.jpg");

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

#particles-js{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.hero-content{

    max-width:750px;

}

.hero h1{

    font-size:55px;
    margin-bottom:20px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

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

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--secondary);

    color:white;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

    font-weight:bold;

}

.btn:hover{

    background:red;

    transform:translateY(-3px);

}

/* ===================================
   ABOUT
=================================== */

.about{

    background:white;

}

.about .container{

    display:flex;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.about-text{

    flex:1;

}

.about-text h2{

    color:var(--primary);

    font-size:38px;

    margin-bottom:20px;

}

.about-text p{

    margin-bottom:18px;

    color:#555;

    text-align:justify;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

.hero h1{

font-size:45px;

}

.section-title{

font-size:32px;

}

.about .container{

flex-direction:column;

}

}

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

@media(max-width:768px){

.menu-toggle{

display:block;

}

.nav-menu{

position:absolute;

top:75px;

left:0;

width:100%;

background:white;

flex-direction:column;

text-align:center;

display:none;

padding:25px 0;

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

}

.nav-menu.active{

display:flex;

}

.nav-menu li{

margin:12px 0;

}

.hero{

padding:100px 20px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:17px;

}

.section-title{

font-size:28px;

}

.about-text h2{

font-size:30px;

text-align:center;

}

.about-text{

text-align:center;

}

.about-text p{

text-align:center;

}

.btn{

padding:14px 28px;

}

}

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

@media(max-width:480px){

.hero h1{

font-size:28px;

}

.hero p{

font-size:16px;

}

.logo h2{

font-size:22px;

}

section{

padding:60px 20px;

}

}

/* ===================================
   SERVICES
=================================== */

.services{
    background:#f8f9fc;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.service-box i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-box h3{
    margin-bottom:15px;
    font-size:24px;
    color:#222;
}

.service-box p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

/* ===================================
   PRICE
=================================== */

.price{
    background:#fff;
}

.price table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.price th{
    background:var(--primary);
    color:white;
    padding:18px;
    font-size:18px;
}

.price td{
    padding:18px;
    border-bottom:1px solid #eee;
    text-align:center;
}

.price tr:nth-child(even){
    background:#f8f9fc;
}

.price tr:hover{
    background:#eef5ff;
    transition:.3s;
}

/* ===================================
   GALLERY
=================================== */

.gallery{
    background:#f8f9fc;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-container img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.gallery-container img:hover{
    transform:scale(1.05);
}

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

.testimonial{
    background:white;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid var(--primary);
}

.card:hover{
    transform:translateY(-8px);
}

.card p{
    color:#555;
    font-style:italic;
    margin-bottom:20px;
    line-height:1.8;
}

.card h4{
    color:var(--primary);
    font-size:18px;
}

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

@media(max-width:992px){

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

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

}

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

@media(max-width:768px){

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

    .gallery-container{
        grid-template-columns:1fr;
    }

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

    .price{
        overflow-x:auto;
    }

    .price table{
        min-width:500px;
    }

    .service-box{
        padding:30px 20px;
    }

    .gallery-container img{
        height:220px;
    }

}

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

@media(max-width:480px){

    .service-box i{
        font-size:45px;
    }

    .service-box h3{
        font-size:20px;
    }

    .gallery-container img{
        height:200px;
    }

    .card{
        padding:25px;
    }

    .price th,
    .price td{
        padding:14px;
        font-size:14px;
    }

}

/* ===================================
   FAQ
=================================== */

.faq{
    background:#ffffff;
}

.faq-item{
    max-width:900px;
    margin:20px auto;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

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

.faq-item h3{
    color:var(--primary);
    margin-bottom:10px;
}

.faq-item p{
    color:#555;
    line-height:1.7;
}

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

.contact{
    background:#f8f9fc;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.contact-info{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-info p{
    margin-bottom:20px;
    font-size:18px;
}

.contact-info i{
    color:var(--primary);
    margin-right:10px;
}

.contact-map iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

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

footer{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

footer p{
    font-size:15px;
}

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

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ===================================
   ANIMATION
=================================== */

.service-box,
.card,
.gallery-container img,
.about-image img,
.about-text,
.faq-item,
.contact-info{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

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

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

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

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#003f88;
}

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

@media(max-width:992px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-map iframe{
    height:350px;
}

}

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

@media(max-width:768px){

.contact{
    padding:60px 20px;
}

.contact-info{
    padding:25px;
}

.contact-info p{
    font-size:16px;
}

.contact-map iframe{
    height:300px;
}

.faq-item{
    padding:20px;
}

.whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
    right:15px;
    bottom:15px;
}

footer{
    padding:25px 15px;
}

}

/* ===================================
   EXTRA SMALL DEVICE
=================================== */

@media(max-width:480px){

.section-title{
    font-size:24px;
}

.contact-info{
    padding:20px;
}

.contact-info p{
    font-size:15px;
}

.contact-map iframe{
    height:250px;
}

.faq-item h3{
    font-size:18px;
}

.faq-item p{
    font-size:15px;
}

.whatsapp{
    width:50px;
    height:50px;
    font-size:24px;
}

}
/* ==========================
   ACTIVE MENU
========================== */

.nav-menu a.active{
    color:red;
}

/* ==========================
   BACK TO TOP
========================== */

#topButton{
    transition:.3s;
}

#topButton:hover{
    background:#003f88;
    transform:scale(1.1);
}