/* ==========================================================================
   footer.css — Lead gen footer styles
   Part of GeneratePress Child (prop-leadgen network)
   ========================================================================== */

/* ── Main footer ─────────────────────────────────────────────────────────── */
.prop-footer {
	background: #111;
	color: #fff;
	margin-top: 0;
}

.prop-footer__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.prop-footer__main {
	padding: 72px 0 56px;
}

.prop-footer__main .prop-footer__container {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 48px;
	align-items: start;
}

/* ── Column titles ───────────────────────────────────────────────────────── */
.prop-footer__col-title {
	margin: 0 0 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

/* ── Brand column ────────────────────────────────────────────────────────── */
.prop-footer__logo {
	margin-bottom: 16px;
}

.prop-footer__logo img {
	max-height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
}

.prop-footer__logo-text {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
}

.prop-footer__tagline {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
	max-width: 280px;
}

/* Social icons */
.prop-footer__social {
	display: flex;
	gap: 10px;
}

.prop-footer__social-link {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.prop-footer__social-link svg {
	width: 16px;
	height: 16px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s ease;
}

.prop-footer__social-link:hover {
	background: #4cc7df;
	border-color: #4cc7df;
}

.prop-footer__social-link:hover svg {
	color: #000;
}

/* ── Nav lists ───────────────────────────────────────────────────────────── */
.prop-footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.prop-footer__nav-list li a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.15s ease;
	line-height: 1.4;
}

.prop-footer__nav-list li a:hover {
	color: #4cc7df;
}

/* ── Contact column ──────────────────────────────────────────────────────── */
.prop-footer__contact-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.prop-footer__contact-list li a,
.prop-footer__contact-list li span {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	line-height: 1.4;
	transition: color 0.15s ease;
}

.prop-footer__contact-list li a:hover {
	color: #4cc7df;
}

.prop-footer__contact-list svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	margin-top: 2px;
	color: #4cc7df;
}

/* CTA button */
.prop-footer__cta {
	display: inline-block;
	background: #4cc7df;
	color: #000;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 24px;
	border-radius: 999px;
	letter-spacing: 0.02em;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.prop-footer__cta:hover {
	background: #38bdd8;
	color: #000;
}

/* ── Bottom bar ──────────────────────────────────────────────────────────── */
.prop-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
}

.prop-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.prop-footer__copy {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
}

/* Legal nav */
.prop-footer__legal-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.prop-footer__legal-list li a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
	transition: color 0.15s ease;
}

.prop-footer__legal-list li a:hover {
	color: #fff;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.prop-footer__main .prop-footer__container {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.prop-footer__col--brand {
		grid-column: 1 / -1;
	}

	.prop-footer__tagline {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.prop-footer__main {
		padding: 48px 0 40px;
	}

	.prop-footer__main .prop-footer__container {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0 16px;
	}

	.prop-footer__col--brand {
		grid-column: auto;
	}

	.prop-footer__bottom .prop-footer__container {
		padding: 0 16px;
	}

	.prop-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
