/**
 * LocalXAds Footer Pro - Scoped Public Stylesheet
 * Strictly scoped under .lxfp-footer and #lxfp-back-to-top.
 * Zero global element pollution.
 */

/* ==========================================================================
   1. Scoped Reset & Base Container
   ========================================================================== */

.lxfp-footer {
	position: relative;
	width: 100%;
	background-color: var(--lxfp-bg, #050816);
	color: var(--lxfp-text, #CBD5E1);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	box-sizing: border-box;
	border-top: 1px solid var(--lxfp-border, #1E293B);
	z-index: 99;
	overflow: hidden;
}

.lxfp-footer *,
.lxfp-footer *::before,
.lxfp-footer *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.lxfp-footer.lxfp-is-sticky {
	position: sticky;
	bottom: 0;
}

.lxfp-footer.lxfp-layout-boxed {
	max-width: var(--lxfp-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	border-radius: 16px 16px 0 0;
}

.lxfp-footer.lxfp-has-glass {
	background-color: rgba(5, 8, 22, 0.85);
	backdrop-filter: blur(var(--lxfp-backdrop-blur, 16px));
	-webkit-backdrop-filter: blur(var(--lxfp-backdrop-blur, 16px));
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lxfp-footer.lxfp-has-glow::before {
	content: '';
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 120px;
	background: radial-gradient(ellipse at center, rgba(0, 198, 255, 0.15) 0%, rgba(5, 8, 22, 0) 70%);
	pointer-events: none;
	z-index: 0;
}

.lxfp-footer .lxfp-container {
	position: relative;
	max-width: var(--lxfp-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--lxfp-pad-left, 24px);
	padding-right: var(--lxfp-pad-right, 24px);
	width: 100%;
	z-index: 1;
}

/* ==========================================================================
   2. Top Bar Section
   ========================================================================== */

.lxfp-footer .lxfp-top-bar {
	background-color: var(--lxfp-surface, #0B1224);
	border-bottom: 1px solid var(--lxfp-border, #1E293B);
	padding: 12px 0;
	font-size: 13px;
}

.lxfp-footer .lxfp-top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lxfp-footer .lxfp-top-bar-content {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: center;
	flex-wrap: wrap;
	justify-content: center;
}

.lxfp-footer .lxfp-top-bar-text {
	color: var(--lxfp-text, #CBD5E1);
	font-weight: 500;
}

.lxfp-footer .lxfp-top-bar-link {
	color: var(--lxfp-primary, #00C6FF);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.lxfp-footer .lxfp-top-bar-link:hover {
	color: var(--lxfp-accent, #00E676);
	transform: translateX(2px);
}

.lxfp-footer .lxfp-icon-inline {
	font-size: 12px;
}

/* ==========================================================================
   3. CTA Section
   ========================================================================== */

.lxfp-footer .lxfp-cta-section {
	padding-top: var(--lxfp-pad-top, 60px);
	padding-bottom: 20px;
}

.lxfp-footer .lxfp-cta-card {
	background: linear-gradient(135deg, rgba(11, 18, 36, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
	border: 1px solid rgba(0, 198, 255, 0.22);
	border-radius: 18px;
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 35px -5px rgba(0, 198, 255, 0.12);
	position: relative;
	overflow: hidden;
}

.lxfp-footer .lxfp-cta-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.lxfp-footer .lxfp-cta-content {
	max-width: 620px;
}

.lxfp-footer .lxfp-cta-headline {
	font-size: 26px;
	font-weight: 700;
	color: var(--lxfp-heading, #F8FAFC);
	line-height: 1.3;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.lxfp-footer .lxfp-cta-description {
	font-size: 15px;
	color: var(--lxfp-muted, #94A3B8);
	line-height: 1.55;
}

.lxfp-footer .lxfp-cta-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.lxfp-footer .lxfp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}

.lxfp-footer .lxfp-btn-primary {
	background: linear-gradient(135deg, var(--lxfp-primary, #00C6FF) 0%, var(--lxfp-secondary, #0072FF) 100%);
	color: #050816;
	box-shadow: 0 4px 16px rgba(0, 198, 255, 0.3);
}

.lxfp-footer .lxfp-btn-primary:hover {
	background: linear-gradient(135deg, #00D5FF 0%, #1A82FF 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 198, 255, 0.45);
	color: #050816;
}

.lxfp-footer .lxfp-btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--lxfp-white, #F8FAFC);
	backdrop-filter: blur(8px);
}

.lxfp-footer .lxfp-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: var(--lxfp-primary, #00C6FF);
	color: var(--lxfp-primary, #00C6FF);
	transform: translateY(-2px);
}

.lxfp-footer .lxfp-btn-icon {
	font-size: 16px;
}

/* ==========================================================================
   5. Main Footer Columns Grid
   ========================================================================== */

.lxfp-footer .lxfp-main-section {
	padding-top: 40px;
	padding-bottom: var(--lxfp-pad-bottom, 40px);
}

.lxfp-footer .lxfp-main-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lxfp-col-gap, 36px);
}

.lxfp-footer .lxfp-col {
	flex: 0 0 calc(var(--lxfp-col-width, 25%) - (var(--lxfp-col-gap, 36px) * 0.75));
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lxfp-footer .lxfp-col-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.lxfp-footer .lxfp-col-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--lxfp-heading, #F8FAFC);
	letter-spacing: -0.01em;
	margin-bottom: 4px;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.05em;
}

.lxfp-footer .lxfp-accordion-trigger {
	display: none;
	background: transparent;
	border: none;
	color: var(--lxfp-muted, #94A3B8);
	cursor: pointer;
	padding: 4px;
}

.lxfp-footer .lxfp-col-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Single Column Centered Layout */
.lxfp-footer .lxfp-cols-1 {
	justify-content: center;
}

.lxfp-footer .lxfp-cols-1 .lxfp-col {
	flex: 0 0 100%;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
}

.lxfp-footer .lxfp-cols-1 .lxfp-col-header {
	justify-content: center;
	text-align: center;
	width: 100%;
}

.lxfp-footer .lxfp-cols-1 .lxfp-col-title {
	text-align: center;
}

.lxfp-footer .lxfp-cols-1 .lxfp-col-content {
	align-items: center;
	text-align: center;
	width: 100%;
}

.lxfp-footer .lxfp-cols-1 .lxfp-logo-link {
	display: inline-flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.lxfp-footer .lxfp-cols-1 .lxfp-bio-text {
	text-align: center;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.lxfp-footer .lxfp-cols-1 .lxfp-social-row {
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.lxfp-footer .lxfp-cols-1 .lxfp-contact-address {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lxfp-footer .lxfp-cols-1 .lxfp-contact-row {
	justify-content: center;
	text-align: center;
}

.lxfp-footer .lxfp-cols-1 .lxfp-links-list {
	align-items: center;
	text-align: center;
}

.lxfp-footer .lxfp-cols-1 .lxfp-custom-link {
	justify-content: center;
}

/* ==========================================================================
   6. Widgets
   ========================================================================== */

/* Logo Widget */
.lxfp-footer .lxfp-logo-link {
	display: inline-block;
	text-decoration: none;
}

.lxfp-footer .lxfp-logo-img {
	max-width: 100%;
	height: auto;
	display: block;
}

.lxfp-footer .lxfp-brand-text {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.lxfp-footer .lxfp-brand-primary {
	color: #FFFFFF;
}

.lxfp-footer .lxfp-brand-accent {
	color: var(--lxfp-accent, #00E676);
}

.lxfp-footer .lxfp-brand-cyan {
	color: var(--lxfp-primary, #00C6FF);
}

.lxfp-footer .lxfp-brand-badge {
	font-size: 10px;
	font-weight: 700;
	background: rgba(0, 198, 255, 0.15);
	color: var(--lxfp-primary, #00C6FF);
	border: 1px solid rgba(0, 198, 255, 0.3);
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 6px;
	letter-spacing: 0.05em;
}

/* Bio Text Widget */
.lxfp-footer .lxfp-bio-text {
	color: var(--lxfp-muted, #94A3B8);
	font-size: 14px;
	line-height: 1.6;
}

/* Custom Links & Nav Menu */
.lxfp-footer .lxfp-links-list,
.lxfp-footer .lxfp-nav-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lxfp-footer .lxfp-custom-link,
.lxfp-footer .lxfp-nav-link {
	color: var(--lxfp-link, #CBD5E1);
	text-decoration: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
	position: relative;
}

.lxfp-footer .lxfp-custom-link:hover,
.lxfp-footer .lxfp-nav-link:hover {
	color: var(--lxfp-link-hover, #00C6FF);
	transform: translateX(4px);
}

.lxfp-footer .lxfp-link-icon {
	font-size: 14px;
	color: var(--lxfp-primary, #00C6FF);
}

/* Contact Info Widget */
.lxfp-footer .lxfp-contact-address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lxfp-footer .lxfp-contact-biz {
	margin-bottom: 2px;
}

.lxfp-footer .lxfp-biz-name {
	font-weight: 700;
	color: var(--lxfp-heading, #F8FAFC);
	font-size: 15px;
}

.lxfp-footer .lxfp-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
}

.lxfp-footer .lxfp-contact-icon {
	color: var(--lxfp-primary, #00C6FF);
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.lxfp-footer .lxfp-contact-link {
	color: var(--lxfp-text, #CBD5E1);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lxfp-footer .lxfp-contact-link:hover {
	color: var(--lxfp-primary, #00C6FF);
}

.lxfp-footer .lxfp-contact-hours {
	color: var(--lxfp-muted, #94A3B8);
}

/* Social Icon Styles */
.lxfp-footer .lxfp-social-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.lxfp-footer .lxfp-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	color: var(--lxfp-text, #CBD5E1);
}

.lxfp-footer .lxfp-social-circle .lxfp-social-btn {
	background: var(--lxfp-surface, #0B1224);
	border: 1px solid var(--lxfp-border, #1E293B);
	border-radius: 50%;
}

.lxfp-footer .lxfp-social-circle .lxfp-social-btn:hover {
	background: var(--lxfp-primary, #00C6FF);
	color: #050816;
	border-color: var(--lxfp-primary, #00C6FF);
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 198, 255, 0.35);
}

.lxfp-footer .lxfp-social-glass .lxfp-social-btn {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.lxfp-footer .lxfp-social-glass .lxfp-social-btn:hover {
	border-color: var(--lxfp-primary, #00C6FF);
	color: var(--lxfp-primary, #00C6FF);
	transform: translateY(-3px);
}

.lxfp-footer .lxfp-social-icon {
	font-size: 16px;
}

/* Forms & Newsletter */
.lxfp-footer .lxfp-input-group {
	display: flex;
	gap: 8px;
	width: 100%;
}

.lxfp-footer .lxfp-form-input {
	flex: 1;
	background: rgba(11, 18, 36, 0.8);
	border: 1px solid var(--lxfp-border, #1E293B);
	color: #FFFFFF;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lxfp-footer .lxfp-form-input:focus {
	border-color: var(--lxfp-primary, #00C6FF);
	box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.15);
}

.lxfp-footer .lxfp-newsletter-privacy {
	font-size: 12px;
	color: var(--lxfp-dim, #64748B);
	margin-top: 6px;
}

/* Divider & Spacer */
.lxfp-footer .lxfp-hr {
	border: none;
	border-top: 1px solid var(--lxfp-border, #1E293B);
	margin: 12px 0;
}

.lxfp-footer .lxfp-widget-spacer {
	height: 24px;
}

/* ==========================================================================
   7. Bottom Bar Section
   ========================================================================== */

.lxfp-footer .lxfp-bottom-bar {
	border-top: 1px solid var(--lxfp-border, #1E293B);
	padding: 24px 0;
	font-size: 13.5px;
	color: var(--lxfp-muted, #94A3B8);
}

.lxfp-footer .lxfp-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.lxfp-footer .lxfp-copyright {
	color: var(--lxfp-dim, #64748B);
	font-size: 13px;
}

.lxfp-footer .lxfp-legal-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.lxfp-footer .lxfp-legal-link {
	color: var(--lxfp-muted, #94A3B8);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s ease;
}

.lxfp-footer .lxfp-legal-link:hover {
	color: var(--lxfp-primary, #00C6FF);
}

/* ==========================================================================
   8. Floating Back-to-Top Button
   ========================================================================== */

#lxfp-back-to-top {
	position: fixed;
	bottom: 30px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--lxfp-btt-bg, #00C6FF);
	color: var(--lxfp-btt-color, #050816);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
	z-index: 9999;
}

#lxfp-back-to-top.lxfp-pos-right {
	right: 30px;
}

#lxfp-back-to-top.lxfp-pos-left {
	left: 30px;
}

#lxfp-back-to-top.lxfp-is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#lxfp-back-to-top:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 198, 255, 0.4);
}

/* ==========================================================================
   9. Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.lxfp-footer *,
	#lxfp-back-to-top {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
