.dr1031contactformhome {
	background: linear-gradient(to bottom, #1B100A, #2F1E12);
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	background-image:
		url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
	color: #F8E7BE;
}

.creative-contact-section {
	padding: 70px 20px;
	color: #EFD9A4;
}

.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: #2D1B10;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 12px 28px rgba(255, 215, 0, 0.07);
	border-top: 5px solid #FFD700;
}

.creative-contact-form h2 {
	font-size: 26px;
	text-align: center;
	color: #FFD700;
	margin-bottom: 8px;
	font-weight: 700;
}

.telugu-sub {
	text-align: center;
	font-size: 15px;
	color: #D4AF37;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: bold;
	margin-bottom: 6px;
	display: block;
	color: #F9E3A3;
}

.form-group input, .form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1.5px solid #A67C00;
	border-radius: 10px;
	background: #1F130C;
	font-size: 15px;
	color: #F5DEB3;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: #FFD700;
	background: #2B1A0C;
	outline: none;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
}

.submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(to right, #FFD700, #B8860B);
	color: #1B100A;
	border: none;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(255, 215, 0, 0.2);
	cursor: pointer;
	transition: 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(to right, #B8860B, #FFD700);
}

.creative-contact-info {
	flex: 1 1 300px;
	background: #25170F;
	padding: 30px;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.06);
	border-left: 5px solid #FFD700;
}

.creative-contact-info h3 {
	font-size: 22px;
	color: #FFD700;
	margin-bottom: 16px;
	border-bottom: 2px solid #FFD700;
	padding-bottom: 6px;
}

.creative-contact-info p, .creative-contact-info a {
	font-size: 15px;
	line-height: 1.6;
	color: #F5DEB3;
	text-decoration: none;
}

.creative-contact-info a:hover {
	text-decoration: underline;
	color: #FFDF00;
}

@media screen and (max-width: 768px) {
	.creative-contact-form, .creative-contact-info {
		flex: 1 1 100%;
		padding: 20px;
	}
}