.dr1064contactform2 {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;

	background:
		radial-gradient(circle at top left,
			rgba(0, 174, 239, 0.18),
			transparent 35%),
		radial-gradient(circle at bottom right,
			rgba(0, 212, 255, 0.12),
			transparent 40%),
		linear-gradient(
			135deg,
			#08101D 0%,
			#0B1F3A 45%,
			#08101D 100%);
}

/* ENGINEERING GRID */

.dr1064contactform2::before {
	content: "";
	position: absolute;
	inset: 0;

	background-image:
		linear-gradient(
			rgba(255,255,255,.03) 1px,
			transparent 1px),
		linear-gradient(
			90deg,
			rgba(255,255,255,.03) 1px,
			transparent 1px);

	background-size: 60px 60px;

	opacity: .6;
	pointer-events: none;
}

/* PREMIUM GLOW */

.dr1064contactform2::after {
	content: "";
	position: absolute;

	width: 520px;
	height: 520px;

	right: -180px;
	top: -180px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(0,174,239,.28),
			transparent 70%);

	filter: blur(90px);

	animation: dr1064contactpulse 12s ease-in-out infinite;
	z-index: 0;
}

@keyframes dr1064contactpulse {

	0%,100%{
		transform: scale(1);
	}

	50%{
		transform: scale(1.15);
	}
}

/* CARD */

.dr1064contactform2 .contact-card {

	position: relative;
	z-index: 2;

	max-width: 820px;
	margin: auto;

	padding: 65px 48px;

	border-radius: 38px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.08),
			rgba(255,255,255,.03));

	backdrop-filter: blur(24px);

	border: 1px solid rgba(255,255,255,.10);

	box-shadow:
		0 35px 80px rgba(0,0,0,.55),
		0 0 60px rgba(0,174,239,.08);

	overflow: hidden;

	animation: dr1064fadeup 1s ease both;

	transition:
		transform .4s ease,
		box-shadow .4s ease,
		border-color .4s ease;
}

/* GLOSSY SHINE */

.dr1064contactform2 .contact-card::before {

	content: "";

	position: absolute;

	top: 0;
	left: -120%;

	width: 60%;
	height: 100%;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255,255,255,.12),
			transparent);

	transform: skewX(-25deg);

	animation: dr1064shine 8s linear infinite;
}

@keyframes dr1064shine {

	0%{
		left:-120%;
	}

	100%{
		left:180%;
	}
}

.dr1064contactform2 .contact-card:hover {

	transform:
		translateY(-10px);

	border-color:
		rgba(0,174,239,.30);

	box-shadow:
		0 45px 100px rgba(0,0,0,.65),
		0 0 45px rgba(0,174,239,.18);
}

/* HEADER */

.dr1064contactform2 header {
	margin-bottom: 35px;
}

.dr1064contactform2 .contact-tag {

	display: inline-flex;
	align-items: center;

	padding: 10px 22px;

	border-radius: 999px;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;

	color: #00D4FF;

	background:
		rgba(0,212,255,.08);

	border:
		1px solid rgba(0,212,255,.25);

	box-shadow:
		0 0 25px rgba(0,212,255,.08);
}

.dr1064contactform2 .contact-title {

	margin-top: 24px;

	font-size: 18px;
	font-weight: 700;

	background:
		linear-gradient(
			90deg,
			#00D4FF,
			#FFFFFF);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1064contactform2 .contact-subtitle-main {

	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;

	margin-top: 12px;

	color: #ffffff;

	max-width: 650px;
}

.dr1064contactform2 .contact-subtitle-main::after {

	content: "";

	display: block;

	width: 140px;
	height: 5px;

	margin-top: 18px;

	border-radius: 999px;

	background:
		linear-gradient(
			90deg,
			#00AEEF,
			#00D4FF);
}

/* FORM */

.dr1064contactform2 .field {
	position: relative;
	margin-bottom: 24px;
}

/* INPUTS */

.dr1064contactform2 input,
.dr1064contactform2 textarea,
.dr1064contactform2 select {

	width: 100%;

	padding: 18px;

	border-radius: 18px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.06),
			rgba(255,255,255,.03));

	border:
		1px solid rgba(255,255,255,.08);

	color: #ffffff;

	font-size: 15px;

	outline: none;

	transition:
		border-color .3s ease,
		box-shadow .3s ease,
		background .3s ease;
}

