/* ==========================================================================
   ELVARA FINANCE — footer.css
   Every spacing, font-size, font-weight value explicit per class.
   Font-family and color inherited from global.css only.
   ========================================================================== */


/* ==========================================================================
   1. FOOTER WRAPPER
   ========================================================================== */

.site-footer {
	width: 100%;
	background-color: var(--color-navy-deep);
}


/* ==========================================================================
   2. CTA BLOCK
   ========================================================================== */

.site-footer__cta {
	padding-top: 40px;
	padding-bottom: 24px;
}

.site-footer__cta-inner {
	display: flex;
	align-items: center;
	gap: 360px;
}

.site-footer__cta-left {
	display: flex;
	flex-direction: column;
	max-width: 300px;
}

.site-footer__cta-heading {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
}

.site-footer__cta-line {
	width: 120px;
	height: auto;
	display: block;
}

.site-footer__cta-body {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 24px;
	margin-bottom: 0px !important;
}

.site-footer__cta-right {
	flex-shrink: 0;
}


/* ==========================================================================
   3. SECTION DIVIDER
   ========================================================================== */

.site-footer__section-divider {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.12);
}


/* ==========================================================================
   4. MAIN FOOTER BLOCK
   ========================================================================== */

.site-footer__main {
	padding-top: 24px;
	padding-bottom: 24px;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 3.5fr 2fr 2.5fr 3fr;
	align-items: start;
	gap: 0;
}
.site-footer__brand {
	padding-right: 0;
}

.site-footer__nav {
	padding-left: 180px;
}

.site-footer__contact {
	padding-left: 48px;
}

.site-footer__ef-badge {
	margin-left: 120px;
}


/* ==========================================================================
   5. BRAND COLUMN
   ========================================================================== */

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__logo {
	text-decoration: none;
	display: inline-block;
}

.site-footer__logo-name {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0;
	color: var(--color-white);
	line-height: 1.1;
}

.site-footer__brand-desc {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   6. COLUMN HEADINGS
   ========================================================================== */

.site-footer__col-heading {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.80);
	margin-bottom: 20px;
	line-height: 1;
}


/* ==========================================================================
   7. NAVIGATION COLUMN
   ========================================================================== */

.site-footer__nav-list {
	display: flex;
	flex-direction: row;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__nav-link {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.70);
	text-decoration: none;
	transition: color var(--duration) var(--ease-out);
}

.site-footer__nav-link:hover {
	color: var(--color-white);
}


/* ==========================================================================
   8. CONTACT COLUMN
   ========================================================================== */

.site-footer__contact {
	display: flex;
	flex-direction: column;
}

.site-footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__contact-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.site-footer__contact-link {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.70);
	text-decoration: none;
	transition: color var(--duration) var(--ease-out);
	white-space: nowrap;
}

.site-footer__contact-link:hover {
	color: var(--color-white);
}


/* ==========================================================================
   9. EF BADGE
   ========================================================================== */

.site-footer__ef-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: transparent;
	border: 1.5px solid var(--color-accent);
	margin-top: 8px;
	flex-shrink: 0;
	align-self: flex-start;
}

.site-footer__ef-initials {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-accent);
	line-height: 1;
	letter-spacing: 0.03em;
}


/* ==========================================================================
   10. COPYRIGHT BAR
   ========================================================================== */

.site-footer__copyright-bar {

	padding-bottom: 24px;
}

.site-footer__copyright {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.40);
	text-align: center;
	line-height: 1;
}


/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 0;
	}


	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__nav {
		padding-left: 0;
	}

	.site-footer__contact {
		padding-left: 0;
	}

	.site-footer__ef-badge {
		display: none;
	}

	.site-footer__cta-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}
}
@media (max-width: 480px) {

	.site-footer__cta {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.site-footer__cta-heading {
		font-size: 20px;
	}

	.site-footer__main {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 0;
	}


	.site-footer__nav {
		padding-bottom: 40px;
	}

	.site-footer__brand {
	    padding-bottom: 16px;
		grid-column: auto;
	}

	.site-footer__nav-list {
		flex-direction: column;
		gap: 12px;
	}

	.site-footer__copyright {
		text-align: left;
		font-size: 12px;
	}
}