.dr1contactform2 {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
	background:
		radial-gradient(circle at top left,
			rgba(0, 217, 255, 0.14),
			transparent 35%),
		radial-gradient(circle at bottom right,
			rgba(0, 102, 255, 0.12),
			transparent 35%),
		linear-gradient(135deg, #020617 0%, #071120 45%, #020817 100%);
	isolation: isolate;
}

/* FLOATING LIGHTS */

.dr1contactform2::before,
.dr1contactform2::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .45;
	z-index: -1;
	animation: dr1contactpulse 8s ease-in-out infinite;
}

.dr1contactform2::before {
	width: 320px;
	height: 320px;
	background: #00cfff;
	top: -100px;
	left: -100px;
}

.dr1contactform2::after {
	width: 260px;
	height: 260px;
	background: #005eff;
	bottom: -80px;
	right: -80px;
	animation-delay: 3s;
}

@keyframes dr1contactpulse {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1.08) translateY(-20px);
	}
}

/* CARD */

.dr1contactform2 .contact-card {
	position: relative;
	max-width: 650px;
	margin: auto;
	padding: 65px 48px;
	border-radius: 38px;

	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.08),
			rgba(255, 255, 255, 0.03));

	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);

	border: 1px solid rgba(255, 255, 255, 0.12);

	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 45px rgba(0, 153, 255, 0.08);

	transform-style: preserve-3d;
	animation: dr1fadeup 1s ease both;
	overflow: hidden;
}

/* glossy shine */

.dr1contactform2 .contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg,
			rgba(255, 255, 255, 0.12),
			transparent 30%);
	pointer-events: none;
}

.dr1contactform2 .contact-card::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	background: rgba(0, 217, 255, 0.08);
	border-radius: 50%;
	top: -120px;
	right: -120px;
	filter: blur(20px);
}

/* HOVER */

.dr1contactform2 .contact-card:hover {
	transform:
		perspective(1200px)
		rotateX(4deg)
		rotateY(-4deg)
		translateY(-6px);

	transition: .5s ease;
}

/* HEADER */

.dr1contactform2 header {
	position: relative;
	z-index: 2;
	margin-bottom: 35px;
}

.dr1contactform2 .contact-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border-radius: 60px;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;

	color: #7dd3fc;

	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);

	backdrop-filter: blur(10px);

	box-shadow:
		0 10px 25px rgba(0, 0, 0, .2);
}

.dr1contactform2 .contact-title {
	margin-top: 24px;
	font-size: 18px;
	font-weight: 700;
	color: #38bdf8;
	letter-spacing: 1px;
}

.dr1contactform2 .contact-subtitle-main {
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-top: 12px;
	color: #ffffff;
	letter-spacing: -.5px;
}

.dr1contactform2 .contact-subtitle-main::after {
	content: "";
	display: block;
	width: 110px;
	height: 5px;
	margin-top: 18px;
	border-radius: 30px;
	background: linear-gradient(90deg, #00d9ff, #0066ff);
	box-shadow: 0 0 18px rgba(0, 217, 255, .5);
}

/* FORM */

.dr1contactform2 .contact-form {
	position: relative;
	z-index: 2;
}

/* FIELD */

.dr1contactform2 .field {
	position: relative;
	margin-bottom: 26px;
}

/* INPUTS */

.dr1contactform2 input,
.dr1contactform2 textarea,
.dr1contactform2 select {
	width: 100%;
	padding: 18px 18px;
	border-radius: 18px;

	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.06),
			rgba(255, 255, 255, 0.03));

	border: 1px solid rgba(255, 255, 255, 0.08);

	color: #e2e8f0;
	font-size: 15px;
	font-weight: 500;

	outline: none;

	backdrop-filter: blur(12px);

	transition: .35s ease;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .04),
		0 5px 15px rgba(0, 0, 0, .15);
}

/* TEXTAREA */

.dr1contactform2 textarea {
	min-height: 140px;
	resize: vertical;
}

/* HOVER */

.dr1contactform2 input:hover,
.dr1contactform2 textarea:hover,
.dr1contactform2 select:hover {
	border-color: rgba(0, 217, 255, 0.35);
	transform: translateY(-2px);
}

/* FOCUS */

.dr1contactform2 input:focus,
.dr1contactform2 textarea:focus,
.dr1contactform2 select:focus {
	border-color: #38bdf8;

	box-shadow:
		0 0 0 4px rgba(56, 189, 248, .14),
		0 0 25px rgba(56, 189, 248, .12);

	background: rgba(255, 255, 255, 0.08);
}

/* LABEL */

.dr1contactform2 label {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 8px;

	font-size: 13px;
	font-weight: 500;

	color: #94a3b8;

	background: #071120;

	border-radius: 10px;

	transition: .28s ease;
	pointer-events: none;
}

