.dr1030contactformhome {
	background: linear-gradient(to bottom, #FFFDF7, #FFF8E1);
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	background-image:
		url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

.creative-contact-section {
	padding: 70px 20px;
	color: #4A2C13;
}

.creative-contact-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
	justify-content: center;
}

.creative-contact-form {
	flex: 1 1 420px;
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.1);
	border-top: 5px solid #C6902E;
}

.creative-contact-form h2 {
	font-size: 26px;
	text-align: center;
	color: #8B5E3C;
	margin-bottom: 8px;
	font-weight: 700;
}

.telugu-sub {
	text-align: center;
	font-size: 15px;
	color: #B8860B;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: bold;
	margin-bottom: 6px;
	display: block;
	color: #5D4037;
}

.form-group input, .form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1.5px solid #dbc49a;
	border-radius: 10px;
	background: #FFFDF5;
	font-size: 15px;
	color: #4E342E;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: #D4AF37;
	background: #ffffff;
	outline: none;
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(to right, #D4AF37, #A67C00);
	color: #fff;
	border: none;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(212, 175, 55, 0.3);
	cursor: pointer;
	transition: 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(to right, #A67C00, #D4AF37);
}

.creative-contact-info {
	flex: 1 1 300px;
	background: #FFF8E1;
	padding: 30px;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	border-left: 5px solid #D4AF37;
}

.creative-contact-info h3 {
	font-size: 22px;
	color: #8B5E3C;
	margin-bottom: 16px;
	border-bottom: 2px solid #D4AF37;
	padding-bottom: 6px;
}

.creative-contact-info p, .creative-contact-info a {
	font-size: 15px;
	line-height: 1.6;
	color: #4E342E;
	text-decoration: none;
}

.creative-contact-info a:hover {
	text-decoration: underline;
	color: #B8860B;
}

@media screen and (max-width: 768px) {
	.creative-contact-form, .creative-contact-info {
		flex: 1 1 100%;
		padding: 20px;
	}
}