/* =========================
   HERO SECTION BASE
========================= */
.dr1051hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
		url('https://images.unsplash.com/photo-1560518883-ce09059eeffa')
		center/cover no-repeat;
}

/* =========================
   HERO INNER
========================= */
.dr1051hero .hero-inner {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
	color: #ffffff;
}

/* =========================
   HEADING
========================= */
.dr1051hero h1 {
	font-size: 46px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 12px;
}

/* =========================
   BRAND HIGHLIGHT
========================= */
.dr1051hero .brand-highlight {
	background: linear-gradient(135deg, #f5d77a, #c9a24d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-weight: 800;
}

/* =========================
   DESCRIPTION
========================= */
.dr1051hero p {
	max-width: 520px;
	margin: 18px 0 24px;
	font-size: 16px;
	line-height: 1.6;
	color: #e5e7eb;
}

/* =========================
   ACTION BUTTONS
========================= */
.dr1051hero .actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* Buttons base */
.dr1051hero .actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 26px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	transition: .25s;
}

/* Primary */
.btn-primary {
	background: #c9a24d;
	color: #000000;
}

.btn-primary:hover {
	background: #b8933f;
	transform: translateY(-2px);
}

/* Outline */
.btn-outline {
	border: 2px solid #ffffff;
	color: #ffffff;
}

.btn-outline:hover {
	background: #ffffff;
	color: #000000;
	transform: translateY(-2px);
}

/* =========================
   STATS
========================= */
.dr1051hero .stats {
	display: flex;
	gap: 30px;
	margin-top: 36px;
	flex-wrap: wrap;
}

/* Stat card */
.dr1051hero .stat {
	background: rgba(255, 255, 255, .15);
	backdrop-filter: blur(6px);
	padding: 14px 22px;
	border-radius: 14px;
	min-width: 140px;
	text-align: center;
}

/* Numbers */
.dr1051hero .stat h3 {
	font-size: 26px;
	font-weight: 700;
	color: #c9a24d;
	margin-bottom: 4px;
}

/* Label */
.dr1051hero .stat span {
	font-size: 14px;
	color: #f1f5f9;
}

/* =========================
   TABLET & MOBILE
========================= */
@media ( max-width :768px) {
	.dr1051hero {
		min-height: auto;
		padding: 70px 0 55px;
		text-align: center;
	}
	.dr1051hero .hero-inner {
		padding: 0 18px;
	}
	.dr1051hero h1 {
		font-size: 30px;
		line-height: 1.25;
	}
	.dr1051hero p {
		max-width: 100%;
		font-size: 15px;
		margin: 14px auto 22px;
	}

	/* ===== BUTTON FIX ===== */
	.dr1051hero .actions {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.dr1051hero .actions a {
		width: 100%;
		max-width: 260px;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* ===== STATS ===== */
	.dr1051hero .stats {
		justify-content: center;
		gap: 14px;
		margin-top: 28px;
	}
	.dr1051hero .stat {
		width: 48%;
		padding: 12px 14px;
	}
	.dr1051hero .stat h3 {
		font-size: 22px;
	}
	.dr1051hero .stat span {
		font-size: 13px;
	}
}

/* =========================
   SMALL MOBILE
========================= */
@media ( max-width :480px) {
	.dr1051hero h1 {
		font-size: 26px;
	}
	.dr1051hero .stat {
		width: 100%;
	}
}