/* ===== RESET ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
font-family:'Segoe UI',sans-serif;
background:#f4f7fb;
color:#333;
scroll-behavior:smooth;
overflow-x:hidden;
}

#reviews{
scroll-margin-top:60px;
}

/* ================= HEADER ================= */
header{
display:flex;
justify-content:space-between;
align-items:center;

background:linear-gradient(90deg,#1f6f78,#00c2c7);
padding:16px 5%;
color:white;
box-shadow:0 3px 12px rgba(0,0,0,0.2);
border-radius:0 0 20px 20px;
}

#logo-container{
display:flex;
align-items:center;
gap:12px;
flex-shrink:0;
}

#logo-container div{
display:flex;
flex-direction:column;
justify-content:center;
}

#logo-container h1{
font-size:20px;
font-weight:700;
letter-spacing:1px;
margin:0;
line-height:1.2;
}

.tagline{
font-size:11px;
letter-spacing:1px;
line-height:1.2;
white-space:nowrap;
}

/* SOCIAL HEADER */
.social-header{
display:flex;
gap:18px;
font-size:22px;
flex-shrink:0;
}

.social-header a{
color:white;
transition:.3s;
}

.social-header a:hover{
transform:scale(1.2);
color:#e8fefe;
}

/* ================= HEADER MOBILE FIX ================= */

@media (max-width:768px){

header{
padding:18px 20px;
}

#logo-container{
gap:10px;
max-width:75%;
}

#logo-container img{
width:45px;
}

#logo-container h1{
font-size:18px;
}

.tagline{
font-size:10px;
letter-spacing:1px;
white-space:nowrap;
}

.social-header{
gap:12px;
font-size:20px;
}

}

/* ================= NAV ================= */
.top-nav{
display:flex;
gap:10px;
padding:10px;
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
width:100%;
}

.nav-btn{
flex:1;
text-align:center;
padding:10px;
border-radius:8px;
background:#eee;
text-decoration:none;
color:#333;
font-size:14px;
font-weight:600;
transition:.25s;
}

.nav-btn:hover{
background:#1f6f78;
color:white;
transform:translateY(-2px);
}

/* ================= HERO FULL ================= */
.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:0 20px;
color:white;
width:100%;
overflow:hidden;

background:
linear-gradient(rgba(31,111,120,0.55), rgba(0,194,199,0.45)),
url('../images/bg-service.jpg') center/cover no-repeat;
}

/* Kurangi gelap overlay */
.hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(0,0,0,0.2),rgba(0,0,0,0.1));
z-index:0;
}

.hero-content{
position:relative;
z-index:1;
max-width:700px;
}

.hero h2{
font-size:42px;
margin-bottom:15px;
line-height:1.2;
}

.hero p{
font-size:18px;
margin-bottom:25px;
opacity:.95;
}

/* ======== Ulasan ====== */
.hero-rating{
display:flex;
align-items:center;
justify-content:center;
padding:14px 28px;
background:white;
border-radius:40px;
font-weight:600;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
text-decoration:none;
color:#000;
}

.hero-rating:hover{
transform:translateY(-2px);
box-shadow:0 10px 22px rgba(0,0,0,0.15);
}

.hero-rating span{
color:#fbbc04;
}

/* ===== HERO BUTTON FIX ===== */

.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:16px;
margin-top:30px;
flex-wrap:nowrap;
}

/* ===== HERO BUTTON STYLE ===== */

.btn-hero{
display:flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:40px;
background:white;
font-weight:700;
text-decoration:none;
font-size:16px;
white-space:nowrap;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
transition:.25s;
}

/* rating button */

.rating-btn{
color:#333;
}

.rating-btn span{
color:#fbbc04;
}

/* service button */

.service-btn{
color:#1f6f78;
}

/* hover */

.btn-hero:hover{
transform:translateY(-3px);
box-shadow:0 12px 28px rgba(0,0,0,0.25);
}

/* ===== HERO BUTTON PREMIUM ===== */

.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:16px;
margin-top:30px;
}

.btn-hero{
display:flex;
align-items:center;
gap:8px;
padding:14px 28px;
border-radius:40px;
background:white;
font-weight:600;
text-decoration:none;
font-size:16px;
white-space:nowrap;
box-shadow:0 8px 22px rgba(0,0,0,0.15);
transition:.25s;
}

/* rating */

.rating-btn{
color:#222;
}

.rating-btn span{
font-weight:700;
}

