/* ══════════════════════════════════════
   NCO Footer
   ══════════════════════════════════════ */

/* ── Main footer area ── */
.nco-site-footer{
	background:#0a1628;
	color:rgba(255,255,255,.8);
	font-size:14px;
	line-height:1.7;
}

.nco-footer-main{
	padding:60px 0 40px;
}

.nco-footer-inner{
	max-width:1600px;
	margin:0 auto;
	padding:0 24px;
	display:grid;
	grid-template-columns:1.4fr 1fr 1fr 1fr;
	gap:40px;
}

/* ── Column base ── */
.nco-footer-col{
	min-width:0;
}

/* ── Headings ── */
.nco-footer-heading{
	color:#fff;
	font-size:15px;
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:.8px;
	margin:0 0 20px;
	position:relative;
	padding-bottom:12px;
}

.nco-footer-heading::after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:36px;
	height:3px;
	border-radius:3px;
	background:linear-gradient(135deg,#0070ba,#00a8e8);
}

/* ── Lists ── */
.nco-footer-list{
	list-style:none;
	padding:0;
	margin:0;
}

.nco-footer-list li{
	margin-bottom:10px;
}

.nco-footer-list a{
	color:rgba(255,255,255,.7);
	text-decoration:none;
	transition:color .15s ease, padding-left .15s ease;
	font-size:13px;
}

.nco-footer-list a:hover{
	color:#fff;
	padding-left:4px;
}

/* ── Branding column ── */
.nco-footer-brand{
	padding-right:20px;
}

.nco-footer-logo{
	display:flex;
	align-items:center;
	gap:12px;
	margin-bottom:12px;
}

.nco-footer-logo img{
	height:44px;
	width:auto;
	filter:brightness(0) invert(1);
}

.nco-footer-logo-icon{
	font-size:28px;
	color:#00a8e8;
}

.nco-footer-logo-name{
	font-size:20px;
	font-weight:800;
	color:#fff;
	letter-spacing:.5px;
}

.nco-footer-tagline{
	color:rgba(255,255,255,.5);
	font-size:14px;
	font-style:italic;
	margin:0 0 24px;
}

/* Icons row (Air-conditioners, Equipment, etc.) */
.nco-footer-icons-row{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
}

.nco-footer-icon-item{
	display:flex;
	align-items:center;
	gap:6px;
	background:rgba(255,255,255,.06);
	border:1px solid rgba(255,255,255,.08);
	border-radius:10px;
	padding:8px 14px;
	font-size:12px;
	font-weight:600;
	color:rgba(255,255,255,.75);
	transition:background .15s ease, border-color .15s ease;
}

.nco-footer-icon-item:hover{
	background:rgba(255,255,255,.10);
	border-color:rgba(255,255,255,.15);
}

.nco-footer-icon-item i{
	font-size:16px;
	color:#00a8e8;
}

/* ── Contact info ── */
.nco-footer-contact li{
	display:flex;
	align-items:flex-start;
	gap:12px;
	margin-bottom:14px;
}

.nco-footer-contact li i{
	color:#00a8e8;
	font-size:14px;
	margin-top:4px;
	width:16px;
	text-align:center;
	flex-shrink:0;
}

.nco-footer-contact a{
	color:#00a8e8;
}

.nco-footer-contact a:hover{
	color:#fff;
	padding-left:0;
}

/* ── Categories list — 2 columns ── */
.nco-footer-categories{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:0 16px;
}

/* ── Bottom bar ── */
.nco-footer-bottom{
	border-top:1px solid rgba(255,255,255,.08);
	padding:18px 0;
}

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

.nco-footer-copyright{
	margin:0;
	font-size:13px;
	color:rgba(255,255,255,.45);
}



.nco-footer-social{
	display:flex;
	gap:12px;
}

.nco-footer-social a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:36px;
	height:36px;
	border-radius:50%;
	background:rgba(255,255,255,.08);
	border:1px solid rgba(255,255,255,.10);
	color:rgba(255,255,255,.7);
	font-size:15px;
	text-decoration:none;
	transition:all .2s ease;
}

.nco-footer-social a:hover{
	background:#0077b5;
	border-color:#0077b5;
	color:#fff;
	transform:translateY(-2px);
	box-shadow:0 4px 14px rgba(0,119,181,.35);
}

/* ══════════════════════════════════════
   Action Buttons (Email + WA) — in footer
   ══════════════════════════════════════ */
.nco-fab-group{
	display:flex;
	flex-direction:row;
	gap:10px;
}

.nco-fab{
	display:flex;
	align-items:center;
	justify-content:center;
	width:36px;
	height:36px;
	border-radius:50%;
	color:#fff;
	font-size:15px;
	text-decoration:none;
	transition:all .2s ease;
}

.nco-fab:hover{
	transform:translateY(-2px);
	box-shadow:0 6px 18px rgba(0,0,0,.25);
	color:#fff;
}

.nco-fab-email{
	background:linear-gradient(135deg,#0070ba,#005a96);
	border:1px solid rgba(0,112,186,.3);
}

.nco-fab-whatsapp{
	background:#25d366;
	border:1px solid rgba(37,211,102,.3);
}

.nco-fab-whatsapp:hover{
	background:#1ebe5d;
}

/* ══════════════════════════════════════
   Responsive
   ══════════════════════════════════════ */
@media (max-width: 1024px){
	.nco-footer-inner{
		grid-template-columns:1fr 1fr;
		gap:36px 30px;
	}
	
}

@media (max-width: 600px){
	.nco-footer-main{
		padding:40px 0 28px;
	}
	.nco-footer-inner{
		grid-template-columns:1fr;
		gap:30px;
	}
	.nco-footer-brand{
		grid-column:auto;
	}
	.nco-footer-icons-row{
		gap:8px;
	}
	.nco-footer-icon-item{
		padding:6px 10px;
		font-size:11px;
	}
	.nco-footer-icon-item i{
		font-size:14px;
	}
	.nco-footer-categories{
		grid-template-columns:1fr 1fr;
	}
	.nco-footer-bottom .nco-footer-inner{
		flex-direction:column;
		text-align:center;
		gap:12px;
	}
	
}

/* ══════════════════════════════════════
   Mobile: FAB group aside + sticky
   ══════════════════════════════════════ */
@media (max-width: 1092px){
	.nco-fab-group{
		position:sticky;
		bottom:16px;
		align-self:flex-end;
		flex-direction:column;
		gap:10px;
		z-index:90;
	}
}
