/* ======================================
   INTERIOR DESIGN CONTACT SECTION — DARK
====================================== */
.dr1048contactform2 {
	padding: 90px 20px;
	background: linear-gradient(180deg, #0a0a0c, #121216);
	font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* ======================================
   CONTACT CARD — DARK INTERIOR STYLE
====================================== */
.dr1048contactform2 .contact-card {
	max-width: 480px;
	margin: auto;
	background: #1c1c22;
	padding: 48px 40px;
	border-radius: 18px;
	position: relative;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
	border: 1px solid #3a3a3f;
}

/* Subtle gold border glow */
.dr1048contactform2 .contact-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 20px;
	background: linear-gradient(120deg, #3e2f1b, #1c1c22, #3e2f1b);
	opacity: 0.4;
	z-index: -1;
}

/* ======================================
   TITLES
====================================== */
.dr1048contactform2 .contact-title {
	font-size: 28px;
	font-weight: 700;
	color: #f5e8c7; /* Soft gold */
	margin-bottom: 8px;
	letter-spacing: .3px;
}

.dr1048contactform2 .contact-subtitle {
	font-size: 15px;
	color: #cfc7b5; /* muted light */
	line-height: 1.7;
	margin-bottom: 32px;
}

/* ======================================
   FORM FIELDS
====================================== */
.dr1048contactform2 .field {
	position: relative;
	margin-bottom: 22px;
}

.dr1048contactform2 input, .dr1048contactform2 textarea,
	.dr1048contactform2 select {
	width: 100%;
	padding: 14px;
	font-size: 14px;
	border-radius: 10px;
	border: 1.5px solid #3a3a3f;
	background: #121216;
	color: #f5e8c7;
	outline: none;
	transition: .25s;
}

.dr1048contactform2 textarea {
	min-height: 120px;
	resize: vertical;
}

.dr1048contactform2 input::placeholder, .dr1048contactform2 textarea::placeholder
	{
	color: transparent;
}

/* Focus */
.dr1048contactform2 input:focus, .dr1048contactform2 textarea:focus,
	.dr1048contactform2 select:focus {
	border-color: #d4af37; /* soft gold accent */
	box-shadow: 0 0 0 3px rgba(212, 175, 55, .25);
}

/* Floating labels */
.dr1048contactform2 label {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: #121216;
	padding: 0 6px;
	font-size: 13px;
	color: #aaa18f; /* soft gray */
	pointer-events: none;
	transition: .25s;
}

.dr1048contactform2 textarea+label {
	top: 16px;
	transform: none;
}

.dr1048contactform2 input:focus+label, .dr1048contactform2 input:not(:placeholder-shown)+label,
	.dr1048contactform2 textarea:focus+label, .dr1048contactform2 textarea:not(:placeholder-shown)+label,
	.dr1048contactform2 select:focus+label, .dr1048contactform2 select:not([value=""])+label
	{
	top: -8px;
	font-size: 11px;
	color: #d4af37;
}

/* Select arrow */
.dr1048contactform2 select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #d4af37 50%),
		linear-gradient(135deg, #d4af37 50%, transparent 50%);
	background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
	background-size: 6px 6px;
	background-repeat: no-repeat;
	cursor: pointer;
}

/* ======================================
   CTA BUTTON — DARK INTERIOR
====================================== */
.dr1048contactform2 .submit-btn {
	width: 100%;
	padding: 15px;
	border-radius: 12px;
	border: none;
	background: linear-gradient(135deg, #d4af37, #b8962e);
	color: #121216;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .4px;
	cursor: pointer;
	transition: .3s;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .4);
}

.dr1048contactform2 .submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 45px rgba(0, 0, 0, .6);
}

/* ======================================
   STATUS MESSAGE
====================================== */
.dr1048contactform2 .form-status {
	margin-top: 18px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #3a3a3f;
	background: #121216;
	color: #f5e8c7;
}

.dr1048contactform2 .form-status[style*="dc2626"] {
	border-color: #9b2c2c;
	color: #fca5a5;
}

.dr1048contactform2 .form-status[style*="16a34a"] {
	border-color: #166534;
	color: #86efac;
}

/* ======================================
   FOOT NOTE
====================================== */
.dr1048contactform2 .contact-note {
	margin-top: 18px;
	font-size: 13px;
	text-align: center;
	color: #cfc7b5;
}

.dr1048contactform2 .hp {
	display: none;
}

/* ======================================
   MOBILE OPTIMIZATION
====================================== */
@media ( max-width : 768px) {
	.dr1048contactform2 {
		padding: 70px 16px;
	}
	.dr1048contactform2 .contact-card {
		padding: 36px 26px;
	}
}