:root {
	--primary: #00695c;
	--primary-dark: #004d40;
	--primary-light: #4db6ac;
	--primary-gradient: linear-gradient(
		135deg,
		#004d40 0%,
		#00897b 50%,
		#26a69a 100%
	);
	--secondary: #00897b;
	--accent: #f57c00;
	--dark: #263238;
	--text: #546e7a;
	--text-light: #90a4ae;
	--bg-light: #f5f7fa;
	--bg-card: #ffffff;
	--white: #ffffff;
	--shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	--shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.1);
	--radius: 12px;
	--radius-sm: 8px;
	--font: "Inter", "Segoe UI", sans-serif;
	--topbar-bg: var(--primary-gradient);
}

body {
	font-family: var(--font);
	color: var(--text);
	overflow-x: hidden;
	background: var(--bg-light);
}

#Top_bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	background: var(--topbar-bg);
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	padding: 6px 0;
}

#Top_bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

#Top_bar .top-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

#Top_bar .top-menu li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 500;
	font-size: 12px;
	transition: color 0.3s;
}

#Top_bar .top-menu li a:hover {
	color: var(--white);
}

#Top_bar .top-info {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 12px;
	overflow: hidden;
	white-space: nowrap;
}

#Top_bar .top-info marquee {
	color: rgba(255, 255, 255, 0.75);
}

#Top_bar .top-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
}

#Top_bar .top-social li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	transition: all 0.3s;
	text-decoration: none;
}

#Top_bar .top-social li a:hover {
	background: var(--white);
	color: var(--topbar-bg);
}

#header {
	position: fixed;
	top: 36px;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	padding: 0;
	height: 78px;
	transition: all 0.3s;
}

#header.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header #logo {
	display: flex;
	align-items: center;
}
#header #logo img {
	height: 70px;
	width: auto;
	padding: 4px 0;
}
#header .header-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 32px;
}

.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2px;
}
.nav-menu > li {
	position: relative;
}
.nav-menu > li > a {
	display: block;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 700;
	font-family: "Poppins", "Inter", sans-serif;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.3s;
	border-radius: 6px;
}
.nav-menu > li > a:hover,
.nav-menu > li.menu-active > a {
	color: var(--primary);
	background: rgba(0, 137, 123, 0.06);
}
.nav-menu .menu-has-children > a::after {
	content: "\f107";
	font-family: "FontAwesome";
	margin-left: 6px;
	font-size: 11px;
}
.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-radius: var(--radius-sm);
	padding: 8px 0;
	min-width: 220px;
	z-index: 999;
	list-style: none;
}
.nav-menu .menu-has-children:hover > .sub-menu {
	display: block;
}
.nav-menu .sub-menu li a {
	display: block;
	padding: 10px 24px;
	font-size: 14px;
	color: var(--text);
	text-decoration: none;
	transition: all 0.3s;
}
.nav-menu ul li a {
	font-size: 14px;
}
.nav-menu .sub-menu li a:hover {
	color: var(--primary);
	background: rgba(0, 137, 123, 0.04);
}

section#hero {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0;
	height: calc(100vh - 100px);
	min-height: 400px;
	background: url(../img/pademangan-bg.png) top center fixed / cover;
}
.hero-slider {
	position: relative;
	height: 100%;
}
.hero-slide {
	display: none;
	height: 100%;
}
.hero-slide.active {
	display: block;
	height: 100%;
	animation: heroFadeIn 0.6s ease;
}
@keyframes heroFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.hero-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.hero-slide .hero-fallback {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.75);
}

.hero-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s;
	border: 2px solid rgba(0, 0, 0, 0.15);
}
.hero-dot.active {
	background: var(--primary);
	border-color: var(--primary);
	transform: scale(1.2);
}

.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	background: transparent;
	border: none;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	line-height: 1;
	padding: 0;
	box-shadow: none;
}
#hero:hover .hero-arrow {
	opacity: 1;
}
.hero-arrow:hover {
	background: rgba(255, 255, 255, 0.15);
}
.hero-arrow-left {
	left: 20px;
}
.hero-arrow-right {
	right: 20px;
}

