/* ============================================================
   footer.css — Site footer
   Corresponds to: footer.php
   ============================================================ */

.site-footer { background: #0f172a; color: #cbd5e1; margin-top: 0; }

/* Newsletter banner */
.footer-cta-banner {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
	padding: 56px 0;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-inner { max-width: 560px; margin: 0 auto; }
.footer-cta-title {
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 22px;
}
.footer-newsletter {
	display: flex;
	gap: 8px;
	max-width: 460px;
	margin: 0 auto;
}
.newsletter-input {
	flex: 1;
	padding: 13px 18px;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.06);
	border-radius: var(--radius-sm);
	color: #fff;
	font-size: 14.5px;
	outline: none;
	transition: border-color .15s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--brand); }
.newsletter-submit {
	background: var(--brand);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: 14.5px;
	padding: 13px 24px;
	border-radius: var(--radius-sm);
	transition: background .15s ease;
}
.newsletter-submit:hover { background: var(--brand-dark); }
.newsletter-note { font-size: 12.5px; color: rgba(255,255,255,0.5); margin: 12px 0 0; }

/* Footer columns */
.footer-main { padding: 64px 0 40px; }
.footer-columns {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
}
.footer-logo-text { color: #fff !important; }
.footer-logo-text .logo-mark { color: #fff; }
.footer-about {
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.65;
	margin: 16px 0 20px;
	max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	color: #cbd5e1;
	transition: all .15s ease;
}
.social-link:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-widget-title { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0 0 11px; }
.footer-links a { color: #94a3b8; font-size: 14.5px; transition: color .15s ease; }
.footer-links a:hover { color: #fff; }

/* Footer bottom */
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 24px 0;
}
.footer-copyright {
	text-align: center;
	font-size: 13.5px;
	color: #64748b;
	margin: 0;
}
.footer-credit { color: #475569; }

/* ---------- Footer responsive ---------- */
@media (max-width: 900px) {
	.footer-columns { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
	.footer-columns { grid-template-columns: 1fr; }
	.footer-newsletter { flex-direction: column; }
}
