*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}

body{
background:linear-gradient(180deg,#e0f2fe,#f0fdf4);
color:#1e293b;
}

.container{max-width:1100px;margin:auto;padding:20px;}

/* NAVBAR */
header{
position:fixed;
width:100%;
top:0;
background:rgba(255,255,255,0.8);
backdrop-filter:blur(10px);
z-index:999;
}

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

.logo{
font-size:22px;
font-weight:700;
color:#0ea5e9;
}

.menu{
display:flex;
gap:20px;
align-items:center;
}

.menu a{
color:#334155;
font-weight:500;
}

.cta{
background:#22c55e;
color:#fff;
padding:8px 16px;
border-radius:6px;
}

/* HAMBURGER */
.hamburger{
display:none;
font-size:26px;
cursor:pointer;
}

/* HERO */
.hero{
padding-top:120px;
padding-bottom:90px;
text-align:center;
color:#fff;
background:
linear-gradient(rgba(2,132,199,0.75), rgba(15,23,42,0.85)),
url('../images/bg-ac.png') center/cover;
}

.hero h1{
font-size:40px;
margin-bottom:15px;
}

.hero p{
margin-bottom:20px;
opacity:0.95;
}

.btn{
padding:12px 22px;
border-radius:8px;
display:inline-block;
margin:5px;
font-weight:600;
text-decoration: none;
}

.btn-wa{background:#22c55e;color:#fff;}
.btn-call{background:#0ea5e9;color:#fff;}

.trust{
margin-top:15px;
font-size:14px;
opacity:0.9;
}

/* IMAGE */
.hero-img{
margin-top:40px;
border-radius:14px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.hero-img img{width:100%;}

/* SECTION */
.section{padding:80px 20px;}

h2{text-align:center;margin-bottom:30px;}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

/* CARD PREMIUM */
.card{
background:linear-gradient(145deg,#ffffff,#e0f2fe);
padding:25px;
border-radius:16px;
box-shadow:0 10px 30px rgba(2,132,199,0.1);
text-align:center;
transition:0.3s;
border:1px solid rgba(14,165,233,0.15);
position:relative;
overflow:hidden;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(2,132,199,0.25);
background:linear-gradient(145deg,#f0f9ff,#dcfce7);
}

.icon{
font-size:40px;
margin-bottom:10px;
}

/* ABOUT */
.about{
background:linear-gradient(135deg,#0ea5e9,#22c55e);
color:#fff;
border-radius:20px;
padding:40px;
text-align:center;
}

/* FORM */
.form input,.form textarea,.form select{
width:100%;
padding:12px;
margin:8px 0;
border-radius:8px;
border:1px solid #ddd;
}

.form button{
background:#22c55e;
color:#fff;
border:none;
padding:14px;
width:100%;
border-radius:8px;
font-weight:600;
}

/* FAQ */
.faq-item{
background:#fff;
margin-bottom:10px;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.faq-question{
padding:15px;
cursor:pointer;
font-weight:600;
background:#f1f5f9;
}

.faq-answer{
max-height:0;
overflow:hidden;
padding:0 15px;
transition:0.3s;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:15px;
}

/* FOOTER */
footer{
background:#0f172a;
color:#fff;
text-align:center;
padding:30px;
margin-bottom: 90px;
}

/* FLOAT WA - PREMIUM */
.float-wa{
position:fixed;
bottom:85px;
right:20px;
width:60px;
height:60px;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
box-shadow:0 10px 30px rgba(0,0,0,0.25);
z-index:999;
transition:0.3s;
text-decoration: none;
}
/* ICON WA DI DALAM BUTTON */
.float-wa img{
width:28px;
height:28px;
object-fit:contain;
}
.float-wa img{
width:36px;
height:36px;
display:block;
}


/* HOVER */
.float-wa:hover{
transform:scale(1.1);
box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

/* ANIMASI PULSE */
.float-wa::before{
content:"";
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:#25D366;
opacity:0.6;
z-index:-1;
animation:waPulse 2s infinite;
}

@keyframes waPulse{
0%{
transform:scale(1);
opacity:0.6;
}
70%{
transform:scale(1.6);
opacity:0;
}
100%{
transform:scale(1.6);
opacity:0;
}
}

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

.menu{
position:absolute;
top:60px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
display:none;
padding:15px;
}

.menu.show{display:flex;}

.hamburger{display:block;}

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


/* GALLERY */
.gallery img{
width:100%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* TEKNISI */
.teknisi-wrapper{
overflow-x:auto;
scroll-snap-type:x mandatory;
display:flex;
gap:15px;
padding-bottom:10px;
}

.teknisi{
min-width:250px;
scroll-snap-align:start;
background:#fff;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
padding:15px;
}

.teknisi img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

@media(min-width:768px){
.teknisi-wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
overflow:visible;
}
.teknisi{
min-width:auto;
}
}


.price-table{
margin-top:40px;
border-radius:16px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
background:#ffffff;
}

/* ROW */
.price-row{
display:grid;
grid-template-columns:50px 1fr 140px;
align-items:center;
padding:18px 20px;
gap:15px;
font-size:14px;
border-bottom:1px solid #e5e7eb;
transition:0.2s;
}

/* HEADER */
.price-row.header{
background:linear-gradient(135deg,#0ea5e9,#22c55e);
color:#fff;
font-weight:600;
font-size:15px;
}

/* ZEBRA */
.price-row:nth-child(even):not(.header){
background:#f8fafc;
}

/* HOVER */
.price-row:hover:not(.header){
background:#f0f9ff;
}

/* NOMOR */
.price-row div:nth-child(1){
font-weight:600;
color:#64748b;
}

/* JENIS */
.price-row div:nth-child(2){
line-height:1.4;
}

/* HARGA */
.price-row div:nth-child(3){
text-align:right;
font-weight:700;
color:#16a34a;
font-size:15px;
}

/* NOTE */
.price-note{
margin-top:20px;
font-size:13px;
color:#475569;
background:#f1f5f9;
padding:18px;
border-radius:12px;
line-height:1.6;
}

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

.price-row{
grid-template-columns:1fr;
text-align:left;
padding:15px;
gap:6px;
}

.price-row.header{
display:none;
}

.price-row div:nth-child(1){
font-size:12px;
color:#94a3b8;
}

.price-row div:nth-child(3){
text-align:left;
font-size:16px;
color:#22c55e;
}

.price-row{
border-radius:10px;
margin-bottom:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.price-table{
box-shadow:none;
background:transparent;
}
}

.visi-pro{
background:linear-gradient(135deg,#0ea5e9,#22c55e);
border-radius:25px;
color:#fff;
overflow:hidden;
}

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

/* FOTO */
.visi-left img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* TEXT */
.visi-right h2{
margin-bottom:20px;
font-size:28px;
}

/* VISI BOX */
.visi-box{
background:rgba(255,255,255,0.15);
padding:20px;
border-radius:15px;
backdrop-filter:blur(10px);
margin-bottom:20px;
}

/* MISI */
.misi-item{
display:flex;
align-items:center;
gap:12px;
background:rgba(255,255,255,0.1);
padding:12px 15px;
border-radius:10px;
margin-bottom:10px;
transition:0.3s;
}

.misi-item span{
background:#fff;
color:#0ea5e9;
width:28px;
height:28px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-weight:700;
}

.misi-item:hover{
background:rgba(255,255,255,0.25);
transform:translateX(5px);
}

/* ANIMASI */
.fade-up{
opacity:0;
transform:translateY(30px);
transition:0.8s;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
.visi-wrap{
grid-template-columns:1fr;
}

.visi-left{
order:1;
}

.visi-right{
order:2;
}
}

.testi-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:30px;
}

.testi-card{
background:#fff;
border-radius:16px;
padding:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.3s;
position:relative;
}

.testi-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.testi-header{
display:flex;
align-items:center;
gap:12px;
margin-bottom:10px;
}

.testi-header img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

.testi-header h4{
margin:0;
font-size:15px;
}

.stars{
color:#facc15;
font-size:14px;
letter-spacing:2px;
}

.testi-card p{
font-size:14px;
color:#475569;
margin:10px 0;
line-height:1.6;
}

.lokasi{
font-size:12px;
color:#94a3b8;
}

.elite{
background:linear-gradient(135deg,#0f172a,#020617);
color:#fff;
border-radius:25px;
overflow:hidden;
}

.elite-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

/* IMAGE */
.elite-img img{
width:100%;
border-radius:20px;
box-shadow:0 30px 70px rgba(0,0,0,0.5);
transform:scale(1);
transition:0.4s;
}

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

/* TEXT */
.elite-text h2{
font-size:30px;
margin-bottom:15px;
}

.elite-sub{
color:#cbd5f5;
margin-bottom:20px;
line-height:1.6;
}

/* POINT */
.elite-point{
display:flex;
align-items:center;
gap:12px;
margin-bottom:12px;
}

.elite-point span{
background:linear-gradient(135deg,#0ea5e9,#22c55e);
width:28px;
height:28px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
}

/* BUTTON */
.elite-btn{
display:inline-block;
margin-top:20px;
padding:14px 24px;
background:linear-gradient(135deg,#22c55e,#16a34a);
color:#fff;
border-radius:10px;
font-weight:600;
box-shadow:0 10px 30px rgba(34,197,94,0.4);
transition:0.3s;
}

.elite-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(34,197,94,0.6);
}

/* MOBILE */
@media(max-width:768px){
.elite-wrap{
grid-template-columns:1fr;
}

.elite-img{
order:1;
}

.elite-text{
order:2;
}
}

.bottom-nav{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
position:fixed;
bottom:0;
left:0;
width:100%;
background:#1e293b;
display:flex;
justify-content:space-around;
padding:10px 0;
z-index:999;
border-top:1px solid rgba(255,255,255,0.1);
}

.nav-item{
text-align:center;
color:#cbd5f5;
font-size:12px;
flex:1;
transition:0.3s;
text-decoration: none;
}

.nav-item span{
display:block;
font-size:18px;
margin-bottom:3px;
}

.nav-item.active{
color:#22c55e;
}

.nav-item:active{
transform:scale(0.9);
}

/* HIDE DI DESKTOP */
@media(min-width:768px){
.bottom-nav{
display:none;
}
}