/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
  background: #f3efec;
  padding: 80px 20px;
  min-height: calc(100vh - 140px);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section h2,
.services-info-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-intro,
.services-intro {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #9b1c1f;
  box-shadow: 0 0 0 3px rgba(155, 28, 31, 0.1);
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Security Notice */
.security-notice {
  background: #fff8dc;
  border-left: 4px solid #f0ad4e;
  padding: 15px 20px;
  margin: 25px 0;
  border-radius: 4px;
}

.security-notice p {
  font-size: 13px;
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

.security-notice strong {
  font-weight: 600;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: #9b1c1f;
  color: #ffffff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background: #7a1518;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 28, 31, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Services Info Section */
.services-info-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.find-services-btn {
  display: inline-block;
  background: #9b1c1f;
  color: #ffffff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.find-services-btn:hover {
  background: #7a1518;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 28, 31, 0.3);
}


/* Textarea Styling */
.form-group textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical; /* user sirf height change kar sake */
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Focus state (same as input) */
.form-group textarea:focus {
  outline: none;
  border-color: #9b1c1f;
  box-shadow: 0 0 0 3px rgba(155, 28, 31, 0.1);
}

/* Placeholder styling */
.form-group textarea::placeholder {
  color: #999;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .form-group textarea {
    font-size: 14px;
    padding: 10px 14px;
    min-height: 100px;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-info-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 60px 20px;
  }

  .contact-form-section h2,
  .services-info-section h2 {
    font-size: 26px;
  }

  .contact-intro,
  .services-intro {
    font-size: 15px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .name-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .services-info-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 140px 15px;
  }

  .contact-form-section h2,
  .services-info-section h2 {
    font-size: 22px;
  }

  .contact-intro,
  .services-intro {
    font-size: 14px;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group select {
    padding: 10px 14px;
    font-size: 14px;
  }

  .security-notice {
    padding: 12px 15px;
  }

  .security-notice p {
    font-size: 12px;
  }

  .submit-btn,
  .find-services-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .services-info-section {
    padding: 25px 15px;
  }
}
