.dr1016contactformhome {
	
}

.physio-contact-section {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #e3f2fd, #ffffff);
	font-family: 'Poppins', sans-serif;
	color: #2a2a2a;
}

.physio-contact-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
	align-items: flex-start;
	justify-content: center;
}

/* Contact Form */
.physio-contact-form {
	flex: 1 1 420px;
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
	border-top: 4px solid #0288d1;
	box-sizing: border-box;
}

.physio-contact-form h2 {
	font-size: 28px;
	text-align: center;
	color: #01579b;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: 600;
	display: block;
	margin-bottom: 6px;
	color: #333;
}

.form-group input, .form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid #b3e5fc;
	border-radius: 8px;
	background: #f9fcff;
	font-size: 15px;
	color: #333;
	transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: #0288d1;
	background-color: #ffffff;
	outline: none;
	box-shadow: 0 0 6px rgba(2, 136, 209, 0.2);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Submit Button */
.submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(to right, #0288d1, #0277bd);
	color: #fff;
	border: none;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(2, 136, 209, 0.3);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
	background: linear-gradient(to right, #0277bd, #0288d1);
	transform: translateY(-1px);
}

.submit-btn:active {
	transform: scale(0.98);
}

/* Contact Info Box */
.physio-contact-info {
	flex: 1 1 300px;
	background: #f1f8ff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(33, 150, 243, 0.1);
	border-left: 4px solid #039be5;
	box-sizing: border-box;
}

.physio-contact-info h3 {
	font-size: 22px;
	color: #0277bd;
	margin-bottom: 18px;
	border-bottom: 2px solid #81d4fa;
	padding-bottom: 6px;
}

.physio-contact-info p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 12px;
}

.physio-contact-info a {
	color: #0288d1;
	text-decoration: none;
	border-bottom: 1px dashed #0288d1;
}

.physio-contact-info a:hover {
	color: #01579b;
	border-bottom: 1px solid #01579b;
}

/* Mobile Responsive Fix */
@media ( max-width : 768px) {
	.physio-contact-flex {
		flex-direction: column;
		padding: 0 10px;
		gap: 24px;
	}
	.physio-contact-form, .physio-contact-info {
		width: 100%;
		padding: 20px;
	}
	.physio-contact-form h2 {
		font-size: 22px;
	}
	.submit-btn {
		font-size: 15px;
		padding: 12px;
	}
	.form-group input, .form-group textarea {
		font-size: 14px;
		padding: 12px;
	}
}