/* =========================
   SECTION BACKGROUND (LUXURY)
========================= */
.dr1056termsandconditions {
	padding: 130px 6%;
	background: radial-gradient(circle at top, #020617, #020617 40%, #0b1220 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

/* GOLD AMBIENT GLOW */
.dr1056termsandconditions::before {
	content: "";
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.08),
		transparent 70%);
	pointer-events: none;
}

/* =========================
   CONTAINER
========================= */
.dr1056termsandconditions .terms-container {
	max-width: 1350px;
	margin: auto;
}

/* =========================
   HEADER
========================= */
.dr1056termsandconditions .terms-header {
	text-align: center;
	margin-bottom: 90px;
}

.dr1056termsandconditions .terms-header h1 {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #ffffff, #ffd700, #d4af37);
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.dr1056termsandconditions .terms-header p {
	margin-top: 15px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	opacity: .85;
	font-size: 15px;
}

/* =========================
   GRID
========================= */
.dr1056termsandconditions .terms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
}

/* =========================
   CARD (GLASS + GOLD EDGE)
========================= */
.dr1056termsandconditions .terms-card {
	position: relative;
	padding: 38px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.45s ease;
	overflow: hidden;
}

/* GOLD BORDER SHINE */
.dr1056termsandconditions .terms-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.4),
		transparent);
	-webkit-mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: 0.4s;
}

/* LIGHT SWEEP */
.dr1056termsandconditions .terms-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12),
		transparent);
	transform: skewX(-25deg);
	transition: 0.6s;
}

/* HOVER */
.dr1056termsandconditions .terms-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.dr1056termsandconditions .terms-card:hover::before {
	opacity: 1;
}

.dr1056termsandconditions .terms-card:hover::after {
	left: 150%;
}

/* =========================
   TEXT STYLING
========================= */
.dr1056termsandconditions .terms-card h2 {
	font-size: 22px;
	margin-bottom: 14px;
	font-weight: 600;
	background: linear-gradient(90deg, #ffd700, #ffcc70);
	-webkit-background-clip: text;
	color: transparent;
}

.dr1056termsandconditions .terms-card p {
	opacity: .85;
	line-height: 1.8;
	font-size: 14.5px;
}

/* =========================
   CONTACT BOX (PREMIUM BLOCK)
========================= */
.dr1056termsandconditions .terms-contact {
	margin-top: 16px;
	padding: 20px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 215, 0, 0.15);
	box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.dr1056termsandconditions .terms-contact p {
	margin-bottom: 8px;
}

/* =========================
   FOOTER
========================= */
.dr1056termsandconditions .terms-footer {
	text-align: center;
	margin-top: 80px;
	font-size: 13px;
	color: #aaa;
	letter-spacing: 1px;
}

/* =========================
   MOBILE
========================= */
@media ( max-width : 768px) {
	.dr1056termsandconditions {
		padding: 100px 20px;
	}
	.dr1056termsandconditions .terms-header h1 {
		font-size: 32px;
	}
	.dr1056termsandconditions .terms-card {
		padding: 26px;
	}
	.dr1056termsandconditions .terms-header {
		margin-bottom: 50px;
	}
}