/* =========================
   HEADER BASE — PREMIUM SAFE
========================= */
.dr1051header {
	position: sticky;
	top: 0;
	z-index: 999;

	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f8fafc 100%
	);

	box-shadow:
		0 4px 18px rgba(0,0,0,0.08),
		inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* Inner layout */
.dr1051header .header-inner {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	gap: 12px;
	position: relative;
}

/* =========================
   LOGO — 3D FLOAT
========================= */
.dr1051header .logo img {
	height: 44px;
	width: auto;
	display: block;
	max-width: 100%;

	transition: transform .35s ease, filter .35s ease;

	filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
}

/* Hover lift */
.dr1051header .logo img:hover {
	transform: translateY(-3px) scale(1.04);
	filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
}

/* =========================
   DESKTOP NAV
========================= */
.dr1051header nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.dr1051header nav ul {
	list-style: none;
	display: flex;
	gap: 24px;
	align-items: center;
	margin: 0;
	padding: 0;
}

/* =========================
   NAV LINKS — PREMIUM
========================= */
.dr1051header nav a {
	text-decoration: none;
	color: #1f2933;
	font-weight: 600;
	font-size: 15px;
	position: relative;
	white-space: nowrap;
	padding: 6px 2px;
	transition: all .28s ease;
}

/* Underline glow */
.dr1051header nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0%;
	height: 3px;
	background: linear-gradient(
		90deg,
		#0E6F4F,
		#19c37d
	);
	border-radius: 4px;
	transition: width .3s ease;
	box-shadow: 0 0 8px rgba(25,195,125,.45);
}

/* Hover */
.dr1051header nav a:hover {
	color: #0E6F4F;
	transform: translateY(-1px);
}

.dr1051header nav a:hover::after {
	width: 100%;
}

/* Active */
.dr1051header nav a.active {
	color: #0E6F4F;
	font-weight: 700;
}

.dr1051header nav a.active::after {
	width: 100%;
}

/* =========================
   CTA BUTTONS — 3D PREMIUM
========================= */
.dr1051header .call-btn {
	background: #ffffff;
	color: #0E6F4F;
	padding: 10px 18px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	border: 2px solid #0E6F4F;
	white-space: nowrap;
	transition: all .3s ease;

	box-shadow:
		0 4px 10px rgba(0,0,0,0.08);
}

/* Hover lift */
.dr1051header .call-btn:hover {
	background: #0E6F4F;
	color: #ffffff;
	transform: translateY(-2px);

	box-shadow:
		0 10px 20px rgba(14,111,79,.28);
}

/* WhatsApp */
.dr1051header .whatsapp {
	background: linear-gradient(
		135deg,
		#25D366,
		#128C7E
	);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition: all .3s ease;

	box-shadow:
		0 6px 16px rgba(18,140,126,.35);
}

.dr1051header .whatsapp:hover {
	transform: translateY(-2px) scale(1.03);

	box-shadow:
		0 12px 26px rgba(18,140,126,.45);
}

/* =========================
   HAMBURGER
========================= */
.dr1051header .menu-toggle {
	display: none;
	font-size: 22px;
	cursor: pointer;
	color: #0E6F4F;
	user-select: none;
	transition: transform .3s ease;
}

.dr1051header .menu-toggle:hover {
	transform: scale(1.12);
}

/* Close hidden desktop */
.dr1051header .menu-close {
	display: none;
}

/* =========================
   MOBILE MENU
========================= */
@media ( max-width : 768px) {

	/* Panel */
	.dr1051header nav {
		position: fixed;
		top: 0;
		right: 0;
		width: min(82vw, 340px);
		height: 100dvh;
		background: linear-gradient(
			180deg,
			#ffffff 0%,
			#f9fafb 100%
		);
		box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
		transform: translateX(100%);
		transition: transform 0.35s ease;
		z-index: 1000;
		border-top-left-radius: 20px;
		border-bottom-left-radius: 20px;
		display: flex;
		flex-direction: column;
	}

	.dr1051header nav.active {
		transform: translateX(0);
	}

	/* Close button */
	.dr1051header .menu-close {
		display: flex;
		position: absolute;
		top: 16px;
		right: 18px;
		width: 38px;
		height: 38px;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background: #f1f5f9;
		color: #0E6F4F;
		font-size: 20px;
		cursor: pointer;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		z-index: 2;
	}

	/* Menu list */
	.dr1051header nav ul {
		flex: 1;
		flex-direction: column;
		align-items: stretch;
		padding: 76px 22px 32px;
		gap: 14px;
	}

	.dr1051header nav ul li {
		width: 100%;
	}

	/* Links */
	.dr1051header nav a {
		font-size: 17px;
		font-weight: 600;
		color: #111827;
		padding: 14px 16px;
		border-radius: 12px;
		display: block;
		background: #ffffff;
		box-shadow: 0 4px 10px rgba(0,0,0,.06);
	}

	.dr1051header nav a:hover {
		background: #0E6F4F;
		color: #ffffff;
		transform: translateX(6px);
	}

	.dr1051header nav a.active {
		background: #0E6F4F;
		color: #ffffff;
	}

	.dr1051header nav a.active::after {
		display: none;
	}

	/* Hamburger */
	.dr1051header .menu-toggle {
		display: block;
	}

	/* Buttons resize */
	.dr1051header .call-btn,
	.dr1051header .whatsapp {
		padding: 9px 14px;
		font-size: 14px;
	}
}

/* =========================
   BACKDROP
========================= */
body.menu-open::before {
	content: '';
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 998;
}