* {	margin: 0;	padding: 0;	box-sizing: border-box;	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;}body, html {	height: 100%;	overflow: hidden;	background-color: #333333;}/* HEADER & NAVIGASI */header {	position: fixed;	top: 0;	left: 0;	width: 100%;	z-index: 1000;	background-color: rgba(51, 51, 51, 0.95);	border-bottom: 3px solid #4caf50;	display: flex;	justify-content: space-between;	align-items: center;	padding: 0 2rem;	height: 70px;}.logo {	display: flex;	align-items: center;	color: #2faace;	font-size: 1.5rem;	font-weight: bold;	text-decoration: none;}.logo b{ display: block; height: 50px; overflow: hidden; }.logo b canvas{ display: block; height: 100%; }/* Menu Desktop */.nav-menu {	display: flex;	list-style: none;	height: 100%;}.nav-item {	position: relative;	height: 100%;	display: flex;	align-items: center;}.nav-link {	color: #ffffff;	text-decoration: none;	padding: 0 1.5rem;	height: 100%;	display: flex;	align-items: center;	transition: all 0.3s ease;	font-size: 0.95rem;	font-weight: 500;}.nav-link:hover, .nav-item:hover > .nav-link {	color: #2faace;	background-color: #515151;}/* Sub Menu */.sub-menu {	position: absolute;	top: 70px;	left: 0;	background-color: #515151;	min-width: 200px;	list-style: none;	display: none;	box-shadow: 0 4px 15px rgba(0,0,0,0.3);	border-top: 2px solid #2faace;}.sub-menu li a {	color: #ffffff;	text-decoration: none;	padding: 0.75rem 1.5rem;	display: block;	font-size: 0.9rem;	transition: all 0.2s ease;}.sub-menu li a:hover {	background-color: #4caf50;	color: #ffffff;	padding-left: 1.8rem;}.nav-item:hover .sub-menu {	display: block;}/* Menu Mobile Toggle */.menu-toggle {	display: none;	flex-direction: column;	justify-content: space-between;	width: 30px;	height: 21px;	cursor: pointer;}.menu-toggle span {	display: block;	height: 3px;	width: 100%;	background-color: #ffffff;	border-radius: 3px;	transition: all 0.3s ease;}/* BACKGROUND SLIDER pada halaman utama */.slider-container {	position: absolute;	top: 0;	left: 0;	width: 100%;	height: 100%;	z-index: 1;}.slide {	position: absolute;	top: 0;	left: 0;	width: 100%;	height: 100%;	background-size: cover;	background-position: center;	background-repeat: no-repeat;	opacity: 0;	transition: opacity 1s ease-in-out;}.slide.active {	opacity: 1;}/* Overlay gelap agar teks terbaca */.slide::after {	content: '';	position: absolute;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: linear-gradient(rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.8));}/* KONTEN SLOGAN */.hero-content {	position: relative;	z-index: 10;	height: 100%;	display: flex;	flex-direction: column;	justify-content: center;	align-items: center;	text-align: center;	color: #ffffff;	padding: 0 1rem;}.slogan-box {	background-color: rgba(51, 51, 51, 0.7);	padding: 2.5rem 3.5rem;	border-radius: 5px;	border-left: 5px solid #4caf50;	border-right: 5px solid #2faace;	max-width: 800px;	backdrop-filter: blur(5px);	animation: fadeInUp 1s ease-out;}@keyframes fadeInUp {	from {		opacity: 0;		transform: translateY(30px);	}	to {		opacity: 1;		transform: translateY(0);	}}.slogan-box h1 {	font-size: 3.5rem;	margin-bottom: 1rem;	font-weight: 800;	letter-spacing: 2px;	color: #ffffff;}.slogan-box h1 span {	color: #2faace;}.slogan-box p {	font-size: 1.25rem;	color: #e0e0e0;	line-height: 1.6;	font-weight: 300;}.slogan-box p strong {	color: #4caf50;	font-weight: 600;}/* copyright footer */footer {	background-color: #333333;	color: #ffffff;	text-align: center;	padding: 10px 20px;	margin-top: auto;}footer p {	color: #e0e0e0;	font-size: 14px;}footer span {	color: #2faace;}/* Main Content (Visi & Misi) */.container-about {	max-width: 1200px;	margin: 0 auto;	padding: 100px 20px;}.section-title-about {	text-align: center;	font-size: 2.5rem;	color: #333333;	margin-bottom: 50px;	position: relative;}.section-title-about::after {	content: '';	display: block;	width: 60px;	height: 4px;	background-color: #4caf50;	margin: 10px auto 0;}.row-about {	display: flex;	align-items: center;	justify-content: space-between;	margin-bottom: 60px;	gap: 40px;}.row-about.reverse {	flex-direction: row-reverse;}.col-text-about {	flex: 1;}.col-text-about h2 {	font-size: 2rem;	color: #4caf50;	margin-bottom: 15px;}.col-text-about p {	color: #515151;	font-size: 1.1rem;	text-align: justify;}.col-image-about {	flex: 1;	display: flex;	justify-content: center;}.col-image-about img {	width: 100%;	max-width: 500px;	height: 300px;	object-fit: cover;	border-radius: 10px;	box-shadow: 0 5px 15px rgba(0,0,0,0.1);}/* LAYANAN */.svc-container {	background-color: #d8d8d8;	width: 100%;	max-width: 1200px;	border-radius: 12px;	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);	overflow: hidden;	padding: 100px 40px;}.svc-hero {	text-align: center;	margin-bottom: 50px;	border-bottom: 4px solid #4caf50;	padding-bottom: 30px;}.svc-hero-title {	color: #000;	font-size: 2.5rem;	margin-bottom: 15px;	font-weight: 800;}.svc-hero-subtitle {	color: #515151;	font-size: 1.2rem;	max-width: 800px;	margin: 0 auto;}.svc-content-grid {	display: grid;	grid-template-columns: repeat(2, 1fr);	gap: 30px;}.svc-card {	background-color: #ffffff;	border: 2px solid #d8d8d8;	border-radius: 8px;	padding: 30px;	transition: transform 0.3s ease, border-color 0.3s ease;}.svc-card:hover {	border-color: #2faace;	transform: translateY(-5px);}.svc-card-icon {	font-size: 3rem;	margin-bottom: 20px;	display: inline-block;}.svc-card-title {	font-size: 1.8rem;	margin-bottom: 15px;	position: relative;	padding-bottom: 10px;}.svc-title-design {	color: #4caf50;}.svc-title-design::after {	content: '';	position: absolute;	bottom: 0;	left: 0;	width: 50px;	height: 3px;	background-color: #4caf50;}.svc-title-mfg {	color: #2faace;}.svc-title-mfg::after {	content: '';	position: absolute;	bottom: 0;	left: 0;	width: 50px;	height: 3px;	background-color: #2faace;}.svc-card-desc {	color: #515151;	margin-bottom: 20px;	text-align: justify;}.svc-list-title {	color: #333333;	font-weight: 600;	margin-bottom: 10px;}.svc-list {	list-style: none;}.svc-list-item {	position: relative;	padding-left: 25px;	margin-bottom: 8px;	color: #515151;}.svc-list-item-design::before {	content: '✓';	color: #4caf50;	position: absolute;	left: 0;	font-weight: bold;}.svc-list-item-mfg::before {	content: '⚙';	color: #2faace;	position: absolute;	left: 0;	font-weight: bold;}/* LAMAN PRODUK */.prod-container {	width: 100%;	max-width: 1200px;	display: grid;	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));	gap: 30px;	padding: 100px 20px;	margin: 0 auto;}.prod-card {	background-color: #ffffff;	border-radius: 12px;	overflow: hidden;	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);	transition: transform 0.3s ease;	display: flex;	flex-direction: column;}.prod-card:hover {	transform: translateY(-5px);}.prod-slider {	position: relative;	width: 100%;	height: 250px;	overflow: hidden;	background-color: #515151;}.prod-slides-wrapper {	display: block; height: 100%;width: 100%; position: relative;}.prod-slide{	display: block; position: absolute; top: 0; left: 0;	height: 100%; width: 100%;	overflow: hidden;	z-index: -5;	opacity: 0;	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;}.prod-slide[state-current]{ z-index: 2; opacity: 1; }.prod-slide[state-before]{ z-index: 1; opacity: 1; left: -100%; }.prod-slide[state-after]{ z-index: 1; opacity: 1; left: 100%; }.prod-slide::after{	content: ''; display: block;	position: absolute; top: 0; bottom: 0; left: 0; right: 0;	z-index: 1; cursor: pointer;}.prod-slide img{	display: block; position: absolute; top: 50%; left: 50%;	max-width: 100%; max-height: 100%;	transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%);}.prod-content {	padding: 20px;	display: flex;	flex-direction: column;	flex-grow: 1;}.prod-product-name {	color: #333333;	font-size: 1.4rem;	font-weight: 700;	margin-bottom: 10px;	border-bottom: 2px solid #2faace;	padding-bottom: 5px;}.prod-product-desc {	color: #515151;	font-size: 0.95rem;	line-height: 1.6;	text-align: justify;}.prod-badge {	display: block;	width: max-content;	white-space: normal;	font-size: 0.8rem;	margin-bottom: 10px;	align-self: flex-start;}.prod-badge b{	display: inline-block;	vertical-align: middle;	white-space: nowrap;	background: #4caf50;	padding: 0 10px;	line-height: 25px;	border-radius: 4px;	color: #fff;	margin: 0 4px 4px 0;	font-weight: normal;}/* KONTAK */.ctc-container{	display: block; width: 100%;	min-height: 100%;	padding: 100px 40px;	background: #d8d8d8;}.ctc-container > div{ display: table; width: 100%; height: 100%; }.ctc-container > div > div{ display: table-cell; vertical-align: middle; }.ctc-container > div > div > div{	background-color: #ffffff;	width: 100%;	max-width: 600px;	padding: 40px;	border-radius: 12px;	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);	text-align: center;	margin: 0 auto;}.ctc-title {	color: #333333;	font-size: 2rem;	margin-bottom: 10px;	font-weight: 700;}.ctc-subtitle {	color: #515151;	font-size: 1rem;	margin-bottom: 30px;}.ctc-contact-list {	display: flex;	flex-direction: column;	gap: 20px;}.ctc-contact-item {	display: flex;	align-items: center;	background-color: #f9f9f9;	padding: 15px 20px;	border-radius: 8px;	border: 1px solid #e0e0e0;	transition: transform 0.2s ease, box-shadow 0.2s ease;}.ctc-contact-item:hover {	transform: translateY(-2px);	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);}.ctc-icon-wrapper {	width: 50px;	height: 50px;	border-radius: 50%;	display: flex;	justify-content: center;	align-items: center;	margin-right: 20px;	flex-shrink: 0;}.ctc-icon-wrapper svg {	width: 24px;	height: 24px;	fill: #ffffff;}.ctc-details {	text-align: left;	flex-grow: 1;}.ctc-label {	font-size: 0.85rem;	color: #515151;	font-weight: 600;	text-transform: uppercase;	letter-spacing: 0.5px;}.ctc-info {	font-size: 1rem;	color: #333333;	margin-top: 2px;	word-break: break-all;}.ctc-button {	display: inline-flex;	align-items: center;	justify-content: center;	padding: 10px 16px;	border-radius: 6px;	text-decoration: none;	color: #ffffff;	font-weight: 600;	font-size: 0.9rem;	transition: background-color 0.2s ease;	white-space: nowrap;	margin-left: 15px;}/* WhatsApp Specific */.ctc-wa .ctc-icon-wrapper {	background-color: #4caf50;}.ctc-wa .ctc-button {	background-color: #4caf50;}.ctc-wa .ctc-button:hover {	background-color: #3d8b40;}/* Email Specific */.ctc-email .ctc-icon-wrapper {	background-color: #2faace;}.ctc-email .ctc-button {	background-color: #2faace;}.ctc-email .ctc-button:hover {	background-color: #248aa8;}/* Address Specific */.ctc-address .ctc-icon-wrapper {	background-color: #515151;}.ctc-address .ctc-button {	background-color: #333333;}.ctc-address .ctc-button:hover {	background-color: #1a1a1a;}/* RESPONSIVE */@media (max-width: 768px) {	header {		padding: 0 1rem;	}	.menu-toggle {		display: flex;	}	.menu-toggle.active span:nth-child(1) {		transform: translateY(9px) rotate(45deg);		background-color: #ed1c24;	}	.menu-toggle.active span:nth-child(2) {		opacity: 0;	}	.menu-toggle.active span:nth-child(3) {		transform: translateY(-9px) rotate(-45deg);		background-color: #ed1c24;	}	.nav-menu {		position: fixed;		top: 70px;		left: -100%;		width: 100%;		height: calc(100% - 70px);		background-color: #333333;		flex-direction: column;		align-items: stretch;		transition: all 0.4s ease;		overflow-y: auto;	}	.nav-menu.active {		left: 0;	}	.nav-item {		height: auto;		flex-direction: column;		align-items: flex-start;		border-bottom: 1px solid #515151;	}	.nav-link {		width: 100%;		padding: 1.2rem 1.5rem;		height: auto;	}	.sub-menu {		position: static;		width: 100%;		display: none;		background-color: #515151;		box-shadow: none;		border-top: none;	}	/* Tampilkan submenu saat di-click di mobile */	.nav-item.mobile-open .sub-menu {		display: block;	}	.nav-item.mobile-open .nav-link {		background-color: #515151;		color: #4caf50;	}	.sub-menu li a {		padding: 1rem 2.5rem;	}	.slogan-box {		padding: 1.5rem;		width: 90%;	}	.slogan-box h1 {		font-size: 2rem;	}	.slogan-box p {		font-size: 1rem;	}		.row-about, .row-about.reverse {		flex-direction: column;		text-align: center;	}	.col-text-about p {		text-align: center;	}	.col-image-about img {		max-width: 100%;		height: auto;	}			.svc-content-grid {		grid-template-columns: 1fr;	}		.svc-container {		padding: 100px 20px;	}	.svc-hero-title {		font-size: 2rem;	}}@media (max-width: 600px) {	.prod-container {		grid-template-columns: 1fr;		gap: 20px;	}		.ctc-container {		padding: 25px 20px;	}	.ctc-contact-item {		flex-direction: column;		text-align: center;		padding: 20px;	}	.ctc-icon-wrapper {		margin-right: 0;		margin-bottom: 15px;	}	.ctc-details {		text-align: center;		margin-bottom: 15px;	}	.ctc-button {		margin-left: 0;		width: 100%;	}}