/* ═══════════════════════════════════════════════
   SMARTUPWORLD — footer.css
   Bootstrap handles grid, spacing, flex utils.
   This file: colours, typography, component styles.
   sw-icon classes live in sw-icon.css — not here.
═══════════════════════════════════════════════ */

/* ── Shared footer variables ── */
:root {
	--suf-bg:          #111827;
	--suf-bg-deeper:   #0d1520;
	--suf-bg-card:     #1f2937;
	--suf-border:      #1f2937;
	--suf-border-mid:  #374151;
	--suf-text:        #d1d5db;
	--suf-text-muted:  #9ca3af;
	--suf-text-dim:    #6b7280;
	--suf-accent:      #3b82f6;
	--suf-accent-hover:#60a5fa;
	--suf-title-size:  11px;
}

/* ── Base ── */
.site-footer {
	background: var(--suf-bg);
	color: var(--suf-text);
	font-size: 14px;
	line-height: 1.6;
	clear: both;
}

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.suf-cta-band {
	background: #162033;
	border-top: 2px solid #1e3a5f;
	border-bottom: 1px solid #1e3a5f;
	padding: 42px 0;
}

.suf-cta-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.suf-cta-desc {
	color: var(--suf-text-muted);
	font-size: 14px;
	margin-bottom: 22px;
}

.suf-btn-primary {
	display: inline-block;
	background: var(--suf-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none;
	transition: background .15s;
}
.suf-btn-primary:hover {
	background: #1d4ed8;
	color: #fff;
}

.suf-btn-outline {
	display: inline-block;
	background: transparent;
	color: var(--suf-text);
	font-size: 14px;
	font-weight: 500;
	padding: 10px 24px;
	border-radius: 6px;
	border: 1px solid var(--suf-border-mid);
	text-decoration: none;
	transition: border-color .15s, color .15s;
}
.suf-btn-outline:hover {
	border-color: var(--suf-accent-hover);
	color: var(--suf-accent-hover);
}

/* ══════════════════════════════
   MAIN FOOTER AREA
══════════════════════════════ */
.suf-main {
	padding: 56px 0 40px;
}

/* Brand col */
.suf-logo {
    height: auto;
    display: block;
    width: 100%;
    max-width: 330px;
    margin: 30px 0 30px;
}

.suf-tagline {
	color: #e5e7eb;
	font-size: 13px;
	margin-bottom: 6px;
}

.suf-desc {
	color: var(--suf-text-muted);
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Contact list */
.suf-contact-list li {
	color: var(--suf-text);
	font-size: 13px;
	padding: 5px 0;
}
.suf-contact-list a {
	color: var(--suf-text);
	text-decoration: none;
}
.suf-contact-list a:hover {
	color: var(--suf-accent-hover);
}

/* Google review */
.suf-google-review {
	background: var(--suf-bg-card);
	border: 1px solid var(--suf-border-mid);
	border-radius: 6px;
	padding: 8px 14px;
	text-decoration: none;
}
.suf-stars {
	color: #fbbf24;
	font-size: 13px;
	letter-spacing: 1px;
}
.suf-google-review span:last-child {
	font-size: 12px;
	color: var(--suf-text-muted);
}

/* Trust badges */
.suf-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--suf-bg-card);
	border: 1px solid var(--suf-border-mid);
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 11px;
	color: var(--suf-text-muted);
}
.suf-badge--star { color: #fbbf24; }
.suf-badge--blue { color: var(--suf-accent-hover); }

/* Norton image */
.suf-norton img {
	max-width: 180px;
	height: auto;
	opacity: .85;
	transition: opacity .15s;
}
.suf-norton:hover img { opacity: 1; }

/* ── Column headings ── */
.suf-col-title {
	font-size: var(--suf-title-size);
	font-weight: 700;
	color: var(--suf-text-dim);
	text-transform: uppercase;
	letter-spacing: .09em;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--suf-border);
}

/* ── Nav link lists ── */
.suf-nav-links li {
	margin-bottom: 9px;
}
.suf-nav-links a {
	color: var(--suf-text-muted);
	font-size: 13px;
	text-decoration: none;
	transition: color .15s;
}
.suf-nav-links a:hover {
	color: var(--suf-accent-hover);
}

