/* ==========================================
   DR1059 SCHEMES
========================================== */
.dr1059schemes {
	position: relative;
	padding: 100px 20px;
	background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
	overflow: hidden;
}

/* animation state */
.dr1059schemes {
	opacity: 0;
	transform: translateY(70px);
	transition: 1s ease;
}

.dr1059schemes.dr1059schemes-active {
	opacity: 1;
	transform: none;
}

.dr1059schemes-container {
	max-width: 1280px;
	margin: auto;
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 60px;
	align-items: center;
}

.dr1059schemes-media {
	position: relative;
}

.dr1059schemes-media img {
	width: 100%;
	display: block;
	border-radius: 24px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
	transition: .4s ease;
}

.dr1059schemes-media:hover img {
	transform: translateY(-8px);
}

.dr1059schemes-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(212, 175, 55, .3);
	color: #b98b00;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}

.dr1059schemes-content h2 {
	font-size: 44px;
	line-height: 1.2;
	color: #071422;
	margin-bottom: 20px;
}

.dr1059schemes-content p {
	color: #64748b;
	line-height: 1.9;
	margin-bottom: 35px;
}

.dr1059schemes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 35px;
}

.dr1059schemes-card {
	background: #fff;
	padding: 24px;
	border-radius: 18px;
	border: 1px solid #e2e8f0;
	transition: .35s ease;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
}

.dr1059schemes-card:hover {
	transform: translateY(-8px);
	border-color: #d4af37;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.dr1059schemes-card span {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #071422;
	color: #fff;
	font-weight: 700;
	margin-bottom: 15px;
}

.dr1059schemes-card h3 {
	font-size: 18px;
	color: #071422;
	margin-bottom: 10px;
}

.dr1059schemes-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

.dr1059schemes-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border-radius: 12px;
	background: linear-gradient(135deg, #d4af37, #f5d56b);
	color: #071422;
	font-weight: 700;
	text-decoration: none;
	transition: .35s ease;
}

.dr1059schemes-btn:hover {
	transform: translateY(-3px);
}

/* Tablet */
@media ( max-width :1024px) {
	.dr1059schemes-container {
		grid-template-columns: 1fr;
	}
	.dr1059schemes-media {
		max-width: 700px;
		margin: auto;
	}
}

/* Mobile */
@media ( max-width :768px) {
	.dr1059schemes {
		padding: 70px 20px;
	}
	.dr1059schemes-content {
		text-align: center;
	}
	.dr1059schemes-content h2 {
		font-size: 30px;
	}
	.dr1059schemes-grid {
		grid-template-columns: 1fr;
	}
	.dr1059schemes-card {
		text-align: left;
	}
}