section {
	padding: 60px 0;
}
.poli-slider-section {
}
.poli-slider-wrap {
	position: relative;
}
.poli-slider-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	padding: 8px 0;
}
.poli-slider-track::-webkit-scrollbar {
	display: none;
}
.poli-slide {
	flex: 0 0 calc(33.333% - 14px);
	scroll-snap-align: start;
	min-width: 0;
}
@media (max-width: 768px) {
	.poli-slide {
		flex: 0 0 calc(50% - 10px);
	}
}
@media (max-width: 480px) {
	.poli-slide {
		flex: 0 0 100%;
	}
}
.poli-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: var(--white);
	border: none;
	color: var(--dark);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	line-height: 1;
	padding: 0;
}
.poli-arrow:hover {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.poli-arrow-left {
	left: -20px;
}
.poli-arrow-right {
	right: -20px;
}
#quick-actions {
	padding: 60px 0;
}
main {
	display: block;
	padding: 0;
	margin: 0;
}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}
.section-header h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
}
.section-header p {
	font-size: 0.95rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

#quick-actions {
	background: var(--white);
	padding: 30px 0;
	border-bottom: 1px solid #eef0f4;
}
.quick-action-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.quick-action-card {
	text-align: center;
	padding: 30px 20px;
	border-radius: var(--radius);
	background: var(--bg-light);
	transition: all 0.3s;
	text-decoration: none;
	display: block;
}
.quick-action-card:hover {
	background: var(--primary);
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}
.quick-action-card .icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	box-shadow: var(--shadow);
	transition: all 0.3s;
}
.quick-action-card:hover .icon {
	background: rgba(255, 255, 255, 0.2);
}
.quick-action-card .icon i {
	font-size: 32px;
	color: var(--primary);
	transition: color 0.3s;
}
.quick-action-card:hover .icon i {
	color: var(--white);
}
.quick-action-card h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 4px;
	transition: color 0.3s;
}
.quick-action-card:hover h4 {
	color: var(--white);
}
.quick-action-card span {
	font-size: 0.8rem;
	color: var(--text-light);
	transition: color 0.3s;
}
.quick-action-card:hover span {
	color: rgba(255, 255, 255, 0.8);
}
.quick-action-card .btn-action {
	display: inline-block;
	margin-top: 12px;
	padding: 5px 18px;
	border-radius: 50px;
	background: var(--primary);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 600;
	transition: all 0.3s;
}
.quick-action-card:hover .btn-action {
	background: var(--white);
	color: var(--primary);
}

.info-sidebar {
	background: var(--primary-gradient);
	border-radius: var(--radius);
	padding: 30px;
	color: var(--white);
	height: 100%;
}
.info-sidebar .info-icon {
	margin-bottom: 15px;
}
.info-sidebar .info-icon i {
	font-size: 36px;
}
.info-sidebar h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.4;
}
.info-sidebar .time-row {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.info-sidebar .time-row:last-child {
	border-bottom: none;
}
.info-sidebar .time-row .label {
	font-size: 0.8rem;
	opacity: 0.85;
	display: block;
	margin-bottom: 2px;
}
.info-sidebar .time-row .value {
	font-size: 0.95rem;
	font-weight: 600;
}

.content-slider-section {
	background: var(--white);
}
.content-slider {
	position: relative;
	overflow: hidden;
}
.content-slider .slider-track {
	display: flex;
	transition: transform 0.5s ease;
}
.content-slider .slider-item {
	flex: 0 0 25%;
	padding: 0 10px;
	box-sizing: border-box;
}
.content-slider .slider-card {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--bg-card);
	transition: all 0.3s;
}
.content-slider .slider-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-3px);
}
.content-slider .slider-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.content-slider .slider-card .card-body {
	padding: 16px;
}
.content-slider .slider-card .card-body h5 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}
.content-slider .slider-card .card-body .btn-popup {
	font-size: 0.8rem;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}
.content-slider .slider-nav {
	text-align: center;
	margin-top: 25px;
}
.content-slider .slider-nav button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #ccc;
	background: transparent;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}
.content-slider .slider-nav button.active {
	background: var(--primary);
	border-color: var(--primary);
}

.team-card {
	text-align: center;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--bg-card);
	transition: all 0.3s;
}
.team-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-3px);
}
.team-card .team-img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}
.team-card .team-body {
	padding: 16px;
}
.team-card .team-body .poli-label {
	font-size: 0.8rem;
	color: var(--text-light);
	margin-bottom: 4px;
}
.team-card .team-body h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

