/* ======================================
   DENTAL CLINIC CONTACT SECTION
====================================== */
.dr1019contactform2 {
	padding: 80px 20px;
	background: linear-gradient(180deg, #f8fafc, #eef2f7);
	font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* ======================================
   CONTACT CARD — CLINIC STYLE
====================================== */
.dr1019contactform2 .contact-card {
	max-width: 480px;
	margin: auto;
	background: #ffffff;
	padding: 44px 36px;
	border-radius: 16px;
	position: relative;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e7eb;
}

/* Soft medical accent border */
.dr1019contactform2 .contact-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 18px;
	background: linear-gradient(120deg, #0ea5e9, #14b8a6, #0ea5e9);
	opacity: 0.12;
	z-index: -1;
}

/* ======================================
   TITLES
====================================== */
.dr1019contactform2 .contact-title {
	font-size: 26px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.dr1019contactform2 .contact-subtitle {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 28px;
}

/* ======================================
   FORM FIELDS
====================================== */
.dr1019contactform2 .field {
	position: relative;
	margin-bottom: 20px;
}

.dr1019contactform2 input, .dr1019contactform2 textarea,
	.dr1019contactform2 select {
	width: 100%;
	padding: 14px;
	font-size: 14px;
	border-radius: 10px;
	border: 1.5px solid #cbd5e1;
	background: #ffffff;
	color: #0f172a;
	outline: none;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.dr1019contactform2 textarea {
	min-height: 110px;
	resize: vertical;
}

.dr1019contactform2 input::placeholder, .dr1019contactform2 textarea::placeholder
	{
	color: transparent;
}

/* Focus state — medical blue */
.dr1019contactform2 input:focus, .dr1019contactform2 textarea:focus,
	.dr1019contactform2 select:focus {
	border-color: #0ea5e9;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, .18);
}

/* ======================================
   FLOATING LABELS
====================================== */
.dr1019contactform2 label {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: #ffffff;
	padding: 0 6px;
	font-size: 13px;
	color: #64748b;
	pointer-events: none;
	transition: .25s ease;
}

.dr1019contactform2 textarea+label {
	top: 16px;
	transform: none;
}

.dr1019contactform2 input:focus+label, .dr1019contactform2 input:not(:placeholder-shown)+label,
	.dr1019contactform2 textarea:focus+label, .dr1019contactform2 textarea:not(:placeholder-shown)+label,
	.dr1019contactform2 select:focus+label, .dr1019contactform2 select:not([value=""])+label
	{
	top: -8px;
	font-size: 11px;
	color: #0ea5e9;
}

/* ======================================
   SELECT DROPDOWN
====================================== */
.dr1019contactform2 select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #0ea5e9 50%),
		linear-gradient(135deg, #0ea5e9 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 — CLINIC PRIMARY
====================================== */
.dr1019contactform2 .submit-btn {
	width: 100%;
	padding: 15px;
	border-radius: 12px;
	border: none;
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 10px 25px rgba(14, 165, 233, .35);
}

.dr1019contactform2 .submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(14, 165, 233, .45);
}

/* ======================================
   STATUS MESSAGE
====================================== */
.dr1019contactform2 .form-status {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #cbd5e1;
	background: #f8fafc;
	color: #0f172a;
}

/* Error */
.dr1019contactform2 .form-status[style*="dc2626"] {
	border-color: #fecaca;
	color: #991b1b;
	background: #fff1f2;
}

/* Success */
.dr1019contactform2 .form-status[style*="16a34a"] {
	border-color: #bbf7d0;
	color: #166534;
	background: #f0fdf4;
}

/* ======================================
   FOOT NOTE
====================================== */
.dr1019contactform2 .contact-note {
	margin-top: 16px;
	font-size: 13px;
	text-align: center;
	color: #475569;
}

.dr1019contactform2 .hp {
	display: none;
}

/* ======================================
   MOBILE OPTIMIZATION
====================================== */
@media ( max-width : 768px) {
	.dr1019contactform2 {
		padding: 60px 16px;
	}
	.dr1019contactform2 .contact-card {
		padding: 34px 24px;
	}
}