/* ======================================
   PRAKRUTI MODERN PREMIUM CONTACT FORM
====================================== */
.dr1056contactform2 {
  position: relative;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 15% 10%, rgba(16,185,129,0.08), transparent 30%),
    linear-gradient(180deg, #020617 0%, #050b18 45%, #01030a 100%);
  font-family: 'Inter', sans-serif;
}

/* ======================================
   CARD
====================================== */
.dr1056contactform2 .contact-card {
  max-width: 560px;
  margin: auto;
  padding: 55px 40px;
  border-radius: 20px;

  background: rgba(10, 15, 25, 0.95);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 40px 100px rgba(0,0,0,0.8);

  backdrop-filter: blur(12px);
  animation: fadeUp .8s ease both;
}

/* ======================================
   TAG
====================================== */
.dr1056contactform2 .contact-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 50px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #10b981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
}

/* ======================================
   TITLES
====================================== */
.dr1056contactform2 .contact-title {
  font-size: 16px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 6px;
}

.dr1056contactform2 .contact-subtitle-main {
  font-size: 34px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.dr1056contactform2 .contact-subtitle {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ======================================
   FORM
====================================== */
.dr1056contactform2 .field {
  position: relative;
  margin-bottom: 20px;
}

.dr1056contactform2 input,
.dr1056contactform2 textarea,
.dr1056contactform2 select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;

  background: #020617;
  border: 1px solid #1e293b;

  color: #e2e8f0;
  font-size: 14px;

  transition: all .25s ease;
}

.dr1056contactform2 textarea {
  min-height: 120px;
}

/* HOVER */
.dr1056contactform2 input:hover,
.dr1056contactform2 textarea:hover,
.dr1056contactform2 select:hover {
  border-color: #334155;
}

/* FOCUS */
.dr1056contactform2 input:focus,
.dr1056contactform2 textarea:focus,
.dr1056contactform2 select:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

/* FLOAT LABEL */
.dr1056contactform2 label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #020617;
  padding: 0 6px;
  font-size: 13px;
  color: #64748b;
  transition: .25s;
}

.dr1056contactform2 textarea + label {
  top: 14px;
  transform: none;
}

.dr1056contactform2 input:focus + label,
.dr1056contactform2 input:not(:placeholder-shown) + label,
.dr1056contactform2 textarea:focus + label,
.dr1056contactform2 textarea:not(:placeholder-shown) + label,
.dr1056contactform2 select:focus + label,
.dr1056contactform2 select:valid + label {
  top: -8px;
  font-size: 11px;
  color: #10b981;
}

/* SELECT */
.dr1056contactform2 select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #10b981 50%),
    linear-gradient(135deg, #10b981 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* ======================================
   BUTTON
====================================== */
.dr1056contactform2 .submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;

  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
  transition: all .25s ease;

  box-shadow: 0 10px 30px rgba(16,185,129,0.3);
}

.dr1056contactform2 .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(16,185,129,0.5);
}

/* ======================================
   STATUS
====================================== */
.dr1056contactform2 .form-status {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
}

/* ======================================
   NOTE
====================================== */
.dr1056contactform2 .contact-note {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: #94a3b8;
}

.dr1056contactform2 .contact-note strong {
  color: #e2e8f0;
}

/* ======================================
   ANIMATION
====================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================
   MOBILE
====================================== */
@media (max-width: 768px) {
  .dr1056contactform2 {
    padding: 70px 16px;
  }

  .dr1056contactform2 .contact-card {
    padding: 35px 22px;
  }

  .dr1056contactform2 .contact-subtitle-main {
    font-size: 26px;
  }
}