/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.0
*/


/* =Theme customization starts here
------------------------------------------------------- */

p {}/* === Contact Form 7 Modern Chic Elegant === */
.wpcf7-form {
  /* max-width: 600px; */
  margin: 0 auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* Labels */
.wpcf7-form label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

/* Inputs & Textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ffbb04;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

/* Hover & Focus */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #a67c00; /* elegant gold */
  background: #fff;
  outline: none;
  box-shadow: 0 0 6px rgba(166, 124, 0, 0.2);
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
  background: #ffbb04;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  /* background: linear-gradient(135deg, #ffbb00, #a67c00); */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Response message */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
}


