/* Footer Styles */
.footer {
	border-top: 2px solid var(--border);
	padding: 60px 0 30px 0;
	background: 
		linear-gradient(135deg, rgba(248,180,0,0.05) 0%, transparent 50%),
		radial-gradient(circle at 20% 50%, rgba(255,204,0,0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(248,180,0,0.06) 0%, transparent 50%),
		#fffdfa;
	background-size: 100% 100%, 600px 600px, 600px 600px, 100% 100%;
	background-position: 0 0, 0 0, 100% 0, 0 0;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(248,180,0,0.02) 10px, rgba(248,180,0,0.02) 20px),
		repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,204,0,0.02) 10px, rgba(255,204,0,0.02) 20px);
	opacity: 0.6;
	pointer-events: none;
}

.footer .container {
	position: relative;
	z-index: 1;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr auto;
	gap: 40px;
	margin-bottom: 40px;
	align-items: start;
}

.footer-col h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: var(--text);
}

.footer-brand {
	max-width: 320px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.4px;
}

.footer-logo .logo-img {
	height: 32px;
	width: auto;
	object-fit: contain;
}

.footer-tagline {
	font-weight: 600;
	color: var(--primary-2);
	margin: 0 0 12px 0;
	font-size: 14px;
}

.footer-description {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 20px 0;
	text-align: justify;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(248,180,0,0.1), rgba(255,204,0,0.08));
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
	font-size: 16px;
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px) scale(1.1);
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	border-color: transparent;
	box-shadow: 0 8px 20px rgba(248,180,0,0.2);
	color: #18191a;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links li a {
	color: var(--muted);
	font-size: 14px;
	transition: color 0.3s ease, transform 0.3s ease;
	display: inline-block;
}

.footer-links li a:hover {
	color: var(--primary-2);
	transform: translateX(4px);
}

.footer-cta-text {
	color: var(--muted);
	font-size: 13px;
	margin: 0 0 16px 0;
	line-height: 1.5;
	text-align: right;
}

.footer-col:last-child {
	margin-left: auto;
	text-align: right;
	max-width: 320px;
}

.footer-col:last-child h4 {
	text-align: left;
}

.footer-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-cta-buttons .btn {
	width: 100%;
	justify-content: center;
	padding: 12px 16px;
	font-size: 14px;
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copyright p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.footer-legal {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-legal a {
	color: var(--muted);
	font-size: 13px;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--primary-2);
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 32px;
	}
	.footer-brand {
		grid-column: 1 / -1;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 48px 0 28px 0;
	}
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 32px 20px;
	}
	.footer-brand {
		grid-column: 1 / -1;
		text-align: center;
		padding-bottom: 28px;
		border-bottom: 2px solid var(--border);
		margin-bottom: 12px;
	}
	.footer-brand .footer-logo {
		justify-content: center;
		margin-bottom: 12px;
	}
	.footer-description {
		text-align: center;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.footer-col {
		text-align: center;
	}
	.footer-col h4 {
		margin-bottom: 14px;
		font-size: 15px;
		color: var(--text);
		text-align: center;
	}
	.footer-links {
		align-items: center;
		gap: 10px;
	}
	.footer-links li a {
		font-size: 13px;
		color: var(--muted);
		transition: color 0.2s ease;
		text-align: center;
	}
	.footer-links li a:hover {
		color: var(--primary-2);
	}
	.footer-col:last-child {
		grid-column: 1 / -1;
		text-align: center;
		margin-top: 12px;
		margin-left: 0;
		padding: 24px 16px;
		border-top: 2px solid var(--border);
		background: linear-gradient(180deg, rgba(248,180,0,0.03), transparent);
		border-radius: 12px;
	}
	
	.footer-col:last-child h4 {
		text-align: center;
	}
	
	.footer-col:last-child .footer-cta-text {
		text-align: center;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 16px;
		margin-top: 32px;
		padding-top: 24px;
		border-top: 1px solid var(--border);
	}
	.footer-cta-buttons {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		gap: 10px;
	}
	.footer-cta-buttons .btn {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}
	.footer-cta-text {
		text-align: center;
		margin-bottom: 18px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 40px 0 24px 0;
	}
	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-brand {
		grid-column: 1;
		text-align: center;
		padding-bottom: 24px;
		margin-bottom: 8px;
		border-bottom: 2px solid var(--border);
	}
	.footer-brand .footer-logo {
		justify-content: center;
		margin-bottom: 12px;
	}
	.footer-logo .logo-img {
		height: 30px;
	}
	.footer-logo span {
		font-size: 17px;
	}
	.footer-tagline {
		font-size: 13px;
		margin-bottom: 12px;
        margin-left: 105px;
	}
	.footer-description {
		font-size: 13px;
		text-align: center;
		margin-bottom: 20px;
		line-height: 1.6;
		padding: 0 8px;
	}
	.footer-col {
		text-align: center;
		padding: 0;
	}
	.footer-col h4 {
		font-size: 15px;
		margin-bottom: 14px;
		font-weight: 700;
		color: var(--text);
		border-bottom: 1px solid var(--border);
		padding-bottom: 8px;
		text-align: center;
	}
	.footer-links {
		align-items: center;
		gap: 10px;
	}
	.footer-links li a {
		font-size: 13px;
		padding: 6px 0;
		display: block;
		color: var(--muted);
		text-align: center;
	}
	.footer-links li a:hover {
		color: var(--primary-2);
		padding-left: 0;
	}
	.social-links {
		justify-content: center;
		gap: 12px;
		margin-top: 8px;
	}
	.social-link {
		width: 46px;
		height: 46px;
		font-size: 18px;
	}
	.footer-col:last-child {
		grid-column: 1;
		margin-top: 8px;
		margin-left: 25px;
		padding: 24px 16px;
		text-align: center;
		background: linear-gradient(180deg, rgba(248,180,0,0.04), transparent);
		border: 1px solid rgba(248,180,0,0.2);
		border-radius: 14px;
	}
	
	.footer-col:last-child h4 {
		text-align: center;
	}
	
	.footer-col:last-child .footer-cta-text {
		text-align: center;
	}
	.footer-cta-text {
		font-size: 13px;
		margin-bottom: 18px;
		color: var(--text);
		line-height: 1.5;
	}
	.footer-cta-buttons {
		width: 100%;
		max-width: 100%;
		gap: 12px;
	}
	.footer-cta-buttons .btn {
		padding: 14px 20px;
		font-size: 14px;
		width: 100%;
		font-weight: 600;
	}
	.footer-bottom {
		margin-top: 32px;
		padding-top: 24px;
		gap: 16px;
		border-top: 1px solid var(--border);
	}
	.footer-copyright p {
		font-size: 12px;
		color: var(--muted);
		line-height: 1.5;
	}
	.footer-legal {
		flex-direction: column;
		gap: 12px;
		width: 100%;
		align-items: center;
	}
	.footer-legal a {
		font-size: 12px;
		padding: 6px 0;
		display: block;
		color: var(--muted);
		transition: color 0.2s ease;
	}
	.footer-legal a:hover {
		color: var(--primary-2);
	}
}

