.dr1herocontact {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background:
		linear-gradient(135deg, #020617 0%, #071b34 45%, #0f172a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 7%;
	font-family: 'Poppins', sans-serif;
}

.dr1herocontact * {
	box-sizing: border-box;
}

.dr1herooverlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left,
			rgba(0, 200, 255, 0.18),
			transparent 35%),
		radial-gradient(circle at bottom right,
			rgba(0, 119, 255, 0.18),
			transparent 35%);
	z-index: 1;
}

.dr1floating {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: .45;
	animation: dr1float 8s ease-in-out infinite;
	z-index: 1;
}

.dr1float1 {
	width: 280px;
	height: 280px;
	background: #00c3ff;
	top: -80px;
	left: -80px;
}

.dr1float2 {
	width: 220px;
	height: 220px;
	background: #0066ff;
	right: 0;
	top: 20%;
	animation-delay: 2s;
}

.dr1float3 {
	width: 200px;
	height: 200px;
	background: #00ffd5;
	bottom: -50px;
	left: 40%;
	animation-delay: 4s;
}

@keyframes dr1float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-25px);
	}
}

.dr1hero-content {
	position: relative;
	z-index: 5;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.dr1hero-left h1 {
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	line-height: 1.1;
	font-weight: 800;
	color: #fff;
	margin-bottom: 25px;
}

.dr1hero-left h1 span {
	background: linear-gradient(90deg, #00d9ff, #4facfe, #00ffd5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1tagline {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #8be9ff;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

.dr1hero-left p {
	font-size: 1.1rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.78);
	max-width: 650px;
	margin-bottom: 35px;
}

.dr1hero-buttons {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.dr1hero-buttons a {
	text-decoration: none;
	padding: 16px 28px;
	border-radius: 16px;
	font-weight: 600;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: .4s ease;
}

.dr1callbtn {
	background: linear-gradient(135deg, #00c3ff, #005bea);
	color: #fff;
	box-shadow: 0 12px 30px rgba(0, 140, 255, .35);
}

.dr1whatsappbtn {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	backdrop-filter: blur(10px);
}

.dr1hero-buttons a:hover {
	transform: translateY(-6px) scale(1.02);
}

.dr1hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.dr1featurebox {
	padding: 16px 22px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-weight: 500;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
	transition: .4s ease;
}

.dr1featurebox:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.12);
}

.dr1featurebox i {
	color: #00d9ff;
	font-size: 1.2rem;
}

.dr1hero-right {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dr1imagecard {
	position: relative;
	width: 100%;
	max-width: 580px;
	border-radius: 35px;
	overflow: hidden;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, .45),
		0 0 40px rgba(0, 153, 255, .18);
	transform-style: preserve-3d;
	animation: dr1cardfloat 6s ease-in-out infinite;
}

@keyframes dr1cardfloat {

	0%,
	100% {
		transform: translateY(0px) rotateY(0deg);
	}

	50% {
		transform: translateY(-15px) rotateY(4deg);
	}
}

.dr1imagecard img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	display: block;
}

.dr1imagecard::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top,
			rgba(2, 6, 23, .88),
			rgba(2, 6, 23, .15));
}

.dr1glasscard {
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 18px 22px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.dr1glasscard i {
	font-size: 1.5rem;
	color: #00d9ff;
}

.dr1glasscard h3 {
	font-size: 1rem;
	margin-bottom: 4px;
}

.dr1glasscard p {
	font-size: .85rem;
	color: rgba(255, 255, 255, 0.75);
}

.dr1glass1 {
	top: 30px;
	left: 30px;
}

.dr1glass2 {
	bottom: 30px;
	right: 30px;
}

@media(max-width: 992px) {

	.dr1hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.dr1hero-left p {
		margin-inline: auto;
	}

	.dr1hero-buttons,
	.dr1hero-features {
		justify-content: center;
	}

	.dr1imagecard img {
		height: 500px;
	}
}

@media(max-width: 576px) {

	.dr1herocontact {
		padding: 70px 20px;
	}

	.dr1hero-left h1 {
		font-size: 2.5rem;
	}

	.dr1hero-buttons a {
		width: 100%;
		justify-content: center;
	}

	.dr1glasscard {
		transform: scale(.9);
	}

	.dr1imagecard img {
		height: 420px;
	}
}