/* ================= HEADER ROOT ================= */
.dr1057header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1200;
	background: rgba(10, 15, 28, 0.7);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
	transition: 0.4s;
}

.dr1057header.scrolled {
	background: rgba(5, 8, 20, 0.95);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* ================= CONTAINER ================= */
.dr1057header .dr1057header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 30px;
	gap: 20px;
}

/* ================= LOGO ================= */
.dr1057header .logo {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	max-width: 75%;
}

/* 🔥 RECTANGLE LOGO FIX */
.dr1057header .logo img {
	height: 60px;
	width: auto;
	max-width: 150px;
	object-fit: contain;
	background: linear-gradient(145deg, #ffffff, #f5f9ff);
	padding: 6px 12px;
	border-radius: 10px;
	border: 1px solid rgba(0, 212, 255, 0.25);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
	transition: 0.3s;
}

.dr1057header .logo:hover img {
	transform: scale(1.05);
}

/* ================= LOGO TEXT ================= */
.dr1057header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	min-width: 0;
}

.dr1057header .logo-text span {
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 800;
	letter-spacing: 0.5px;
	background: linear-gradient(90deg, #00D4FF, #4facfe);
	-webkit-background-clip: text;
	color: transparent;
	white-space: nowrap;
}

.dr1057header .logo-text small {
	font-size: 13px;
	letter-spacing: 1.5px;
	color: #bbb;
	font-weight: 500;
}

/* ================= NAVIGATION ================= */
.dr1057header .main-navigation {
	display: flex;
	gap: 22px;
	flex: 1;
	justify-content: center;
}

.dr1057header .main-navigation a {
	color: #ddd;
	text-decoration: none;
	position: relative;
	font-size: 14px;
	font-weight: 500;
}

.dr1057header .main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #00D4FF, #4facfe);
	transition: 0.3s;
}

.dr1057header .main-navigation a:hover::after {
	width: 100%;
}

.dr1057header .main-navigation a:hover {
	color: #00D4FF;
}

/* ================= ACTION BUTTONS ================= */
.dr1057header .header-actions {
	display: flex;
	gap: 10px;
}

.dr1057header .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;
}

.dr1057header .whatsapp-btn {
	background: #25D366;
}

.dr1057header .call-btn {
	background: linear-gradient(90deg, #4facfe, #00D4FF);
	color: #000;
}

.dr1057header .action-btn:hover {
	transform: translateY(-3px);
}

/* ================= MENU BUTTON ================= */
.dr1057header .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

.dr1057header .menu-toggle span {
	display: block;
	height: 3px;
	background: #fff;
	margin: 5px 0;
	border-radius: 2px;
	transition: 0.3s;
}

.dr1057header .menu-toggle span:nth-child(1) {
	width: 26px;
}

.dr1057header .menu-toggle span:nth-child(2) {
	width: 18px;
}

.dr1057header .menu-toggle span:nth-child(3) {
	width: 12px;
}

.dr1057header .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
	width: 26px;
}

.dr1057header .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.dr1057header .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
	width: 26px;
}

/* ================= MOBILE ================= */
@media ( max-width : 900px) {
	.dr1057header .dr1057header-container {
		padding: 8px 12px;
		gap: 8px;
	}
	.dr1057header .menu-toggle {
		display: block;
	}

	/* 🔥 LOGO FIX (no crop) */
	.dr1057header .logo {
		max-width: 70%;
		gap: 6px;
	}
	.dr1057header .logo img {
		height: 38px;
		width: auto;
		max-width: 100px;
		padding: 4px 8px;
	}

	/* 🔥 TEXT FIX */
	.dr1057header .logo-text span {
		font-size: 16px;
		font-weight: 700;
		white-space: nowrap;
	}
	.dr1057header .logo-text small {
		font-size: 10px;
		letter-spacing: 1px;
	}

	/* NAV MOBILE */
	.dr1057header .main-navigation {
		position: fixed;
		top: 65px;
		left: 0;
		width: 100%;
		height: calc(100vh - 65px);
		flex-direction: column;
		align-items: center;
		background: rgba(5, 8, 20, 0.98);
		transform: translateY(-120%);
		transition: 0.4s;
	}
	.dr1057header .main-navigation.active {
		transform: translateY(0);
	}
	.dr1057header .main-navigation a {
		font-size: 20px;
		padding: 16px 0;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	/* HIDE TEXT IN BUTTONS */
	.dr1057header .action-btn span {
		display: none;
	}
}