/* =========================
ULTRA PREMIUM WHY US SECTION
========================= */
.dr1056whyus2 {
	padding: 120px 6%;
	background: linear-gradient(180deg, #020617, #020617 50%, #0a0f1c);
	color: #fff;
	position: relative;
	overflow: hidden;
	font-family: system-ui, -apple-system, sans-serif;
}

/* =========================
SUBTLE GOLD GLOW (NO NEON)
========================= */
.dr1056whyus2::before {
	content: "";
	position: absolute;
	top: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.15),
		transparent 70%);
	filter: blur(100px);
}

.dr1056whyus2::after {
	content: "";
	position: absolute;
	bottom: -200px;
	right: -200px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12),
		transparent 70%);
	filter: blur(100px);
}

/* REMOVE OLD ORBS */
.dr1056whyus2 .whyus2-bg-orb {
	display: none;
}

/* =========================
CONTAINER
========================= */
.dr1056whyus2 .section-container {
	max-width: 1300px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* =========================
HEADER
========================= */
.dr1056whyus2 .whyus2-header {
	text-align: center;
	margin-bottom: 70px;
}

.dr1056whyus2 .whyus2-badge {
	display: inline-block;
	padding: 6px 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #d4af37;
	border: 1px solid rgba(212, 175, 55, 0.4);
	border-radius: 50px;
	background: rgba(212, 175, 55, 0.08);
	margin-bottom: 15px;
}

.dr1056whyus2 .whyus2-header h2 {
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(90deg, #ffffff, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
}

.dr1056whyus2 .whyus2-header p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.65);
	max-width: 720px;
	margin: auto;
	line-height: 1.7;
}

/* =========================
GRID
========================= */
.dr1056whyus2 .whyus2-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 35px;
}

/* =========================
CARD (GLASS PREMIUM)
========================= */
.dr1056whyus2 .whyus2-item {
	position: relative;
	padding: 35px 28px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	transition: all 0.45s ease;
	overflow: hidden;
}

/* subtle gold shine */
.dr1056whyus2 .whyus2-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.2),
		transparent);
	opacity: 0;
	transition: 0.5s;
}

/* hover */
.dr1056whyus2 .whyus2-item:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
	border-color: rgba(212, 175, 55, 0.4);
}

.dr1056whyus2 .whyus2-item:hover::before {
	opacity: 1;
}

/* =========================
ICON
========================= */
.dr1056whyus2 .whyus2-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
	background: rgba(212, 175, 55, 0.08);
	color: #d4af37;
	border: 1px solid rgba(212, 175, 55, 0.25);
	transition: all 0.4s ease;
}

/* icon hover */
.dr1056whyus2 .whyus2-item:hover .whyus2-icon {
	transform: scale(1.15) rotate(6deg);
	background: rgba(212, 175, 55, 0.15);
	box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

/* =========================
TEXT
========================= */
.dr1056whyus2 h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.dr1056whyus2 p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

/* =========================
RESPONSIVE
========================= */
@media ( max-width : 992px) {
	.dr1056whyus2 .whyus2-header h2 {
		font-size: 34px;
	}
}

@media ( max-width : 768px) {
	.dr1056whyus2 {
		padding: 80px 20px;
	}
	.dr1056whyus2 .whyus2-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}