#contact {
	background: var(--bg-light);
}
#contact .map-container {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom: 30px;
}
#contact .map-container iframe {
	width: 100%;
	height: 300px;
	border: 0;
	display: block;
}
.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 20px;
}
.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	background: var(--bg-card);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
}
.contact-info-item .icon {
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-info-item .icon i {
	font-size: 16px;
	color: var(--white);
}
.contact-info-item p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--text);
	line-height: 1.5;
}
#contact .social-links {
	display: flex;
	gap: 10px;
}
#contact .social-links a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	font-size: 18px;
	transition: all 0.3s;
	box-shadow: var(--shadow);
	text-decoration: none;
}
#contact .social-links a:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
}

#footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 50px 0 25px;
	font-size: 0.88rem;
}
#footer h4 {
	color: var(--white);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 18px;
}
#footer p {
	line-height: 1.7;
	margin-bottom: 8px;
}
#footer a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
}
#footer a:hover {
	color: var(--primary-light);
}
#footer .copyright {
	text-align: center;
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.82rem;
}

.float-wa {
	position: fixed;
	width: 52px;
	height: 52px;
	bottom: 25px;
	right: 25px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 26px;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	text-decoration: none;
}
.float-wa:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
	color: var(--white);
}

.back-to-top {
	position: fixed;
	bottom: 25px;
	left: 25px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	z-index: 99;
	box-shadow: var(--shadow);
	text-decoration: none;
}
.back-to-top.active {
	display: flex;
}

.container {
	max-width: 1200px;
}
.mb-4 {
	margin-bottom: 1.5rem;
}
.mt-4 {
	margin-top: 1.5rem;
}
.mb-3 {
	margin-bottom: 1rem;
}

.btn-primary {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	font-weight: 600;
	transition: all 0.3s;
}
.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

body.has-topbar #header {
	top: 36px;
}
body.has-topbar #header.header-fixed {
	top: 0;
}

#poli .quick-action-card .icon {
	width: 56px;
	height: 56px;
}
#poli .quick-action-card .icon i {
	font-size: 24px;
}

#eregistrasi .quick-action-card {
	text-align: left;
	padding: 24px;
}
#eregistrasi .quick-action-card .icon {
	margin: 0 16px 0 0;
	width: 48px;
	height: 48px;
	min-width: 48px;
}
#eregistrasi .quick-action-card .icon i {
	font-size: 22px;
}

#visi-misi .quick-action-card .icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#visi-misi .quick-action-card .icon i {
	color: var(--white);
	font-size: 24px;
}

.d-flex {
	display: flex;
}
.align-items-center {
	align-items: center;
}

#facts .counters > div p {
	font-size: 0.88rem;
	opacity: 0.9;
	margin: 0;
	line-height: 1.3;
}
#facts .counters > div div:first-child {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.content-slider-section {
	background: var(--white);
	padding: 60px 0;
}

#blog .btn-primary {
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	background: var(--primary);
	color: var(--white);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}
#blog .btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
	.hero-slider {
		height: auto;
	}
	.hero-slide .hero-fallback h1 {
		font-size: 1.5rem !important;
		padding: 0 20px;
	}
	.hero-slide .hero-fallback p {
		font-size: 0.9rem !important;
		padding: 0 20px;
	}
	section {
		padding: 40px 0;
	}
	.section-header h2 {
		font-size: 1.35rem;
	}
	.quick-action-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.content-slider .slider-item {
		flex: 0 0 50%;
	}
}
@media (max-width: 576px) {
	.content-slider .slider-item {
		flex: 0 0 100%;
	}
}
.instagram-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 32px 20px 24px;
	text-decoration: none;
	transition: all 0.25s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	height: 100%;
}
.instagram-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: #e1306c;
}
.instagram-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.instagram-card-icon i {
	font-size: 28px;
	color: #fff;
}
.instagram-card-body {
	width: 100%;
}
.instagram-card-badge {
	display: inline-block;
	background: #e1306c;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.instagram-card-desc {
	font-size: 13px;
	color: #666;
	margin: 0 0 14px;
	line-height: 1.5;
}
.instagram-card-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #e1306c;
}
.instagram-card-btn i {
	font-size: 11px;
	margin-left: 4px;
}