.rating-text{
font-size:14px;
opacity:.7;
}

/* service */

.service-btn{
color:#1f6f78;
font-weight:700;
}

/* hover */

.btn-hero:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* mobile */

@media(max-width:600px){

.hero-buttons{
gap:10px;
}

.btn-hero{
padding:12px 18px;
font-size:14px;
}

}

/* ===== BUTTON ===== */
.btn-primary:hover{
background:#00c2c7;
color:white;
transform:translateY(-3px);
box-shadow:0 8px 25px rgba(0,194,199,0.5);
}

/* ===== SECTION ===== */
.section{
margin:20px 5%;
background:white;
padding:18px 20px;
border-radius:12px;
box-shadow:0 3px 12px rgba(0,0,0,0.06);
text-align:center;
}

.section h2{
margin-bottom:12px;
color:#1f6f78;
font-size:20px;
}

.section-text{
max-width:650px;
margin:auto;
line-height:1.5;
font-size:14px;
}

/* ===== GRID ===== */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin-top:15px;
}

.card{
background:white;
padding:16px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.06);
transition:.3s;
}

.card i{
font-size:22px;
margin-bottom:8px;
color:#1f6f78;
}

.card:hover{
transform:translateY(-4px);
box-shadow:0 6px 15px rgba(0,194,199,0.2);
}

.service-link{
text-decoration:none;
color:inherit;
display:block;
}

/* ===== CONTACT ===== */
.contact{
margin:10px 5% 30px 5%;
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 3px 12px rgba(0,0,0,0.06);
text-align:center;
}

/* ===== CONTACT TEXT ===== */

.contact h2{
font-size:26px;
margin-bottom:10px;
color:#1f6f78;
}

.contact p{
font-size:15px;
line-height:1.6;
margin:4px 0;
color:#444;
}

/* tombol whatsapp */

.btn-whatsapp{
display:inline-block;
margin-top:12px;
padding:10px 22px;
border-radius:30px;
background:#25D366;
color:white;
text-decoration:none;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,0.12);
transition:.25s;
}

.btn-whatsapp:hover{
background:#1ebe5d;
transform:translateY(-2px);
}

/* ===== CONTACT MOBILE ===== */

@media(max-width:600px){

.contact h2{
font-size:20px;
}

.contact p{
font-size:13px;
line-height:1.5;
}

.btn-whatsapp{
font-size:13px;
padding:8px 18px;
}

}

/* ================= ACCORDION CLEAN ================= */

#store-info{
margin:20px 5%;
}

.accordion{
width:100%;
background:#ffffff;
color:#1f6f78;
padding:12px 16px;
border:none;
outline:none;
border-radius:12px;
font-size:15px;
font-weight:600;
text-align:left;
display:flex;
align-items:flex-start;
gap:10px;
cursor:pointer;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
transition:all .3s ease;
margin-bottom:10px;
}

.accordion:hover{
background:#f1f6f8;
}

.accordion.active{
background:linear-gradient(90deg,#1f6f78,#00c2c7);
color:white;
}

.panel{
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
background:white;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
padding:0 16px;
}

.panel.open{
padding:16px;
}

/* ===== INFO WRAPPER ===== */
.info-wrapper{
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:16px;
}

.info-item{
display:flex;
gap:12px;
padding:10px 12px;
border-radius:10px;
background:#f7f9fb;
}

.info-item i{
font-size:16px;
color:#1f6f78;
margin-top:3px;
}

.label{
font-size:12px;
color:#777;
margin-bottom:2px;
}

.info-item strong{
font-size:14px;
color:#222;
}

/* ===== MAP ===== */
.map-container{
width:100%;
border-radius:12px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,0.06);
}

.map-container iframe{
width:100%;
height:260px;
border:0;
display:block;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

.section{
padding:15px;
}

.hero{
padding:0 20px;
}

.hero h2{
font-size:26px;
}

.hero p{
font-size:14px;
}

.map-container iframe{
height:220px;
}

}

@media(max-width:600px){

.hero-buttons{
gap:10px;
}

.btn-hero{
padding:12px 18px;
font-size:14px;
}

}

/* ================= MOBILE ================= */
@media(max-width:600px){

.form-section{
margin:15px;
padding:18px;
}

.product-card img{
height:110px;
}

.nav-btn{
font-size:14px;
padding:10px;
}

}

