/* start header form css area */ 
#openQuoteForm {
 /* margin: 40px auto; */
  display: block;
 /* padding: 12px 30px; */
  font-size: 18px;
  background-color: #6a0525;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

#openQuoteForm:hover {
  transform: scale(1.05);
  background-color: #6a0525;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background: #fff8f0;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.center {
  text-align: center;
}

.submit-btn {
  padding: 12px 25px;
  background: #93330e;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease-in-out;
}

.submit-btn:hover {
  background: #cc3300;
  transform: scale(1.03);
}

/* Responsive */
@media screen and (max-width: 600px) {
  .popup {
    width: 95%;
    padding: 20px;
  }
  #openQuoteForm {
  background-color: #fff; }
}
/* end header form css area */ 

/* Start home center form css area */ 
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
}

.contact-container {
 /* background-color: #ffffff99; */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 1200px;
  width: 100%;
}

.contact-heading {
  text-align: center;
  margin-bottom: 25px;
  color: #540101;
  font-size: 28px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0px;
  border: 1px solid #540101;
  border-radius: 6px;
  font-size: 15px;
  background-color: #fffdf8;
  outline: none;
  transition: border-color 0.3s;
  text-indent: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ad8a4f;
}

.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: #540101;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-container {
    padding: 25px;
  }

  .contact-heading {
    font-size: 22px;
  }
}

/* End center form css area */ 