.dr1043contactformhome {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa, #ffffff);
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  color: #1b3a4b;
  background-image: url('https://www.transparenttextures.com/patterns/soft-wallpaper.png');
  border-radius: 20px;
}

.creative-contact-section {
  padding: 80px 20px;
}

.creative-contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: center;
}

/* FORM BOX */
.creative-contact-form {
  flex: 1 1 420px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border-top: 6px solid #0d9488;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
  transition: transform 0.3s ease;
}
.creative-contact-form:hover { transform: translateY(-4px); }

.creative-contact-form h2 {
  font-size: 26px;
  text-align: center;
  color: #0d9488;
  margin-bottom: 8px;
  font-weight: 700;
}
.telugu-sub {
  text-align: center;
  font-size: 15px;
  color: #f97316;
  margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #334155;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1.5px solid #99f6e4;
  border-radius: 10px;
  background: #f9fafb;
  font-size: 15px;
  color: #222;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 8px rgba(13, 148, 136, 0.3);
  outline: none;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, #0d9488, #f97316);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #f97316, #0d9488);
}

/* CONTACT INFO BOX */
.creative-contact-info {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  border-left: 6px solid #0d9488;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.15);
  transition: transform 0.3s ease;
}
.creative-contact-info:hover { transform: translateY(-4px); }

.creative-contact-info h3 {
  font-size: 22px;
  color: #0d9488;
  margin-bottom: 16px;
  border-bottom: 2px solid #f97316;
  padding-bottom: 6px;
}
.creative-contact-info p,
.creative-contact-info a {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
}
.creative-contact-info a:hover { color: #0d9488; text-decoration: underline; }

.map-link {
  display: inline-block;
  margin: 10px 0;
  background: #0d9488;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.map-link:hover { background: #f97316; transform: scale(1.05); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .creative-contact-form, .creative-contact-info {
    flex: 1 1 100%;
    padding: 25px;
  }
  .creative-contact-form h2 { font-size: 22px; }
}

/* FADE ANIMATION */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}