/* ===== FOOTER ===== */
footer{
margin-top:30px;
background:linear-gradient(90deg,#0b1c22,#2b4d58);
color:white;
text-align:center;
padding:15px;
font-size:13px;
}

/* ===== PAKSA TEXT ACCORDION RATA KIRI ===== */
.panel,
.panel *{
text-align:left !important;
}

.info-wrapper,
.info-item{
text-align:left;
align-items:flex-start;
}

.info-item div{
text-align:left;
}

/* ===== Slider ===== */

.service-marquee{
position:relative;
overflow:hidden;
padding:30px 0;
background:#E6F1F1;
}

.marquee-wrapper{
overflow:hidden;
}

.marquee-track{
display:flex;
gap:20px;
will-change:transform;
}

.service-card{
width:280px;
background:white;
border-radius:12px;
padding:15px;
display:flex;
gap:12px;
align-items:center;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
flex-shrink:0;
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px) scale(1.03);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.service-card img{
width:60px;
height:60px;
object-fit:contain;
}

.service-card h4{
margin:0;
font-size:16px;
}

.service-card p{
margin:0;
font-size:13px;
color:#777;
}

/* gradient kiri kanan */

.marquee-overlay{
position:absolute;
top:0;
width:120px;
height:100%;
z-index:2;
pointer-events:none;
}

.marquee-overlay.left{
left:0;
background:linear-gradient(to right,#E6F1F1,transparent);
}

.marquee-overlay.right{
right:0;
background:linear-gradient(to left,#E6F1F1,transparent);
}

/* ================= GOOGLE REVIEW PREMIUM ================= */

.google-reviews{
padding:40px 20px;
background:#f7f7f7;
text-align:center;
}

/* hero rating */

.google-reviews .hero-rating{
margin-top:15px;
}

.hero-rating span{
color:#fbbc04;
}

/* summary */

.review-summary{
margin-bottom:30px;
font-size:18px;
}

/* slider wrapper */

.reviews-wrapper{
overflow:hidden;
position:relative;
width:100%;
}

/* blur kiri */
.reviews-wrapper::before{
content:"";
position:absolute;
left:0;
top:0;
width:80px;
height:100%;
background:linear-gradient(to right,#f7f7f7,transparent);
z-index:2;
pointer-events:none;
}

/* blur kanan */
.reviews-wrapper::after{
content:"";
position:absolute;
right:0;
top:0;
width:80px;
height:100%;
background:linear-gradient(to left,#f7f7f7,transparent);
z-index:2;
pointer-events:none;
}

/* slider */

.reviews-slider{
display:flex;
gap:20px;
padding:20px;
will-change:transform;
cursor:grab;
transition:transform 0.1s linear;
}

.reviews-slider:active{
cursor:grabbing;
}

/* card */

.review-card{
flex-shrink:0;
min-width:300px;
background:white;
border-radius:16px;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:left;
transition:0.3s;
}

.review-card:hover{
transform:translateY(-5px);
box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

/* rating */

.review-rating{
color:#fbbc04;
font-size:18px;
margin-bottom:10px;
}

/* text */

.review-text{
font-size:14px;
line-height:1.6;
color:#444;
margin-bottom:15px;
}

/* author */

.review-author{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
}

.review-author img{
width:32px;
height:32px;
border-radius:50%;
}

/* ===== REVIEW CONTROL AREA ===== */

.reviews-controls{
margin-top:10px;
display:flex;
justify-content:center;
}

.reviews-indicator{
font-size:14px;
color:#666;
background:#ffffff;
padding:8px 16px;
border-radius:30px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

/* tombol semua ulasan */

.all-review-btn{
margin-top:16px;
display:flex;
justify-content:center;
}

.all-review-btn a{
text-decoration:none;
padding:12px 24px;
border-radius:40px;
background:white;
color:#1f6f78;
font-weight:600;
box-shadow:0 6px 18px rgba(0,0,0,0.12);
transition:.25s;
}

/* hover effect */

.all-review-btn a:hover{
background:#00c2c7;
color:white;
transform:translateY(-2px);
box-shadow:0 10px 24px rgba(0,194,199,0.4);
}

.reviews-slider{
display:flex;
gap:20px;
padding:20px;
will-change:transform;
cursor:grab;

align-items:stretch;
}

/* floating chat */
.floating-wa{
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.floating-wa a{
  width:60px;
  height:60px;
  background:#00c2c7;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:28px;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  transition:0.3s;
}

.floating-wa a:hover{
  transform:scale(1.1);
}