.dr1contactform2 textarea+label {
	top: 22px;
	transform: none;
}

.dr1contactform2 input:focus+label,
.dr1contactform2 input:not(:placeholder-shown)+label,
.dr1contactform2 textarea:focus+label,
.dr1contactform2 textarea:not(:placeholder-shown)+label,
.dr1contactform2 select:focus+label,
.dr1contactform2 select:valid+label {
	top: -10px;
	transform: none;

	font-size: 11px;
	font-weight: 700;

	color: #38bdf8;

	box-shadow: 0 5px 12px rgba(0, 0, 0, .2);
}

/* SELECT */

.dr1contactform2 select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	color: #ffffff;

	background-image:
		linear-gradient(45deg, transparent 50%, #38bdf8 50%),
		linear-gradient(135deg, #38bdf8 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;
}

.dr1contactform2 select:invalid {
	color: #94a3b8;
}

.dr1contactform2 select option {
	background: #071120;
	color: #ffffff;
	padding: 12px;
}

.dr1contactform2 select option[value=""] {
	color: #94a3b8;
}

/* BUTTON */

.dr1contactform2 .submit-btn {
	position: relative;
	width: 100%;
	padding: 18px 22px;
	border: none;
	border-radius: 18px;

	background:
		linear-gradient(135deg,
			#00cfff 0%,
			#0066ff 100%);

	color: #fff;

	font-size: 16px;
	font-weight: 700;
	letter-spacing: .5px;

	cursor: pointer;
	overflow: hidden;

	box-shadow:
		0 18px 45px rgba(0, 153, 255, .35);

	transition: .4s ease;
}

.dr1contactform2 .submit-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 100%;
	height: 100%;

	background:
		linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, .3),
			transparent);

	transition: .7s ease;
}

.dr1contactform2 .submit-btn:hover::before {
	left: 120%;
}

.dr1contactform2 .submit-btn:hover {
	transform: translateY(-5px);

	box-shadow:
		0 25px 60px rgba(0, 153, 255, .5);
}

/* STATUS */

.dr1contactform2 .form-status {
	margin-top: 18px;
	font-size: 14px;
	font-weight: 600;
	color: #7dd3fc;
	text-align: center;
}

/* NOTE */

.dr1contactform2 .contact-note {
	margin-top: 26px;
	padding: 20px;
	border-radius: 20px;

	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.06),
			rgba(255, 255, 255, 0.03));

	border: 1px solid rgba(255, 255, 255, 0.08);

	text-align: center;
	font-size: 14px;
	line-height: 1.9;

	color: rgba(255, 255, 255, 0.72);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .04);

	position: relative;
	z-index: 3;
}

.dr1contactform2 .contact-note strong {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	letter-spacing: .5px;
}

/* CLICKABLE EMAIL + PHONE */

.dr1contactform2 .contact-note a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	color: #ffffff;

	text-decoration: none;

	font-weight: 600;

	padding: 4px 0;

	border-bottom: 1px solid transparent;

	transition:
		color .3s ease,
		border-color .3s ease,
		transform .3s ease;

	word-break: break-word;

	position: relative;
	z-index: 5;
}

.dr1contactform2 .contact-note a:hover {
	color: #00d9ff;

	border-color:
		rgba(0, 217, 255, .45);

	transform: translateY(-2px);
}

.dr1contactform2 .contact-note a strong {
	color: inherit;
	font-weight: 700;
}

/* HONEYPOT */

.dr1contactform2 .hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* ANIMATION */

@keyframes dr1fadeup {

	from {
		opacity: 0;
		transform: translateY(40px) scale(.96);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* MOBILE */

@media (max-width: 768px) {

	.dr1contactform2 {
		padding: 80px 16px;
	}

	.dr1contactform2 .contact-card {
		padding: 40px 24px;
		border-radius: 28px;
	}

	.dr1contactform2 .contact-subtitle-main {
		font-size: 2.2rem;
	}

	.dr1contactform2 input,
	.dr1contactform2 textarea,
	.dr1contactform2 select {
		padding: 16px;
		border-radius: 16px;
	}

	.dr1contactform2 .submit-btn {
		padding: 16px;
		border-radius: 16px;
	}

	.dr1contactform2 .contact-note a {
		padding: 6px 0;
	}
}

/* SMALL MOBILE */

@media (max-width: 480px) {

	.dr1contactform2 .contact-subtitle-main {
		font-size: 1.9rem;
	}

	.dr1contactform2 .contact-card {
		padding: 34px 20px;
	}

	.dr1contactform2 .contact-note {
		font-size: 13px;
	}
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

	.dr1contactform2 *,
	.dr1contactform2::before,
	.dr1contactform2::after {
		animation: none !important;
		transition: none !important;
	}
}