/* =========================
   CONTACT SECTION - ULTRA PREMIUM (NO FORM)
========================= */
.dr1056contactushome {
	position: relative;
	width: 100%;
	padding: 110px 20px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(135deg, rgba(4, 18, 30, 0.97), rgba(7, 32, 48, 0.95)),
		radial-gradient(circle at top right, rgba(0, 255, 213, 0.08), transparent 35%),
		radial-gradient(circle at bottom left, rgba(126, 249, 255, 0.08), transparent 35%),
		#071722;
	color: #ffffff;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================
   BACKGROUND FX
========================= */
.dr1056contactushome .contact-bg-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 18% 20%, rgba(0, 255, 213, 0.08), transparent 30%),
		radial-gradient(circle at 82% 24%, rgba(126, 249, 255, 0.08), transparent 30%),
		radial-gradient(circle at 50% 82%, rgba(255, 211, 106, 0.06), transparent 35%);
	animation: dr1056ContactFloat 12s ease-in-out infinite alternate;
}

.dr1056contactushome .contact-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.22;
	pointer-events: none;
	z-index: 0;
}

.dr1056contactushome .contact-glow-1 {
	width: 280px;
	height: 280px;
	background: rgba(0, 255, 213, 0.18);
	top: 40px;
	left: -70px;
	animation: dr1056ContactGlowMove1 10s ease-in-out infinite alternate;
}

.dr1056contactushome .contact-glow-2 {
	width: 320px;
	height: 320px;
	background: rgba(255, 211, 106, 0.14);
	right: -90px;
	bottom: 20px;
	animation: dr1056ContactGlowMove2 14s ease-in-out infinite alternate;
}

/* =========================
   INNER CONTAINER
========================= */
.dr1056contactushome .section-container {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.dr1056contactushome .contact-header {
	max-width: 860px;
	margin: 0 auto 58px;
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
	animation: dr1056ContactFadeUp 0.9s ease forwards;
}

.dr1056contactushome .contact-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	margin-bottom: 18px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #082634;
	background: linear-gradient(135deg, #7ef9ff, #00ffd5);
	box-shadow: 0 10px 25px rgba(0, 255, 213, 0.18);
}

.dr1056contactushome .contact-header h2 {
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.5px;
	margin: 0 0 16px;
	color: #ffffff;
}

.dr1056contactushome .contact-intro {
	margin: 0 auto;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.78);
}

/* =========================
   CONTACT GRID
========================= */
.dr1056contactushome .contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	margin-bottom: 42px;
}

/* =========================
   CONTACT CARD
========================= */
.dr1056contactushome .contact-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 28px 24px;
	border-radius: 28px;
	text-decoration: none;
	color: #ffffff;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.10),
		rgba(255, 255, 255, 0.05)
	);
	border: 1px solid rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	transition:
		transform 0.45s ease,
		box-shadow 0.45s ease,
		border-color 0.45s ease;
	opacity: 0;
	transform: translateY(40px);
	animation: dr1056ContactCardUp 0.9s ease forwards;
}

.dr1056contactushome .contact-card:nth-child(1) {
	animation-delay: 0.14s;
}

.dr1056contactushome .contact-card:nth-child(2) {
	animation-delay: 0.28s;
}

.dr1056contactushome .contact-card:nth-child(3) {
	animation-delay: 0.42s;
}

/* Shine */
.dr1056contactushome .contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -140%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.16),
		rgba(255, 255, 255, 0)
	);
	transform: skewX(-22deg);
	transition: left 0.9s ease;
}

.dr1056contactushome .contact-card:hover::before {
	left: 160%;
}

/* Premium border line */
.dr1056contactushome .contact-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 28px;
	padding: 1px;
	background: linear-gradient(
		135deg,
		rgba(126, 249, 255, 0.28),
		rgba(0, 255, 213, 0.14),
		rgba(255, 211, 106, 0.18)
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: 0.85;
}

