/* =============================================================
   Mithila Custom Footer — footer.css  v1.2.0
   ============================================================= */

/* ── Reset ── */
.mcusa-footer *, .mcusa-footer *::before, .mcusa-footer *::after { box-sizing: border-box; }
.mcusa-footer ul { list-style: none; margin: 0; padding: 0; }
.mcusa-footer a  { text-decoration: none; }

/* ── Container ── */
.mcusa-footer__container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* =============================================================
   1. DECORATIVE PATTERN BORDER
   ============================================================= */
.mcusa-footer__pattern {
	background: #0e0e0e;
	height: 28px;
	/* Repeating diamond + line pattern in maroon */
	background-image:
		repeating-linear-gradient(
			90deg,
			transparent 0px,
			transparent 22px,
			#6b1a2e 22px,
			#6b1a2e 24px,
			transparent 24px,
			transparent 32px
		),
		radial-gradient(ellipse 6px 8px at 50% 50%, #6b1a2e 70%, transparent 70%);
	background-size: 40px 28px, 40px 28px;
	background-position: 0 0, 0 0;
}

/* =============================================================
   2. CTA BAND
   ============================================================= */
.mcusa-footer__cta-wrap {
	background: #0e0e0e;
	padding: 2.5rem 0 0;
}

.mcusa-footer__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	background: linear-gradient(135deg, #3b2a10 0%, #1a2e2e 60%, #0d1f2d 100%);
	border-radius: 16px;
	padding: 2.25rem 2.75rem;
}

.mcusa-footer__cta-text h3 {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 .5rem;
	line-height: 1.25;
}

.mcusa-footer__cta-text p {
	font-size: .95rem;
	color: rgba(255,255,255,.72);
	margin: 0;
	max-width: 52ch;
	line-height: 1.6;
}

.mcusa-footer__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .9rem 2.25rem;
	background: #f0d060;
	color: #1a1200;
	font-size: .95rem;
	font-weight: 700;
	border-radius: 10px;
	white-space: nowrap;
	transition: background .2s, transform .2s;
	flex-shrink: 0;
}
.mcusa-footer__cta-btn:hover { background: #f5da70; transform: translateY(-2px); color: #1a1200; }

/* =============================================================
   3. MAIN FOOTER
   ============================================================= */
.mcusa-footer__main {
	background: #0e0e0e;
	padding: 3.5rem 0 2.5rem;
}

.mcusa-footer__grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 4rem;
	align-items: start;
}

/* ── Brand col ── */
.mcusa-footer__brand-head {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-bottom: 1.25rem;
}

.mcusa-footer__logo-img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	flex-shrink: 0;
	border-radius: 50%;
	mix-blend-mode: lighten;
}

.mcusa-footer__brand-name {
	display: block;
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.mcusa-footer__brand-est {
	display: block;
	font-size: .72rem;
	color: rgba(255,255,255,.45);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-top: .15rem;
}

.mcusa-footer__brand-desc {
	font-size: .875rem;
	line-height: 1.75;
	color: rgba(255,255,255,.55);
	margin: 0 0 1.5rem;
}

/* Contact list */
.mcusa-footer__contact {
	display: flex;
	flex-direction: column;
	gap: .65rem;
	margin-bottom: 1.75rem;
}

.mcusa-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: .65rem;
	font-size: .84rem;
	color: rgba(255,255,255,.58);
	line-height: 1.5;
}

.mcusa-footer__contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--wdtPrimaryColor, #d88e7d);
	flex-shrink: 0;
	margin-top: .1rem;
}

.mcusa-footer__contact a {
	color: rgba(255,255,255,.58);
	transition: color .2s;
}
.mcusa-footer__contact a:hover { color: #fff; }

/* Social icons */
.mcusa-footer__social {
	display: flex;
	gap: .65rem;
}

.mcusa-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: rgba(255,255,255,.65);
	transition: background .2s, color .2s;
}
.mcusa-footer__social-link:hover {
	background: var(--wdtPrimaryColor, #d88e7d);
	color: #fff;
}

/* ── Nav columns ── */
.mcusa-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.mcusa-footer__nav-heading {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: .85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #fff;
	margin: 0 0 1.25rem;
}

.mcusa-footer__nav-list {
	display: flex;
	flex-direction: column;
}

.mcusa-footer__nav-list a {
	font-size: .875rem;
	color: rgba(255,255,255,.55);
	transition: color .2s;
	line-height: 1.4;
}
.mcusa-footer__nav-list a:hover { color: var(--wdtPrimaryColor, #d88e7d); }

/* =============================================================
   4. BOTTOM BAR
   ============================================================= */
.mcusa-footer__bottom {
	background: #0a0a0a;
	border-top: 1px solid rgba(255,255,255,.07);
	padding: 1.25rem 0;
}

.mcusa-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.mcusa-footer__copyright {
	font-size: .82rem;
	color: rgba(255,255,255,.4);
	margin: 0;
	text-align: center;
	width: 100%;
}

.mcusa-footer__legal {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.mcusa-footer__legal a {
	font-size: .82rem;
	color: rgba(255,255,255,.4);
	transition: color .2s;
}
.mcusa-footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ── Responsive ── */
@media (max-width: 960px) {
	.mcusa-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 700px) {
	.mcusa-footer__nav { grid-template-columns: repeat(2, 1fr); }
	.mcusa-footer__cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
	.mcusa-footer__nav { grid-template-columns: 1fr; }
	.mcusa-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