.dr1064contactform2 input:hover,
.dr1064contactform2 textarea:hover,
.dr1064contactform2 select:hover {

	border-color:
		rgba(0,174,239,.35);
}

.dr1064contactform2 input:focus,
.dr1064contactform2 textarea:focus,
.dr1064contactform2 select:focus {

	border-color: #00AEEF;

	box-shadow:
		0 0 0 3px rgba(0,174,239,.15),
		0 0 30px rgba(0,174,239,.18);

	background:
		rgba(255,255,255,.08);
}

/* SELECT */

.dr1064contactform2 select {

	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	background-image:
		linear-gradient(
			45deg,
			transparent 50%,
			#00D4FF 50%),
		linear-gradient(
			135deg,
			#00D4FF 50%,
			transparent 50%);

	background-position:
		calc(100% - 22px) calc(50% - 3px),
		calc(100% - 16px) calc(50% - 3px);

	background-size: 6px 6px;
	background-repeat: no-repeat;
}

.dr1064contactform2 select option {
	background: #0B1F3A;
	color: #ffffff;
}

/* LABELS */

.dr1064contactform2 label {

	position: absolute;

	left: 18px;
	top: 50%;

	transform: translateY(-50%);

	padding: 0 8px;

	font-size: 13px;

	color: #94A3B8;

	background: #0B1F3A;

	border-radius: 10px;

	transition: .25s ease;

	pointer-events: none;
}

.dr1064contactform2 textarea + label {
	top: 22px;
}

.dr1064contactform2 input:focus + label,
.dr1064contactform2 input:not(:placeholder-shown) + label,
.dr1064contactform2 textarea:focus + label,
.dr1064contactform2 textarea:not(:placeholder-shown) + label,
.dr1064contactform2 select:focus + label,
.dr1064contactform2 select:valid + label {

	top: -10px;

	font-size: 11px;

	font-weight: 700;

	color: #00D4FF;
}

/* BUTTON */

.dr1064contactform2 .submit-btn {

	width: 100%;

	padding: 18px;

	border: none;

	border-radius: 18px;

	background:
		linear-gradient(
			135deg,
			#00AEEF,
			#0077C8);

	color: #ffffff;

	font-size: 16px;
	font-weight: 700;

	cursor: pointer;

	box-shadow:
		0 20px 50px rgba(0,174,239,.35);

	transition:
		transform .3s ease,
		box-shadow .3s ease,
		background .3s ease;
}

.dr1064contactform2 .submit-btn:hover {

	transform:
		translateY(-4px);

	background:
		linear-gradient(
			135deg,
			#00D4FF,
			#00AEEF);

	box-shadow:
		0 30px 70px rgba(0,174,239,.45);
}

/* NOTE */

.dr1064contactform2 .contact-note {

	margin-top: 26px;

	padding: 20px;

	border-radius: 20px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.05),
			rgba(255,255,255,.02));

	border:
		1px solid rgba(0,174,239,.15);

	text-align: center;

	font-size: 14px;

	color:
		rgba(255,255,255,.82);
}

.dr1064contactform2 .contact-note a {

	color: #00D4FF;

	text-decoration: none;

	font-weight: 600;
}

.dr1064contactform2 .contact-note a:hover {
	color: #ffffff;
}

/* HONEYPOT */

.dr1064contactform2 .hp {

	position: absolute !important;

	left: -9999px !important;

	width: 1px;
	height: 1px;

	overflow: hidden;

	opacity: 0;
}

/* ANIMATION */

@keyframes dr1064fadeup {

	from {

		opacity: 0;

		transform:
			translateY(30px);
	}

	to {

		opacity: 1;

		transform:
			translateY(0);
	}
}

/* MOBILE */

@media (max-width:768px){

	.dr1064contactform2{
		padding:80px 16px;
	}

	.dr1064contactform2 .contact-card{
		padding:40px 24px;
		border-radius:28px;
	}

	.dr1064contactform2 .contact-subtitle-main{
		font-size:22px;
	}
}