/* ================= HEADER ROOT ================= */
.dr1059header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1200;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(7, 26, 46, 0.08);
}

/* ================= CONTAINER ================= */
.dr1059header .dr1059header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	gap: 16px;
}

/* ================= LOGO WRAPPER ================= */
.dr1059header .logo {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

/* ================= LOGO IMAGE (UPDATED - NO BACKGROUND) ================= */
.dr1059header .logo-badge {
	background: transparent; /* removed white box */
	padding: 0; /* removed spacing box */
	border-radius: 0; /* removed card shape */
	border: none; /* removed border */
	box-shadow: none; /* removed shadow */
	flex-shrink: 0;
}

.dr1059header .logo-badge img {
	height: 60px;
	display: block;
}

/* ================= LOGO TEXT ================= */
.dr1059header .logo-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: 0;
	max-width: 340px;
	gap: 6px;
	text-align: center;
}

/* ================= COMPANY NAME ================= */
.dr1059header .company-name {
	font-size: 20px;
	font-weight: 800;
	color: #071A2E;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	width: 100%;
}

/* ================= TAG (CHARTERED ACCOUNTANTS) ================= */
.dr1059header .tag {
	font-size: 11px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
	color: #0F2F55;
	background: linear-gradient(135deg, rgba(15, 47, 85, 0.08),
		rgba(212, 175, 55, 0.10));
	border: 1px solid rgba(212, 175, 55, 0.25);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	height: 24px;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ================= NAVIGATION ================= */
.dr1059header .main-navigation {
	display: flex;
	align-items: center;
	gap: 22px;
}

.dr1059header .main-navigation a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #071A2E;
	position: relative;
}

.dr1059header .main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #D4AF37, #F2D16B);
	transition: 0.3s ease;
}

.dr1059header .main-navigation a:hover::after {
	width: 100%;
}

/* ================= CTA ================= */
.dr1059header .header-actions {
	display: flex;
	align-items: center;
}

.dr1059header .primary-btn {
	background: linear-gradient(135deg, #071A2E, #0F2F55);
	color: #fff;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid rgba(212, 175, 55, 0.25);
}

/* ================= HAMBURGER ================= */
.dr1059header .menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	flex-shrink: 0;
}

.dr1059header .menu-toggle span {
	display: block;
	height: 2px;
	width: 22px;
	background: #071A2E;
	border-radius: 50px;
	transition: 0.3s ease;
}

.dr1059header .menu-toggle span:nth-child(2) {
	width: 18px;
}

.dr1059header .menu-toggle span:nth-child(3) {
	width: 14px;
}

.dr1059header .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.dr1059header .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.dr1059header .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
	width: 22px;
}

/* ================= MOBILE ================= */
@media ( max-width : 900px) {
	.dr1059header .dr1059header-container {
		padding: 10px 14px;
	}
	.dr1059header .menu-toggle {
		display: flex;
	}
	.dr1059header .header-actions {
		display: none;
	}
	.dr1059header .main-navigation {
		position: fixed;
		top: 78px;
		left: 0;
		width: 100%;
		flex-direction: column;
		padding: 20px;
		gap: 10px;
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(20px);
		transform: translateY(-120%);
		transition: 0.4s ease;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	}
	.dr1059header .main-navigation.active {
		transform: translateY(0);
	}
	.dr1059header .main-navigation a {
		padding: 14px 18px;
		border-radius: 12px;
		background: #f8fafc;
		font-size: 16px;
	}
	.dr1059header .logo-badge img {
		height: 60px;
	}
	.dr1059header .company-name {
		font-size: 16px;
	}
}