.dr1056contactushome .contact-card:hover {
	transform: translateY(-10px);
	box-shadow:
		0 28px 60px rgba(0, 0, 0, 0.28),
		0 0 30px rgba(0, 255, 213, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
	border-color: rgba(0, 255, 213, 0.18);
}

/* =========================
   ICON
========================= */
.dr1056contactushome .contact-icon {
	width: 62px;
	height: 62px;
	flex-shrink: 0;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #082634;
	background: linear-gradient(135deg, #7ef9ff, #00ffd5);
	box-shadow:
		0 14px 30px rgba(0, 255, 213, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.dr1056contactushome .contact-card-location .contact-icon {
	background: linear-gradient(135deg, #ffd36a, #ffb347, #ffe29b);
	color: #2b1d00;
	box-shadow:
		0 14px 30px rgba(255, 179, 71, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* =========================
   CONTENT
========================= */
.dr1056contactushome .contact-content {
	flex: 1;
	min-width: 0;
}

.dr1056contactushome .contact-label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.dr1056contactushome .contact-content h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	color: #ffffff;
	word-break: break-word;
}

.dr1056contactushome .contact-content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.76);
}

/* =========================
   CTA BAR
========================= */
.dr1056contactushome .contact-cta-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(24px);
	animation: dr1056ContactFadeUp 0.9s ease forwards;
	animation-delay: 0.55s;
}

.dr1056contactushome .contact-main-btn,
.dr1056contactushome .contact-secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 24px;
	border-radius: 16px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.2px;
	transition: all 0.35s ease;
}

.dr1056contactushome .contact-main-btn {
	color: #082634;
	background: linear-gradient(135deg, #7ef9ff, #00ffd5);
	box-shadow: 0 16px 34px rgba(0, 255, 213, 0.18);
}

.dr1056contactushome .contact-main-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 40px rgba(0, 255, 213, 0.24);
}

.dr1056contactushome .contact-secondary-btn {
	color: #2b1d00;
	background: linear-gradient(135deg, #ffd36a, #ffb347, #ffe29b);
	box-shadow: 0 16px 34px rgba(255, 179, 71, 0.18);
}

.dr1056contactushome .contact-secondary-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 40px rgba(255, 179, 71, 0.24);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes dr1056ContactFadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dr1056ContactCardUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dr1056ContactFloat {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(0, -14px, 0) scale(1.03);
	}
}

@keyframes dr1056ContactGlowMove1 {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(24px, 18px) scale(1.08);
	}
}

@keyframes dr1056ContactGlowMove2 {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(-20px, -16px) scale(1.06);
	}
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
	.dr1056contactushome .contact-grid {
		grid-template-columns: 1fr;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 768px) {
	.dr1056contactushome {
		padding: 80px 16px;
	}

	.dr1056contactushome .contact-header {
		margin-bottom: 38px;
	}

	.dr1056contactushome .contact-header h2 {
		font-size: 30px;
	}

	.dr1056contactushome .contact-intro {
		font-size: 14px;
		line-height: 1.8;
	}

	.dr1056contactushome .contact-grid {
		gap: 18px;
		margin-bottom: 28px;
	}

	.dr1056contactushome .contact-card {
		padding: 22px 18px;
		border-radius: 22px;
		gap: 14px;
	}

	.dr1056contactushome .contact-card::after {
		border-radius: 22px;
	}

	.dr1056contactushome .contact-icon {
		width: 52px;
		height: 52px;
		border-radius: 16px;
		font-size: 18px;
	}

	.dr1056contactushome .contact-content h3 {
		font-size: 16px;
	}

	.dr1056contactushome .contact-content p {
		font-size: 13px;
		line-height: 1.75;
	}

	.dr1056contactushome .contact-main-btn,
	.dr1056contactushome .contact-secondary-btn {
		width: 100%;
		max-width: 320px;
		padding: 14px 18px;
		border-radius: 14px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.dr1056contactushome {
		padding: 70px 12px;
	}

	.dr1056contactushome .contact-badge {
		font-size: 11px;
		padding: 7px 14px;
		margin-bottom: 14px;
	}

	.dr1056contactushome .contact-header h2 {
		font-size: 26px;
	}

	.dr1056contactushome .contact-intro {
		font-size: 13px;
	}

	.dr1056contactushome .contact-card {
		padding: 20px 16px;
		border-radius: 20px;
		align-items: flex-start;
	}

	.dr1056contactushome .contact-card::after {
		border-radius: 20px;
	}

	.dr1056contactushome .contact-icon {
		width: 48px;
		height: 48px;
		border-radius: 14px;
		font-size: 16px;
	}

	.dr1056contactushome .contact-label {
		font-size: 11px;
		margin-bottom: 8px;
	}

	.dr1056contactushome .contact-content h3 {
		font-size: 15px;
	}

	.dr1056contactushome .contact-content p {
		font-size: 12px;
	}
}

/* =========================
   ACCESSIBILITY
========================= */
@media (prefers-reduced-motion: reduce) {
	.dr1056contactushome *,
	.dr1056contactushome *::before,
	.dr1056contactushome *::after {
		animation: none !important;
		transition: none !important;
	}
}