<style>

html{scroll-behavior:smooth;}

body{
font-family:Arial,Helvetica,sans-serif;
margin:0;
background:#f5f6f8;
color:#333;
}

/* HEADER */
header{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

header img{height:32px;}

nav{
	display:flex;
	}

	nav a{
	color:#1e3a5f;
	margin-left:25px;
	text-decoration:none;
	font-size:14px;
	}

	nav a:hover{opacity:.7;}

	/* MOBILE MENU */
	.menu-toggle{
	display:none;
	font-size:26px;
	cursor:pointer;
	}

	@media(max-width:768px){

	header{
		padding:15px 20px; /* lebih kecil di HP */
	}

	nav{
		display:none;
		position:absolute;
		top:70px;
		right:0;
		left:0;
		width:100vw; /* 🔥 full layar */
		box-sizing:border-box; /* penting */
		background:white;
		width:100%;
		flex-direction:column;
		padding:20px;
		box-shadow:0 8px 20px rgba(0,0,0,0.1);
		transition:0.3s;
		backdrop-filter:blur(10px);
	}

	nav a{
	margin:12px 0;
	}

	nav.active{display:flex;}

	.menu-toggle{
	display:block;
	}

}

.modal-nav{
  position:absolute;
  top:20px;
  left:20px;
  display:flex;
  gap:10px;
  z-index:20; /* 🔥 penting */  
}

.modal-nav button{
	background:white;
	border:none;
	font-size:20px;
	padding:10px 14px;
	border-radius:50%;
	cursor:pointer;
	box-shadow:0 4px 12px rgba(0,0,0,0.2);  
}

.modal-nav button:hover{
  transform:scale(1.1);
}

/* HERO */
.hero{
color:white;
padding:120px 20px;
text-align:center;
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
url("images/products/all-products.png"); /* fallback */
background-size:cover;
background-position:center;
transition:1s;
}

.hero h1{font-size:38px;margin:0;}
.hero p{margin-top:10px;font-size:18px;}

.hero-btn2{
display:inline-block;
padding:12px 28px;
background:#ffffff;
color:#1e3a5f;
text-decoration:none;
font-weight:bold;
border-radius:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.wa-contact{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;
background:#25D366;
color:white;
padding:12px 22px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
margin-left:10px;
transition:.25s;
}

.wa-contact img{
width:24px;
height:24px;
object-fit:contain;
}

.wa-contact:hover{
transform:translateY(-2px);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* SECTION */
.section{
max-width:1100px;
margin:auto;
padding:70px 20px;
}

/* PRODUCT */
.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 14px rgba(0,0,0,0.08);
text-align:center;
text-decoration:none;
color:#333;
transition:.25s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 12px 24px rgba(0,0,0,0.15);
}

.card img{
width:100%;
max-height:180px;
object-fit:contain;
}

.client-card img{
	filter:grayscale(100%);
	opacity:.8;
	transition:.3s;
	max-width:100%;
	max-height:110px;
	transform:scale(1.2);
}

.client-card:hover img{
	filter:grayscale(0%);
	opacity:1;
	transform:scale(1.75);
}

.client-grid{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.client-card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
width:220px;
height:140px;

display:flex;
justify-content:center;
align-items:center;
}

.client-card img{
max-width:100%;
max-height:80px;
object-fit:contain;
}

/* INDUSTRY & CLIENT */
.industry-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.industry{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 14px rgba(0,0,0,0.08);
text-align:center;
}

/* MAP */
.map-container{
	margin-top:25px;
	border-radius:10px;
	overflow:hidden;
}

/* FOOTER */
footer{
	background:linear-gradient(135deg, #3a7bd5, #2bb673);
	color:white;
	padding:30px 20px; /* 🔥 dipotong setengah */
	text-align:center;
	margin-top:60px;
}

footer h3{
  margin:2px 0 3px; /* 🔥 super rapat */
  font-size:22px;
}

footer p{
  margin:2px 0;
  font-size:15px;
}

.footer-logo{
  height:200px; /* 🔥 dari 110 → 140 */
  margin-bottom:0px; /* 🔥 makin dekat */
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

/* MODAL */
.modal{
	display:none;
	position:fixed;
	z-index:9999;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.6);
	backdrop-filter:blur(4px);
}

.modal-content{
	background:#ffffff;
	box-shadow:0 20px 60px rgba(0,0,0,0.2);
	margin:5% auto;
	padding:40px;
	width:90%;
	position:relative;
	max-width:800px;
	border-radius:12px;
	transform:translateY(50px);
	opacity:0;
	transition:.3s;
	max-width:600px;
	z-index:1;
}

.modal-content img{
	display:block;
	margin:auto;
	max-width:100%;
	max-height:70vh;   /* kunci utama */
	object-fit:contain;
	border-radius:10px;
	transform:scale(1.05);
    transition:0.3s;
	transform:scale(1); /* atau 1.02 max */
}

.modal.show .modal-content{
transform:translateY(0);
opacity:1;
}

.close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:26px;
  cursor:pointer;
  z-index:10;
  background:white;
  border-radius:50%;
  padding:5px 10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);  
}

.close:hover{
  transform:scale(1.2);
  color:#ff4d4f;
}
