.dr1059contactform2 {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;

	background:
		radial-gradient(circle at top left,
			rgba(201, 161, 74, 0.12),
			transparent 40%),
		radial-gradient(circle at bottom right,
			rgba(30, 58, 138, 0.12),
			transparent 40%),
		linear-gradient(135deg, #020617 0%, #0B1C2C 50%, #020617 100%);
}

/* FLOATING LIGHTS */

.dr1059contactform2::before,
.dr1059contactform2::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .3;
	z-index: -1;
	animation: dr1059contactpulse 10s ease-in-out infinite;
}

.dr1059contactform2::before {
	width: 300px;
	height: 300px;
	background: #C9A14A;
	top: -100px;
	left: -100px;
}

.dr1059contactform2::after {
	width: 240px;
	height: 240px;
	background: #1E3A8A;
	bottom: -80px;
	right: -80px;
	animation-delay: 4s;
}

@keyframes dr1059contactpulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

/* CARD */

.dr1059contactform2 .contact-card {
	max-width: 650px;
	margin: auto;
	padding: 65px 48px;
	border-radius: 38px;

	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02));

	backdrop-filter: blur(22px);

	border: 1px solid rgba(255, 255, 255, 0.08);

	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);

	animation: dr1059fadeup 1s ease both;

	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	will-change: transform;
}

.dr1059contactform2 .contact-card:hover {
	transform: translateY(-6px) scale(1.01);

	box-shadow:
		0 35px 90px rgba(0, 0, 0, 0.65),
		0 0 30px rgba(201, 161, 74, 0.12);

	border-color: rgba(201, 161, 74, 0.3);
}

/* HEADER */

.dr1059contactform2 header {
	margin-bottom: 35px;
}

.dr1059contactform2 .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: #E6C36A;

	background: rgba(201, 161, 74, 0.08);
	border: 1px solid rgba(201, 161, 74, 0.3);
}

.dr1059contactform2 .contact-title {
	margin-top: 24px;
	font-size: 18px;
	font-weight: 700;
	color: #C9A14A;
}

.dr1059contactform2 .contact-subtitle-main {
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-top: 12px;
	color: #ffffff;
}

.dr1059contactform2 .contact-subtitle-main::after {
	content: "";
	display: block;
	width: 110px;
	height: 5px;
	margin-top: 18px;
	border-radius: 30px;
	background: linear-gradient(90deg, #C9A14A, #E6C36A);
}

/* FORM */

.dr1059contactform2 .field {
	position: relative;
	margin-bottom: 24px;
}

/* INPUTS */

.dr1059contactform2 input,
.dr1059contactform2 textarea,
.dr1059contactform2 select {
	width: 100%;
	padding: 18px;
	border-radius: 18px;

	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02));

	border: 1px solid rgba(255, 255, 255, 0.08);

	color: #ffffff;
	font-size: 15px;

	outline: none;

	transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

/* HOVER */

.dr1059contactform2 input:hover,
.dr1059contactform2 textarea:hover,
.dr1059contactform2 select:hover {
	border-color: rgba(201, 161, 74, 0.35);
}

/* FOCUS */

.dr1059contactform2 input:focus,
.dr1059contactform2 textarea:focus,
.dr1059contactform2 select:focus {
	border-color: #C9A14A;

	box-shadow:
		0 0 0 3px rgba(201, 161, 74, .15),
		0 0 20px rgba(201, 161, 74, .15);

	background: rgba(255, 255, 255, 0.07);
}

/* SELECT FIX (IMPORTANT) */

.dr1059contactform2 select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	background-image:
		linear-gradient(45deg, transparent 50%, #C9A14A 50%),
		linear-gradient(135deg, #C9A14A 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;
}

/* placeholder option */

.dr1059contactform2 select option[value=""] {
	color: #94a3b8;
}

/* real options */

.dr1059contactform2 select option {
	background: #0B1C2C;
	color: #ffffff;
}

/* LABEL */

.dr1059contactform2 label {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 8px;

	font-size: 13px;
	color: #94a3b8;

	background: #0B1C2C;
	border-radius: 10px;

	transition: .25s ease;
	pointer-events: none;
}

.dr1059contactform2 textarea + label {
	top: 22px;
}

.dr1059contactform2 input:focus + label,
.dr1059contactform2 input:not(:placeholder-shown) + label,
.dr1059contactform2 textarea:focus + label,
.dr1059contactform2 textarea:not(:placeholder-shown) + label,
.dr1059contactform2 select:focus + label,
.dr1059contactform2 select:valid + label {
	top: -10px;
	font-size: 11px;
	font-weight: 700;
	color: #C9A14A;
}

/* BUTTON */

.dr1059contactform2 .submit-btn {
	width: 100%;
	padding: 18px;
	border-radius: 18px;

	background: linear-gradient(135deg, #C9A14A, #E6C36A);

	color: #1a1a1a;
	font-size: 16px;
	font-weight: 700;

	cursor: pointer;

	box-shadow: 0 18px 45px rgba(201, 161, 74, .35);

	transition: transform .3s ease, box-shadow .3s ease;
}

.dr1059contactform2 .submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 25px 60px rgba(201, 161, 74, .45);
}

/* NOTE */

.dr1059contactform2 .contact-note {
	margin-top: 26px;
	padding: 20px;
	border-radius: 20px;

	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02));

	border: 1px solid rgba(255, 255, 255, 0.08);

	text-align: center;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.dr1059contactform2 .contact-note a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
}

.dr1059contactform2 .contact-note a:hover {
	color: #E6C36A;
}

/* HONEYPOT - FULLY HIDDEN */

.dr1059contactform2 .hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* ANIMATION */

@keyframes dr1059fadeup {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* MOBILE */

@media (max-width: 768px) {
	.dr1059contactform2 {
		padding: 80px 16px;
	}

	.dr1059contactform2 .contact-card {
		padding: 40px 24px;
		border-radius: 28px;
	}
}