/* =========================================================
   FOOTER MODERN - WEBSITE KESLAN
   ========================================================= */

.footer-modern {
	width: 100%;
	background: #172b2b;
	color: #ffffff;
	position: relative;
}

/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-modern__main {
	padding: 60px 0 50px;
}

.footer-modern__logo {
	width: 240px;
	max-width: 100%;
	height: auto;
	display: block;
}

.footer-modern__address,
.footer-modern__email {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.7;
}

.footer-modern__icon {
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-modern__icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.footer-modern__social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
}

.footer-modern__social-btn {
	width: 42px;
	height: 42px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);

	transition:
		background-color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}

.footer-modern__social-btn svg {
	width: 19px;
	height: 19px;
	fill: #ffffff;
	transition: transform 0.3s ease;
}

.footer-modern__social-btn:hover {
	background: #61c3a2;
	border-color: #61c3a2;
	transform: translateY(-3px);
}

.footer-modern__social-btn:hover svg {
	transform: scale(1.08);
}

/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-modern__title {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
}

.footer-modern__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-modern__links li {
	margin-bottom: 11px;
}

.footer-modern__links a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.5;
	text-decoration: none;

	transition:
		color 0.25s ease,
		padding-left 0.25s ease;
}

.footer-modern__links a:hover {
	color: #61c3a2;
	padding-left: 4px;
}

/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-modern__copyright {
	width: 100%;
	padding: 15px 20px;

	background: #61c3a2;
	color: #ffffff;

	text-align: center;
	font-size: 13px;
	line-height: 1.6;
}

.footer-modern__copyright i {
	margin-right: 4px;
}

/* =========================================================
   MASKOT
   ========================================================= */

.footer-modern__maskot {
	position: fixed;
	right: 20px;
	bottom: 30px;

	width: 100px;
	height: auto;

	z-index: 1000;
	cursor: pointer;
}

@keyframes footerMaskotShake {
	0% {
		transform: translate(1px, 1px) rotate(0deg);
	}

	10% {
		transform: translate(-1px, -2px) rotate(-1deg);
	}

	20% {
		transform: translate(-3px, 0px) rotate(1deg);
	}

	30% {
		transform: translate(3px, 2px) rotate(0deg);
	}

	40% {
		transform: translate(1px, -1px) rotate(1deg);
	}

	50% {
		transform: translate(-1px, 2px) rotate(-1deg);
	}

	60% {
		transform: translate(-3px, 1px) rotate(0deg);
	}

	70% {
		transform: translate(3px, 1px) rotate(-1deg);
	}

	80% {
		transform: translate(-1px, -1px) rotate(1deg);
	}

	90% {
		transform: translate(1px, 2px) rotate(0deg);
	}

	100% {
		transform: translate(1px, -2px) rotate(-1deg);
	}
}

.footer-modern__maskot:hover {
	animation: footerMaskotShake 2s infinite;
}

/* =========================================================
   RATING EMOJI
   Tetap dipertahankan karena mungkin digunakan modal feedback
   ========================================================= */

.rating-emoji span {
	font-size: 28px;
	cursor: pointer;
	margin: 0 8px;
	transition: 0.3s;
}

.rating-emoji span:hover,
.rating-emoji span.active {
	transform: scale(1.4);
}

.rating-group button {
	margin-right: 8px;
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {
	.footer-modern__main {
		padding: 45px 0 40px;
	}

	.footer-modern__logo {
		width: 220px;
	}
}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {
	.footer-modern__main {
		padding: 40px 20px;
	}

	.footer-modern__logo {
		width: 210px;
		margin: 0 auto;
	}

	.footer-modern__address,
	.footer-modern__email {
		justify-content: flex-start;
		font-size: 13px;
	}

	.footer-modern__social {
		justify-content: center;
	}

	.footer-modern__title {
		margin-top: 30px;
	}

	.footer-modern__copyright {
		padding: 13px 15px;
		font-size: 12px;
	}

	.footer-modern__maskot {
		width: 75px;
		right: 12px;
		bottom: 20px;
	}
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
	.footer-modern__main {
		padding: 35px 16px;
	}

	.footer-modern__logo {
		width: 190px;
	}

	.footer-modern__address,
	.footer-modern__email {
		font-size: 12px;
		line-height: 1.6;
	}

	.footer-modern__social-btn {
		width: 38px;
		height: 38px;
	}

	.footer-modern__social-btn svg {
		width: 17px;
		height: 17px;
	}

	.footer-modern__maskot {
		width: 65px;
	}
}
