/* ================================
   ABOUT SECTION BASE
================================ */
.dr1059about {
	position: relative;
	padding: 120px 20px;
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
	background: radial-gradient(circle at top left, rgba(201, 161, 74, 0.12),
		transparent 40%),
		radial-gradient(circle at bottom right, rgba(30, 58, 138, 0.12),
		transparent 40%),
		linear-gradient(135deg, #020617 0%, #0B1C2C 50%, #020617 100%);
	opacity: 0;
	transform: translateY(40px);
	transition: all 1s ease;
}

.dr1059about.show {
	opacity: 1;
	transform: translateY(0);
}

/* ================================
   CONTAINER
================================ */
.dr1059about .about-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

/* ================================
   IMAGE
================================ */
.dr1059about .about-image {
	position: relative;
}

.dr1059about .img-wrap {
	height: 420px;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px
		rgba(201, 161, 74, 0.12);
	transition: transform .5s ease;
}

.dr1059about .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}

/* smooth hover */
.dr1059about .img-wrap:hover {
	transform: scale(1.03);
}

/* glossy shine */
.dr1059about .img-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15),
		transparent);
	opacity: 0;
	transition: .6s;
}

.dr1059about .img-wrap:hover::after {
	opacity: 1;
}

/* badge */
.dr1059about .about-badge {
	position: absolute;
	bottom: -20px;
	left: 20px;
	background: linear-gradient(135deg, #C9A14A, #E6C36A);
	color: #000;
	padding: 12px 20px;
	border-radius: 40px;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(201, 161, 74, 0.4);
}

/* ================================
   CONTENT
================================ */
.dr1059about .about-content {
	color: #fff;
}

/* tag */
.dr1059about .about-tag {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 40px;
	font-size: 12px;
	letter-spacing: 2px;
	color: #E6C36A;
	border: 1px solid rgba(201, 161, 74, 0.3);
}

/* heading */
.dr1059about h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-top: 20px;
	font-weight: 800;
}

.dr1059about h2 span {
	display: block;
	color: #C9A14A;
	margin-top: 6px;
}

/* description */
.dr1059about .about-desc {
	margin-top: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.75);
}

/* ================================
   HIGHLIGHTS (FIXED - NO CROPPING)
================================ */
.dr1059about .about-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.dr1059about .highlight {
	padding: 22px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	/* FIXES CROPPING */
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: transform .3s ease;
}

.dr1059about .highlight:hover {
	transform: translateY(-5px);
}

.dr1059about .highlight h3, .dr1059about .highlight h4 {
	color: #C9A14A;
	margin-bottom: 6px;
}

.dr1059about .highlight p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

/* ================================
   BLOCKS
================================ */
.dr1059about .about-block {
	margin-top: 30px;
}

.dr1059about .about-block h3 {
	color: #E6C36A;
	margin-bottom: 10px;
}

/* list */
.dr1059about .about-list {
	list-style: none;
	padding: 0;
}

.dr1059about .about-list li {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.8);
}

/* ================================
   TRUST SECTION
================================ */
.dr1059about .about-trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}

.dr1059about .trust-box {
	padding: 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================
   CTA
================================ */
.dr1059about .about-cta {
	margin-top: 30px;
	display: flex;
	gap: 15px;
}

.dr1059about .about-cta a {
	padding: 12px 22px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	background: linear-gradient(135deg, #C9A14A, #E6C36A);
	color: #000;
	transition: .3s ease;
}

.dr1059about .about-cta a:hover {
	transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
================================ */
@media ( max-width : 900px) {
	.dr1059about .about-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.dr1059about .about-highlights {
		grid-template-columns: 1fr;
	}
	.dr1059about .about-trust {
		grid-template-columns: 1fr;
	}
	.dr1059about .img-wrap {
		height: 300px;
	}
}