/* ======================================
   RR JEWELLERY — LUXURY ENQUIRY SECTION
====================================== */
.dr1015contactform2 {
	padding: 90px 20px;
	background: radial-gradient(circle at top, rgba(212, 175, 55, .22),
		transparent 60%), linear-gradient(180deg, #0b0b0b, #1a1a1a);
	font-family: 'Montserrat', sans-serif;
}

/* ======================================
   GLASS JEWELLERY CARD
====================================== */
.dr1015contactform2 .contact-card {
	max-width: 520px;
	margin: auto;
	padding: 52px 44px;
	border-radius: 26px;
	background: rgba(20, 20, 20, .78);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(212, 175, 55, .28);
	box-shadow: 0 45px 100px rgba(0, 0, 0, .85);
	position: relative;
}

/* Gold shine overlay */
.dr1015contactform2 .contact-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 26px;
	background: linear-gradient(120deg, transparent, rgba(212, 175, 55, .12),
		transparent);
	pointer-events: none;
}

/* ======================================
   TITLES
====================================== */
.dr1015contactform2 .contact-title {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	font-weight: 700;
	color: #f5e6b8;
	letter-spacing: .5px;
	margin-bottom: 10px;
}

.dr1015contactform2 .contact-title+.contact-title {
	font-size: 24px;
	font-weight: 600;
	color: #f8f3dd;
	margin-bottom: 18px;
}

/* ======================================
   PARAGRAPH
====================================== */
.dr1015contactform2 .contact-subtitle {
	font-size: 15px;
	color: #f8f8f8;
	line-height: 1.9;
	margin-bottom: 36px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, .05);
	border-left: 3px solid #d4af37;
	border-radius: 8px;
}

/* ======================================
   FORM FIELDS
====================================== */
.dr1015contactform2 .field {
	position: relative;
	margin-bottom: 26px;
}

.dr1015contactform2 input, .dr1015contactform2 textarea,
	.dr1015contactform2 select {
	width: 100%;
	padding: 14px 10px;
	font-size: 14px;
	background: transparent;
	border: none;
	border-bottom: 1.5px solid rgba(212, 175, 55, .35);
	color: #ffffff;
	outline: none;
	transition: .3s;
}

.dr1015contactform2 textarea {
	min-height: 110px;
	resize: vertical;
}

/* Focus */
.dr1015contactform2 input:focus, .dr1015contactform2 textarea:focus,
	.dr1015contactform2 select:focus {
	border-bottom-color: #d4af37;
}

/* Floating labels */
.dr1015contactform2 label {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	color: #cfcfcf;
	pointer-events: none;
	transition: .3s;
}

.dr1015contactform2 textarea+label {
	top: 16px;
	transform: none;
}

.dr1015contactform2 input:focus+label, .dr1015contactform2 input:not(:placeholder-shown)+label,
	.dr1015contactform2 textarea:focus+label, .dr1015contactform2 textarea:not(:placeholder-shown)+label,
	.dr1015contactform2 select:focus+label, .dr1015contactform2 select:not([value=""])+label
	{
	top: -10px;
	font-size: 11px;
	color: #d4af37;
}

/* ======================================
   SELECT + OPTIONS (VISIBILITY FIX)
====================================== */
.dr1015contactform2 select {
	appearance: none;
	cursor: pointer;
	color: #ffffff;
	background-image: linear-gradient(45deg, transparent 50%, #d4af37 50%),
		linear-gradient(135deg, #d4af37 50%, transparent 50%);
	background-position: calc(100% - 18px) 14px, calc(100% - 12px) 14px;
	background-size: 6px 6px;
	background-repeat: no-repeat;
}

/* OPTION FIX */
.dr1015contactform2 select option {
	background-color: #0b0b0b;
	color: #ffffff;
}

.dr1015contactform2 select option:hover, .dr1015contactform2 select option:checked
	{
	background-color: #d4af37;
	color: #1a1a1a;
}

/* ======================================
   GOLD BAR CTA BUTTON
====================================== */
.dr1015contactform2 .submit-btn {
	margin-top: 14px;
	width: 100%;
	padding: 16px;
	border-radius: 50px;
	border: none;
	background: linear-gradient(135deg, #f5d77a, #d4af37, #b8962e);
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .3s;
	box-shadow: 0 22px 44px rgba(0, 0, 0, .75);
}

.dr1015contactform2 .submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 32px 64px rgba(0, 0, 0, .9);
}

/* ======================================
   FORM STATUS
====================================== */
.dr1015contactform2 .form-status {
	margin-top: 18px;
	font-size: 14px;
	color: #ffffff;
}

/* ======================================
   FOOT NOTE
====================================== */
.dr1015contactform2 .contact-note {
	margin-top: 22px;
	font-size: 13px;
	text-align: center;
	color: #e6e6e6;
}

.dr1015contactform2 .contact-note strong {
	color: #f5d77a;
}

.dr1015contactform2 .hp {
	display: none;
}

/* ======================================
   MOBILE
====================================== */
@media ( max-width : 768px) {
	.dr1015contactform2 {
		padding: 70px 16px;
	}
	.dr1015contactform2 .contact-card {
		padding: 40px 26px;
	}
	.dr1015contactform2 .contact-title {
		font-size: 24px;
	}
	.dr1015contactform2 .contact-title+.contact-title {
		font-size: 20px;
	}
}