/* Widget lists inside footer sidebar inherit nav styles */
.suf-main .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.suf-main .widget ul li {
	margin-bottom: 9px;
	padding: 0;
	line-height: 1.4;
}
.suf-main .widget ul li a {
	color: var(--suf-text-muted);
	font-size: 13px;
	text-decoration: none;
	transition: color .15s;
}
.suf-main .widget ul li a:hover {
	color: var(--suf-accent-hover);
}
.suf-main .widget_text p,
.suf-main .widget p {
	color: var(--suf-text-muted);
	font-size: 13px;
}
.suf-main h4.widget-title,
.suf-main .widget-title {
	font-size: var(--suf-title-size);
	font-weight: 700;
	color: var(--suf-text-dim);
	text-transform: uppercase;
	letter-spacing: .09em;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--suf-border);
}

/* ── Platform tags ── */
.suf-platform-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 4px;
	text-decoration: none;
	transition: opacity .15s;
}
.suf-platform-tag:hover { opacity: .85; }
.suf-platform-tag--fiverr     { background: #1dbf73; color: #fff; }
.suf-platform-tag--freelancer { background: #29b2fe; color: #fff; }

/* ══════════════════════════════
   BOTTOM BAR
══════════════════════════════ */
.suf-bottom {
	background: var(--suf-bg-deeper);
	border-top: 1px solid var(--suf-border);
	padding: 18px 0;
}

.suf-copyright {
	font-size: 12px;
	color: var(--suf-text-dim);
}
.suf-logo-font {
	font-weight: 700;
	letter-spacing: .06em;
	color: #9ca3af;
}

.suf-legal-link {
	font-size: 12px;
	color: var(--suf-text-dim);
	text-decoration: none;
	transition: color .15s;
}
.suf-legal-link:hover { color: var(--suf-text-muted); }

.suf-soc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: var(--suf-bg-card);
	border: 1px solid var(--suf-border-mid);
	transition: border-color .15s;
	text-decoration: none;
}
.suf-soc-btn:hover { border-color: var(--suf-accent-hover); }
.suf-soc-btn img { display: block; }

/* ══════════════════════════════
   RESPONSIVE OVERRIDES
   Bootstrap handles col stacking.
   These fill gaps Bootstrap can't.
══════════════════════════════ */

/* Large tablets — 3 cols become 1 wide + 2 side by side */
@media (max-width: 991px) {
	.suf-main { padding: 40px 0 28px; }
	.suf-cta-band { padding: 32px 0; }
	/* Col 1 goes full width, cols 2+3 split 50/50 */
	.suf-main .col-lg-4 { margin-bottom: 8px; }
}

/* Tablet portrait — cols 2 and 3 each take half width */
@media (max-width: 767px) {
	.suf-cta-title { font-size: 18px; }
	.suf-main { padding: 32px 0 20px; }

	/* Bottom bar stacks vertically and centres */
	.suf-bottom { text-align: center; }
	.suf-copyright { margin-bottom: 6px; }
	.suf-bottom .col-md-4 { margin-bottom: 8px; }
	.suf-bottom .col-md-4:last-child { margin-bottom: 0; }

	/* Legal links wrap neatly */
	.suf-legal-links { justify-content: center; }

	/* Contact list stays left-aligned on its text */
	.suf-contact-list li { font-size: 13px; }
}

/* Mobile — everything single column */
@media (max-width: 575px) {
	.suf-cta-title { font-size: 17px; }
	.suf-cta-desc { font-size: 13px; }

	/* Buttons stack full width */
	.suf-btn-primary,
	.suf-btn-outline {
		width: 100%;
		text-align: center;
		display: block;
	}
	.suf-cta-band .d-flex { flex-direction: column; align-items: stretch; }

	/* Cols 2 and 3 stack full width */
	.suf-main .col-md-6 { width: 100%; }


	/* Platform buttons stack */
	.suf-platform-tag { width: 100%; justify-content: center; }

	/* Social buttons row stays centred */
	.suf-soc-btn { width: 38px; height: 38px; }
}