/* ==================================================
HEADER
================================================== */
.dr1060header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: linear-gradient(135deg, #071327, #102452);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(14px);
	box-shadow: 0 5px 30px rgba(0, 0, 0, .25);
}

/* ==================================================
CONTAINER
================================================== */
.dr1060header-container {
	max-width: 1400px;
	margin: auto;
	min-height: 84px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ==================================================
LOGO
================================================== */
.dr1060header-logo {
	flex: 1;
	min-width: 0;
}

.dr1060header-logo a {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.dr1060header-logo-image img {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(0, 212, 255, .30);
	flex-shrink: 0;
}

.dr1060header-logo-content {
	min-width: 0;
	overflow: hidden;
}

.dr1060header-site-title {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
}

.dr1060header-site-tagline {
	margin-top: 4px;
	font-size: 13px;
	color: rgba(185, 199, 255, .85);
	white-space: normal;
}

/* ==================================================
NAVIGATION
================================================== */
.dr1060header-nav {
	display: flex;
	align-items: center;
}

.dr1060header-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.dr1060menu-item {
	position: relative;
}

.dr1060menu-item>a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: .3s;
}

.dr1060menu-item>a:hover {
	color: #00d4ff;
}

/* ==================================================
DROPDOWN BUTTON
================================================== */
.dr1060dropdown-toggle {
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	padding: 0;
}

.dr1060dropdown-toggle:hover {
	color: #00d4ff;
}

.dr1060dropdown-toggle i {
	font-size: 12px;
	transition: transform .3s ease;
}

/* ==================================================
DROPDOWN MENU (DESKTOP)
================================================== */
.dr1060dropdown-menu {
	position: absolute;
	top: 130%;
	left: 0;
	min-width: 280px;
	list-style: none;
	margin: 0;
	padding: 12px 0;
	background: rgba(10, 20, 45, .98);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 14px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .30);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .3s ease;
}

.dr1060dropdown-menu li a {
	display: block;
	padding: 12px 18px;
	color: #ffffff;
	text-decoration: none;
	transition: .3s;
}

.dr1060dropdown-menu li a:hover {
	background: rgba(0, 212, 255, .08);
	color: #00d4ff;
}

/* DESKTOP HOVER */
@media ( min-width :901px) {
	.dr1060has-dropdown:hover .dr1060dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

/* ==================================================
CTA BUTTON
================================================== */
.dr1060header-cta {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 12px;
	text-decoration: none;
	color: #ffffff !important;
	font-weight: 600;
	background: linear-gradient(135deg, #00d4ff, #005cff);
	box-shadow: 0 10px 25px rgba(0, 92, 255, .35);
	transition: .3s ease;
}

.dr1060header-cta:hover {
	transform: translateY(-2px);
}

/* ==================================================
MOBILE TOGGLE
================================================== */
.dr1060header-toggle {
	display: none;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
}

/* ==================================================
MOBILE
================================================== */
@media ( max-width :900px) {
	.dr1060main {
		padding-top: 76px;
	}
	.dr1060header-container {
		min-height: 76px;
		padding: 0 16px;
	}
	.dr1060header-toggle {
		display: block;
	}
	.dr1060header-logo-image img {
		width: 52px;
		height: 52px;
	}
	.dr1060header-site-title {
		font-size: 20px;
	}

	/* ✅ TAGLINE VISIBLE */
	.dr1060header-site-tagline {
		display: block;
		font-size: 11px;
		line-height: 1.3;
		opacity: 0.9;
	}

	/* MOBILE NAV */
	.dr1060header-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, #071327, #102452);
		padding: 24px;
		display: none;
		max-height: calc(100vh - 76px);
		overflow-y: auto;
	}
	.dr1060header-nav.active {
		display: block;
	}
	.dr1060header-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.dr1060menu-item {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, .05);
	}
	.dr1060menu-item>a {
		display: block;
		padding: 16px 0;
	}
	.dr1060dropdown-toggle {
		width: 100%;
		justify-content: space-between;
		padding: 16px 0;
	}

	/* 🔥 IMPORTANT: HEIGHT BASED DROPDOWN */
	.dr1060dropdown-menu {
		position: static;
		min-width: 100%;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: none;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		height: 0;
		overflow: hidden;
		transition: height .35s ease;
	}
	.dr1060has-dropdown.active .dr1060dropdown-toggle i {
		transform: rotate(180deg);
	}
	.dr1060dropdown-menu li a {
		padding: 12px 0 12px 18px;
		font-size: 14px;
	}
	.dr1060menu-cta {
		border-bottom: none;
		margin-top: 12px;
	}
	.dr1060header-cta {
		width: 100%;
		text-align: center;
	}
}

/* ==================================================
SMALL PHONES
================================================== */
@media ( max-width :600px) {
	.dr1060header-site-title {
		font-size: 18px;
	}

	/* ✅ DO NOT HIDE */
	.dr1060header-site-tagline {
		display: block;
		font-size: 10px;
		line-height: 1.2;
		opacity: 0.85;
		max-width: 180px;
	}
}