/* ==========================================================
   GO DEBT FREE — ELEMENTOR WIDGETS BASE STYLESHEET
   Structural rules only. Colors/typography/spacing that are
   exposed as Elementor Style controls are added inline per
   widget instance (via {{WRAPPER}} selectors) and win on
   specificity, so this file is safe to keep global.
   ========================================================== */

.gdf-header-widget,
.gdf-footer-widget {
	font-family: 'Manrope', sans-serif;
}
.gdf-header-widget *,
.gdf-header-widget *::before,
.gdf-header-widget *::after,
.gdf-footer-widget *,
.gdf-footer-widget *::before,
.gdf-footer-widget *::after {
	box-sizing: border-box;
}
.gdf-header-widget a,
.gdf-footer-widget a {
	text-decoration: none;
	color: inherit;
}

/* ---------------- HEADER ---------------- */
.gdf-nav {
	position: sticky;
	top: 0;
	z-index: 600;
	width: 100%;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid #d6e5db;
	transition: box-shadow .3s;
}
.gdf-nav-inner {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 80px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.gdf-logo img {
	width: 200px;
	display: block;
}
.gdf-links {
	display: flex;
	align-items: center;
	gap: 28px;
}
.gdf-links a {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	position: relative;
	transition: color .18s;
}
.gdf-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	border-radius: 2px;
	transition: width .2s;
}
.gdf-links a:hover::after {
	width: 100%;
}
.gdf-cta {
	display: inline-flex;
	padding: 9px 20px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all .2s;
	white-space: nowrap;
}
.gdf-cta:hover {
	transform: translateY(-1px);
}
.gdf-hmbg {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #01472b;
}
.gdf-hmbg svg {
	width: 24px;
	height: 24px;
}

/* Mobile menu panel */
.gdf-mob {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 700;
	background: #01472b;
	flex-direction: column;
	padding: 24px 28px 48px;
	overflow-y: auto;
}
.gdf-mob.on {
	display: flex;
}
.gdf-mob-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
.gdf-mob-x {
	background: none;
	border: none;
	color: rgba(255, 255, 255, .55);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}
.gdf-mob-nav {
	display: flex;
	flex-direction: column;
}
.gdf-mob-nav a {
	font-size: 20px;
	font-weight: 700;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
	display: block;
	transition: color .18s;
}
.gdf-mob-btn {
	margin-top: 32px;
	display: block;
	text-align: center;
	padding: 16px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 800;
}

/* Default responsive fallback (widget also injects its own dynamic breakpoint) */
@media (max-width: 1400px) {
	.gdf-nav-inner { padding-left: 48px; padding-right: 48px; }
}
@media (max-width: 960px) {
	.gdf-nav-inner { padding-left: 28px; padding-right: 28px; }
	.gdf-links { display: none; }
	.gdf-hmbg { display: flex; }
}

/* ---------------- FOOTER ---------------- */
.gdf-footer {
	padding: 64px 0 32px;
	width: 100%;
}
.gdf-footer-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 80px;
}
.gdf-foot-grid {
	display: grid;
	grid-template-columns: 2.3fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 52px;
}
.gdf-foot-logo img {
	display: block;
	margin-bottom: 14px;
}
.gdf-foot-desc {
	font-size: 13px;
	line-height: 1.7;
	max-width: 300px;
	margin: 0;
}
.gdf-foot-h {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
	margin: 0 0 16px;
}
.gdf-foot-lnks {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 22px;
	padding: 0;
}
.gdf-foot-lnks:last-child {
	margin-bottom: 0;
}
.gdf-foot-lnks a {
	font-size: 13px;
	transition: color .18s;
}
.gdf-foot-btm {
	border-top: 1px solid rgba(255, 255, 255, .5);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 14px;
}
.gdf-foot-legal {
	font-size: 12px;
	line-height: 1.65;
	max-width: 720px;
	margin: 0;
}
.gdf-foot-copy {
	font-size: 12px;
	white-space: nowrap;
	margin: 0;
}

@media (max-width: 1400px) {
	.gdf-footer-wrap { padding-left: 48px; padding-right: 48px; }
}
@media (max-width: 1200px) {
	.gdf-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.gdf-foot-grid { grid-template-columns: 1fr; }
	.gdf-footer-wrap { padding-left: 18px; padding-right: 18px; }
}
