/* ================= ROOT ================= */
.dr1059footer {
	position: relative;
	background: #06182C;
	color: #fff;
	padding: 90px 20px 25px;
	margin: 0;
	display: block;
	font-family: "Segoe UI", sans-serif;
}

/* ================= BACKGROUND IMAGE ================= */
.footer-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.14;
	z-index: 0;
	pointer-events: none;
}

/* optional dark overlay effect */
.footer-bg-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(6, 24, 44, 0.65);
}

/* ================= GRID CONTAINER ================= */
.footer-container {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
	gap: 28px;

	align-items: start;
}

/* ================= BRAND SECTION ================= */
.footer-brand .logo-box {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: nowrap;
}

.footer-logo {
	width: 85px;
	height: 85px;
	object-fit: contain;

	background: rgba(255,255,255,0.95);
	border-radius: 10px;
	padding: 6px;
	flex-shrink: 0;
}

.brand-text h2 {
	font-size: 20px;
	color: #D4AF37;
	margin: 0;
}

.brand-text p {
	font-size: 13px;
	color: #cbd5e1;
	margin-top: 5px;
	line-height: 1.5;
}

/* ================= SOCIAL ICONS ================= */
.social {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	flex-wrap: wrap;
}

.social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(255,255,255,0.07);
	border-radius: 10px;

	text-decoration: none;
	color: #fff;

	transition: 0.25s ease;
}

.social a:hover {
	background: #D4AF37;
	color: #06182C;
	transform: translateY(-3px);
}

/* ================= COLUMN HEADINGS ================= */
.footer-col h3 {
	color: #D4AF37;
	font-size: 12px;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ================= LINKS ================= */
.footer-col a {
	display: block;
	color: #cbd5e1;
	margin-bottom: 8px;
	text-decoration: none;
	transition: 0.2s ease;
}

.footer-col a:hover {
	color: #D4AF37;
	transform: translateX(5px);
}

/* ================= TEXT ================= */
.footer-col p {
	font-size: 13px;
	color: #cbd5e1;
	margin: 0;
	line-height: 1.6;
}

/* ================= QR FIX (IMPORTANT) ================= */
.qr-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	gap: 10px;
}

/* QR IMAGE */
.qr-box img {
	width: 110px;
	height: 110px;
	object-fit: contain;

	background: #fff;
	padding: 8px;
	border-radius: 12px;

	box-shadow:
		0 10px 25px rgba(0,0,0,0.35),
		0 2px 8px rgba(212,175,55,0.15);
}

/* QR TEXT */
.qr-box p {
	font-size: 12px;
	color: #94a3b8;
	margin: 0;
}

/* ================= MAP LINK ================= */
.map-link {
	color: #38bdf8;
	font-size: 12px;
	transition: 0.3s ease;
}

.map-link:hover {
	color: #D4AF37;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
	margin-top: 40px;
	padding-top: 18px;

	border-top: 1px solid rgba(255,255,255,0.08);

	text-align: center;
	font-size: 12px;
	color: #94a3b8;
}

.footer-bottom a {
	color: #D4AF37;
	text-decoration: none;
	font-weight: 600;
}

.footer-bottom a:hover {
	color: #fff;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 25px;
	}
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.footer-brand .logo-box {
		flex-direction: row;
		align-items: center;
	}

	.footer-logo {
		width: 70px;
		height: 70px;
	}
}