/**
 * Kedaranchal — custom footer
 */

.site-footer {
	background: linear-gradient(180deg, #141414 0%, #1e1e1e 55%, #252525 100%) !important;
	color: #b8b8b8 !important;
	padding: 0 !important;}

.site-footer .woostify-container {
	max-width: var(--kr-container, 1200px);
	padding: 0 20px;
}

.kr-footer {
	padding: 52px 0 0;
}

/* ── Main grid ── */
.kr-footer__main {
	display: grid;
	grid-template-columns: 1.1fr 2fr;
	gap: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kr-footer__brand {
	max-width: 320px;
}

.kr-footer__logo {
	display: inline-block;
	margin-bottom: 16px;
}

.kr-footer__logo img {
	height: 52px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.95;
	transition: opacity 0.2s;
}

.kr-footer__logo:hover img {
	opacity: 1;
}

.kr-footer__tagline {
	font-size: 0.875rem;
	line-height: 1.65;
	color: #9ca3af!important;
	margin: 0 0 18px;
}

.kr-footer__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-bottom: 20px;
}

.kr-footer__trust span {
	font-size: 0.75rem;
	font-weight: 600;
	color: #d1d5db;
	background: rgba(255, 255, 255, 0.05);
	padding: 5px 10px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.kr-footer__social {
	display: flex;
	gap: 10px;
}

.kr-footer__social-link {
	width: 40px;
	height: 40px;
	border-radius: var(--kr-btn-radius, 6px);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #e5e7eb;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.kr-footer__social-link svg{
	color:#fff!important;
}
.kr-footer__social-link:hover {
	background: var(--kr-saffron, #ff7722);
	border-color: var(--kr-saffron, #ff7722);
	color: #fff;
	transform: translateY(-2px);
}

/* ── Link columns ── */
.kr-footer__links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.kr-footer__col-title {
	font-family: var(--kr-font);
	font-size: 18px;
	font-weight: 700;
	color: #fff!important;
	margin: 0 0 16px;
	padding-bottom: 10px;
	display: inline-block;
	min-width: 80px;
}

.kr-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kr-footer__menu li {
	margin-bottom: 10px;
}

.kr-footer__menu a {
	color: #b8b8b8;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s, padding-left 0.2s;
	display: inline-block;
}

.kr-footer__menu a:hover {
	color: var(--kr-saffron, #ff7722);
	padding-left: 4px;
}

/* Contact column */
.kr-footer__contact-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.kr-footer__contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 0.875rem;
	color: #b8b8b8;
	line-height: 1.5;
}

.kr-footer__contact-list svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--kr-saffron, #ff7722);
}

.kr-footer__contact-list a {
	color: #b8b8b8;
	text-decoration: none;
	transition: color 0.2s;
}

.kr-footer__contact-list a:hover {
	color: var(--kr-saffron, #ff7722);
}

.kr-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--kr-saffron, #ff7722), var(--kr-saffron-dark, #e8651a));
	color: #fff !important;
	font-size: 0.8125rem;
	font-weight: 700;
	border-radius: var(--kr-btn-radius, 6px);
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(255, 119, 34, 0.35);
	transition: transform 0.15s, box-shadow 0.2s;
}

.kr-footer__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 119, 34, 0.45);
	color: #fff !important;
}

/* ── Bottom bar ── */
.kr-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 20px;
	padding: 22px 0 28px;
}

.kr-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: #6b7280;
}

.kr-footer__copy a {
	color: #d1d5db;
	text-decoration: none;
	font-weight: 600;
}

.kr-footer__copy a:hover {
	color: var(--kr-saffron, #ff7722);
}

.kr-footer__bottom-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.kr-footer__bottom-nav a {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.2s;
}

.kr-footer__bottom-nav a:hover {
	color: var(--kr-saffron, #ff7722);
}

/* Hide default footer widgets if any remain */
.site-footer .site-footer-widget {
	display: none !important;
}

.site-footer .site-info {
	display: none !important;
}

@media (max-width: 991px) {
	.kr-footer__main {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.kr-footer__brand {
		max-width: none;
		text-align: center;
	}

	.kr-footer__logo,
	.kr-footer__social {
		justify-content: center;
	}

	.kr-footer__trust {
		justify-content: center;
	}

	.kr-footer__links {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 20px;
	}
}

@media (max-width: 520px) {
	.kr-footer {
		padding-top: 40px;
	}

	.kr-footer__links {
		grid-template-columns: 1fr;
	}

	.kr-footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.kr-footer__bottom-nav {
		justify-content: center;
	}

}
