@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
}

/* section2 */
.contact-section2 {
    width: 100%;
    background: linear-gradient(rgba(9, 58, 99, 0.8), rgba(96, 24, 12, 0.8)),
        url('../images/contact-back-img.png') center center/cover no-repeat;
    opacity: 1;
    color: #fff;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* section 3 */

.contact-section3 {
    background: linear-gradient(135deg, #f8e0d4, #E1744699);
    text-align: center;
    padding: 80px 0;
    color: black;
}



.contact-section3 h2 {
    font-family: "Space Mono", monospace !important;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-section3 p.lead {
    font-family: "Poppins", sans-serif;
    max-width: 500px;
    margin: 0 auto 50px;
    font-size: 13px;
}

/* section 3 form */
.contact-form {
    background: #fff1eb;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.contact-form h2 {
    font-family: "Space Mono", monospace !important;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.form-input {
    background-color: #f7f6f6;
    border: none;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.selecter {
    background-color: #f7f6f6;
    border: none;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.btn-submit {
    background-color: #E17446;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c85a2f;
}

/*---------------------------------------------------------------------*/
h2.gform_title {
    display: none;
}
/* Form wrapper (form ID = 3) */
/*#gform_wrapper_3 {
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}*/

/* Inputs / selects / textarea */
#gform_wrapper_3 .gfield input[type="text"],
#gform_wrapper_3 .gfield input[type="email"],
#gform_wrapper_3 .gfield input[type="number"],
#gform_wrapper_3 .gfield input[type="tel"],
#gform_wrapper_3 .gfield select {
  background-color: #f7f6f6;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

#gform_wrapper_3 .gfield textarea{
  background-color: #f7f6f6;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
  height: 8rem;

}


/* Labels */
#gform_wrapper_3 .gfield_label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* Submit button (strong selector for GF) */
#gform_submit_button_3 {
    background-color: #E17446 !important;
    color: #fff !important;
    width: 100% !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    padding: 10px 0 !important;
    border: none;
    transition: all 0.3s ease !important;
}

/* Submit hover */
#gform_submit_button_3:hover {
     background-color: #c85a2f !important;

}

/* If theme overrides .gform_button use this */
/*#gform_wrapper_3 .gform_footer .gform_button,
#gform_wrapper_3 .gform_footer input[type="submit"] {
  background: #0b7dd1 !important;
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 8px !important;
  border: 0 !important;
}*/


/*---------------------------------------------------------------------*/


/* section 4 */

.contact-section4 {
    background-color: #220111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 80px 20px;
    text-align: center;
}

.contact-title {
    font-family: "Space Mono", monospace !important;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.contact-card {
    background-color: #00243c;
    border-radius: 10px;
    border: 1px solid #d35400;
    padding: 30px 20px;
    color: #fff;
    transition: 0.3s ease;
}
.contact-card img{
    width: 40px;
    margin-bottom: 15px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}



.contact-label {
    font-family: "Space Mono", monospace !important;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-info {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
}

