/**
 * Site footer — dark teal (#005A6E), 4-column top + bottom bar.
 * Mirrors Elementor footer template 2038.
 */

.site-footer { background: var(--color-blue); color: var(--color-white); }

.site-footer a { color: var(--color-white); }
.site-footer a:hover { color: var(--color-cta); }

/* Top: 4 columns */
.footer-top {
	max-width: none;            /* full width */
	margin: 0;
	padding: 65px 80px;         /* 80px left/right */
	border-top: 1px solid #113B43;
	display: grid;
	grid-template-columns: 23.681% 27.55% 27.847% 20.892%;   /* exact original column widths */
	gap: 0;
	align-items: start;
}
/* Column paddings from the original footer template */
.footer-col--logo { padding-right: 10px; }
.footer-col--menu { padding-left: 60px; }
.footer-col--contact { padding-left: 20px; }
.footer-col--social { padding-left: 30px; }

.footer-col__title {
	font-family: var(--font-secondary);
	font-size: 20px;
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-white);
	margin-bottom: 30px;
}
.footer-logo img { width: 327.17px; height: 108.5px; max-width: 100%; object-fit: contain; }

/* Footer link/contact lists */
.footer-list { display: flex; flex-direction: column; gap: 7px; }
.footer-list a { color: var(--color-white); font-size: 16px; transition: color var(--transition-fast); }
.footer-list a:hover { color: var(--color-cta); }

.footer-contact { display: flex; flex-direction: column; gap: 15px; }
.footer-contact li { display: flex; align-items: center; gap: 5px; margin: 0; font-size: 16px; }
.footer-contact a { color: var(--color-white); font-size: 16px; }
.footer-contact a:hover { color: var(--color-cta); }
.footer-contact svg { flex: 0 0 auto; height: 20px; width: auto; fill: var(--color-white); }

/* Social icons */
.social-icons { display: flex; align-items: center; gap: 21px; }
.social-icons li { margin: 0; }
.social-icons a { color: var(--color-white); transition: color var(--transition-normal); display: inline-flex; }
.social-icons a:hover { color: var(--color-cta-hover); }
.social-icons svg { height: 26px; width: auto; }   /* keep FA glyph aspect ratio */

/* Bottom bar */
.footer-bottom {
	background: var(--color-blue);
	border-top: 1px solid rgba(255, 255, 255, 0.19);
}
.footer-bottom__inner {
	max-width: none;            /* full width */
	margin: 0;
	min-height: 95px;
	padding: 0 80px;            /* 80px left/right */
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.footer-copyright { font-size: 14px; font-weight: var(--font-weight-light); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 3.6em; }
.footer-legal a { font-size: 14px; color: var(--color-white); }
.footer-legal a:hover { color: var(--color-cta); }
.footer-credit { display: flex; align-items: center; justify-content: flex-end; gap: 10px; font-size: 14px; }
.footer-credit a { color: var(--color-white); }
.footer-credit svg, .footer-credit img { height: 20px; width: auto; }
