/* ==========================================
   ULTRA PREMIUM SERVICES PAGE
   Andhavarapu Sridhar & Co.
   3D • Glass • Animated • Big4 Style
========================================== */

.dr1059services {
	background: radial-gradient(circle at top, #ffffff 0%, #f5f7fb 40%, #eef2f7 100%);
	overflow: hidden;
	color: #0b1c2c;
	position: relative;
}

/* subtle animated glow background */
.dr1059services::before {
	content: "";
	position: absolute;
	top: -200px;
	left: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 60%);
	filter: blur(80px);
	animation: floatGlow 8s ease-in-out infinite alternate;
	z-index: 0;
}

@keyframes floatGlow {
	from { transform: translate(0,0); opacity: 0.6; }
	to { transform: translate(120px, 80px); opacity: 1; }
}

/* ================= HERO ================= */
.dr1059services-hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 110px 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.dr1059services-hero-media img {
	width: 100%;
	border-radius: 26px;
	box-shadow: 
		0 30px 80px rgba(15, 23, 42, 0.18),
		inset 0 0 0 1px rgba(255,255,255,0.4);
	transition: all 0.6s cubic-bezier(.2,.8,.2,1);
	transform: perspective(1000px) rotateY(0deg);
}

.dr1059services-hero-media img:hover {
	transform: perspective(1000px) rotateY(-6deg) scale(1.03);
	box-shadow: 0 40px 100px rgba(15, 23, 42, 0.25);
}

/* badge glass */
.dr1059services-badge {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;

	background: rgba(212,175,55,0.12);
	border: 1px solid rgba(212,175,55,0.5);
	backdrop-filter: blur(10px);
	color: #071422;

	box-shadow: 0 10px 30px rgba(212,175,55,0.15);
	animation: fadeUp 0.8s ease forwards;
}

/* hero text animation */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.dr1059services-hero-content h1 {
	font-size: 46px;
	font-weight: 900;
	line-height: 1.2;
	color: #071422;
	letter-spacing: -0.5px;
	margin-bottom: 16px;
	animation: fadeUp 0.9s ease forwards;
}

.dr1059services-hero-content p {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.9;
	max-width: 540px;
	animation: fadeUp 1.1s ease forwards;
}

/* ================= GRID ================= */
.dr1059services-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 20px 110px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}

/* ================= CARD (3D GLASS PREMIUM) ================= */
.dr1059services-card {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(16px);
	border-radius: 20px;
	padding: 28px;
	position: relative;

	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow:
		0 10px 30px rgba(2, 6, 23, 0.05),
		inset 0 1px 0 rgba(255,255,255,0.6);

	transform: translateY(30px) scale(0.98);
	opacity: 0;

	transition: all 0.5s cubic-bezier(.2,.8,.2,1);
	overflow: hidden;
}

/* animated reveal class */
.dr1059services-card.active {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* glowing border effect */
.dr1059services-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, transparent, rgba(212,175,55,0.5), transparent);
	opacity: 0;
	transition: 0.5s ease;
}

.dr1059services-card:hover::before {
	opacity: 1;
}

/* hover 3D lift */
.dr1059services-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow:
		0 25px 60px rgba(2, 6, 23, 0.12),
		0 0 40px rgba(212,175,55,0.08);
}

/* TITLE */
.dr1059services-card h2 {
	font-size: 18px;
	font-weight: 900;
	color: #071422;
	margin-bottom: 10px;
	letter-spacing: -0.2px;
}

/* DESCRIPTION */
.dr1059services-card p {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.75;
	margin-bottom: 14px;
}

/* ================= LIST (ULTRA CLEAN) ================= */
.services-list {
	margin: 14px 0 0;
	padding-left: 18px;
}

.services-list li {
	font-size: 13px;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 6px;
	position: relative;
	transition: 0.3s ease;
}

.services-list li:hover {
	color: #071422;
	transform: translateX(3px);
}

.services-list li::marker {
	color: #d4af37;
}

/* ================= SERVICE NOTE ================= */
.service-note {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed rgba(212,175,55,0.4);
	font-size: 12.5px;
	color: #64748b;
	line-height: 1.7;
}

/* ================= DETAILS ================= */
.dr1059services-details {
	max-width: 1100px;
	margin: 0 auto;
	padding: 70px 20px;
}

.dr1059services-details h2 {
	font-size: 32px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 35px;
}

.dr1059services-details ul {
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(10px);
	border-radius: 18px;
	padding: 25px;
	border: 1px solid rgba(226,232,240,0.8);
	box-shadow: 0 15px 40px rgba(2,6,23,0.05);
}

/* ================= PROCESS ================= */
.dr1059services-process {
	background: radial-gradient(circle at top, #0b1c2c, #071422);
	color: #fff;
	padding: 100px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* animated light streak */
.dr1059services-process::before {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	background: rgba(212,175,55,0.2);
	filter: blur(100px);
	top: -50px;
	left: 50%;
	animation: floatGlow 6s infinite alternate;
}

.dr1059services-process-grid div {
	background: rgba(255,255,255,0.06);
	backdrop-filter: blur(12px);
	border-radius: 16px;
	padding: 25px;
	transition: 0.4s ease;
}

.dr1059services-process-grid div:hover {
	transform: translateY(-6px);
}

/* ================= CTA ================= */
.dr1059services-cta {
	background: linear-gradient(135deg, #d4af37, #ffe9a6);
	padding: 100px 20px;
	text-align: center;
}

.dr1059btn {
	display: inline-block;
	padding: 15px 32px;
	border-radius: 14px;
	background: #071422;
	color: #fff;
	font-weight: 800;
	transition: all 0.4s ease;
}

.dr1059btn:hover {
	transform: translateY(-4px) scale(1.05);
	background: #ffffff;
	color: #071422;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
	.dr1059services-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.dr1059services-container {
		grid-template-columns: 1fr;
	}
	.dr1059services-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}
}