/* =========================
   HEADER ROOT (PREMIUM GLASS)
========================= */
.dr1056header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1200;
	background: rgba(10, 10, 10, 0.75);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.4s ease;
}

/* SCROLL EFFECT */
.dr1056header.scrolled {
	background: rgba(0, 0, 0, 0.95);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* =========================
   CONTAINER
========================= */
.dr1056header .dr1056header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	gap: 20px;
}

/* =========================
   LOGO
========================= */
.dr1056header .logo {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	max-width: 100%;
}

.dr1056header .logo img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	transition: 0.4s;
	filter: drop-shadow(0 6px 18px rgba(255, 215, 0, 0.25));
}

.dr1056header .logo:hover img {
	transform: scale(1.05) rotateY(8deg);
}

/* LOGO TEXT */
.dr1056header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
	min-width: 0;
}

.dr1056header .logo-text span {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #ffd700, #ffcc70);
	-webkit-background-clip: text;
	color: transparent;
	white-space: nowrap;
}

.dr1056header .logo-text small {
	font-size: 10px;
	letter-spacing: 1.5px;
	color: #aaa;
	white-space: nowrap;
	display: block;
}

/* =========================
   NAVIGATION DESKTOP
========================= */
.dr1056header .main-navigation {
	display: flex;
	gap: 20px;
	flex: 1;
	justify-content: center;
}

.dr1056header .main-navigation a {
	color: #eee;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	padding: 6px 0;
	white-space: nowrap;
}

/* GOLD UNDERLINE */
.dr1056header .main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0%;
	height: 2px;
	background: linear-gradient(90deg, #ffd700, #ffcc70);
	transition: 0.3s;
}

.dr1056header .main-navigation a:hover::after {
	width: 100%;
}

.dr1056header .main-navigation a:hover {
	color: #ffd700;
}

/* =========================
   ACTION BUTTONS
========================= */
.dr1056header .header-actions {
	display: flex;
	gap: 10px;
}

.dr1056header .action-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.dr1056header .whatsapp-btn {
	background: #25D366;
}

.dr1056header .call-btn {
	background: #ff7a18;
}

.dr1056header .action-btn:hover {
	transform: translateY(-3px);
}

/* =========================
   MENU BUTTON
========================= */
.dr1056header .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1300;
	flex-shrink: 0; /* 🔥 important fix */
}

.dr1056header .menu-toggle span {
	display: block;
	height: 3px;
	background: #fff;
	margin: 5px 0;
	border-radius: 2px;
	transition: 0.35s;
}

.dr1056header .menu-toggle span:nth-child(1) {
	width: 26px;
}

.dr1056header .menu-toggle span:nth-child(2) {
	width: 18px;
}

.dr1056header .menu-toggle span:nth-child(3) {
	width: 12px;
}

/* ACTIVE ICON */
.dr1056header .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
	width: 26px;
}

.dr1056header .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.dr1056header .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
	width: 26px;
}

/* =========================
   MOBILE VIEW
========================= */
@media ( max-width : 900px) {
	.dr1056header .menu-toggle {
		display: block;
	}

	/* CONTAINER tighter */
	.dr1056header .dr1056header-container {
		padding: 10px 14px;
		gap: 10px;
	}

	/* LOGO CONTROL */
	.dr1056header .logo {
		max-width: 65%;
	}

	/* IMAGE SMALL */
	.dr1056header .logo img {
		width: 44px;
		height: 44px;
	}

	/* 🔥 TITLE FIX */
	.dr1056header .logo-text span {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.5px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.dr1056header .logo-text small {
		font-size: 8px;
		letter-spacing: 1px;
	}

	/* HIDE BUTTON TEXT */
	.dr1056header .action-btn span {
		display: none;
	}

	/* MOBILE MENU */
	.dr1056header .main-navigation {
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		display: flex;
		flex-direction: column;
		align-items: center;
		background: rgba(0, 0, 0, 0.97);
		backdrop-filter: blur(16px);
		transform: translateY(-120%);
		transition: transform 0.45s ease;
		overflow-y: auto;
		padding-top: 20px;
		z-index: 1100;
	}
	.dr1056header .main-navigation.active {
		transform: translateY(0);
	}
	.dr1056header .main-navigation a {
		font-size: 20px;
		padding: 16px 0;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
}