/* ===================================
   FOOTER CUSTOM STYLES
   =================================== */

#footer {
	background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(15, 20, 45, 0.98) 100%);
	padding: 80px 0 30px 0;
	color: rgba(255, 255, 255, 0.85);
	border-top: 2px solid rgba(0, 242, 167, 0.2);
	position: relative;
	overflow: hidden;
}

#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(0, 242, 167, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.footer-top {
	position: relative;
	z-index: 1;
	padding-bottom: 50px;
}

.footer-info {
	margin-bottom: 30px;
}

.footer-info h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-info h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.footer-info p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	font-size: 0.95rem;
	margin-bottom: 0;
}

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

.footer-newsletter h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-newsletter .embed-responsive {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(0, 242, 167, 0.1);
}

.footer-newsletter iframe {
	border-radius: 12px;
	width: 100%;
	height: 250px;
}

.footer-links {
	margin-bottom: 25px;
}

.footer-links h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	padding-bottom: 10px;
}

.footer-links h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

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

.footer-links ul li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.footer-links ul li:last-child {
	border-bottom: none;
}

.footer-links ul li:hover {
	padding-left: 10px;
}

.footer-links ul a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.footer-links ul a::before {
	content: '›';
	font-size: 1.3rem;
	margin-right: 8px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.footer-links ul a:hover {
	color: var(--primary-color);
	transform: translateX(5px);
}

.footer-links ul a:hover::before {
	margin-right: 12px;
}

.social-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: rgba(0, 242, 167, 0.1);
	border: 2px solid rgba(0, 242, 167, 0.2);
	border-radius: 10px;
	color: var(--primary-color);
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-links a:hover {
	background: var(--gradient-primary);
	border-color: var(--primary-color);
	color: #0a0e27;
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 242, 167, 0.4);
}

.social-links a i {
	transition: transform 0.3s ease;
}

.social-links a:hover i {
	transform: scale(1.1);
}

/* Video Profil Section */
.form {
	background: rgba(26, 31, 58, 0.5);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(0, 242, 167, 0.1);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.form h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	padding-bottom: 12px;
}

.form h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.form .embed-responsive {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(0, 242, 167, 0.15);
	height: 350px;
}

.form iframe {
	border-radius: 12px;
	width: 100%;
	height: 100%;
}

/* Footer Bottom */
.copyright {
	text-align: center;
	padding: 20px 0 10px;
	border-top: 1px solid rgba(0, 242, 167, 0.15);
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.copyright strong {
	color: var(--primary-color);
	font-weight: 600;
}

.copyright .font-italic {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	display: inline;
	margin-left: 3px;
}

.credits {
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 8px;
	padding-bottom: 15px;
}

.credits b {
	display: inline-block;
	animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

	0%,
	100% {
		transform: scale(1);
	}

	10%,
	30% {
		transform: scale(1.2);
	}

	20%,
	40% {
		transform: scale(1);
	}
}

.credits a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.credits a:hover {
	color: #00d4ff;
	text-decoration: underline;
}

.credits i {
	color: #E1306C;
	transition: transform 0.3s ease;
}

.credits a:hover i {
	transform: rotate(360deg) scale(1.2);
}

/* ===================================
   RESPONSIVE FOOTER
   =================================== */

@media (max-width: 991px) {
	#footer {
		padding: 60px 0 30px 0;
	}

	.footer-top {
		padding-bottom: 40px;
	}

	.footer-info,
	.footer-links,
	.footer-newsletter {
		margin-bottom: 35px;
	}

	.form {
		padding: 25px;
		margin-top: 30px;
	}

	.form .embed-responsive {
		height: 280px;
	}

	.footer-newsletter iframe {
		height: 220px;
	}

	.social-links {
		justify-content: flex-start;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	#footer {
		padding: 50px 0 20px 0;
	}

	.footer-info h3 {
		font-size: 1.35rem;
	}

	.footer-links h4,
	.footer-newsletter h4,
	.form h4 {
		font-size: 1.1rem;
	}

	.footer-info p {
		font-size: 0.9rem;
	}

	.form {
		padding: 20px;
	}

	.form .embed-responsive {
		height: 250px;
	}

	.footer-newsletter iframe {
		height: 200px;
	}

	.social-links a {
		width: 42px;
		height: 42px;
		font-size: 1rem;
	}

	.copyright {
		font-size: 0.9rem;
		padding: 25px 0 12px;
	}

	.credits {
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	#footer {
		padding: 40px 0 15px 0;
	}

	.footer-info h3 {
		font-size: 1.25rem;
	}

	.footer-links h4,
	.footer-newsletter h4,
	.form h4 {
		font-size: 1rem;
	}

	.footer-info p,
	.footer-links ul a {
		font-size: 0.875rem;
	}

	.form {
		padding: 18px;
	}

	.form .embed-responsive {
		height: 220px;
	}

	.footer-newsletter iframe {
		height: 180px;
	}

	.social-links {
		gap: 10px;
	}

	.social-links a {
		width: 40px;
		height: 40px;
		font-size: 0.95rem;
	}

	.copyright {
		font-size: 0.85rem;
		padding: 20px 0 10px;
	}

	.copyright .font-italic {
		font-size: 0.8rem;
	}

	.credits {
		font-size: 0.8rem;
	}
}