
/*   */









/*------------contact form--------*/

.web_form {
  max-width: 720px;
  margin: 0 auto;
}

/* ===== ROW / COLUMN SYSTEM ===== */
.web_form{
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.web_form .row {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.web_form .col {
  width: 100%;
}



/* ===== LABEL ===== */
.web_form label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 6px;
}

/* ===== INPUT / SELECT / TEXTAREA ===== */
.web_form input[type="text"],
.web_form input[type="tel"],
.web_form input[type="email"],
.web_form select,
.web_form textarea {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #C0C0C0;
  border-radius: 2px;
  padding: 16px;
  background: #ffffff;
  transition: all 0.25s ease;
  outline: none;
  color: #000000;
  font-family: "Familjen Grotesk", Sans-serif;
}


/* Placeholder */
.web_form input::placeholder,
.web_form textarea::placeholder {
  color: #595959;
}

/* ===== FOCUS STATE (premium glow) ===== */
.web_form input:focus,
.web_form select:focus,
.web_form textarea:focus {
  border-color: #D7C8B6;
  box-shadow: 0 0 0 4px rgba(215, 200, 182, 0.08);
}

/* ===== SELECT CUSTOM ARROW ===== */
.web_form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

/* ===== TEXTAREA ===== */
.web_form textarea {
  resize: none;
  min-height: 140px;
}

/* ===== SUBMIT BUTTON ===== */
.web_form input[type="submit"], .web_form .wpcf7-submit {
    background: #D7C8B6;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "Familjen Grotesk", Sans-serif;
}
.web_form input[type="submit"]:hover, 
.web_form .wpcf7-submit:hover {
    background: #000000;
    color: #ffffff;

}


/* ===== CF7 ERROR ===== */
.web_form .wpcf7-not-valid {
  border-color: #ef4444 !important;
}

.web_form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}

.web_form .row p br {
  display: none;
}

.web_form .row .col > p {
    margin-bottom: 0;
    margin-top: 0;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

span.wpcf7-not-valid-tip {
  display: none;
}

div.wpcf7-response-output {
  float: none !important;
  background: #fed4d5;
  color: #c9380b;
  font-size: 14px;
  margin: 0 auto !important;
  border: 1px solid #d88e9d !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  background-color: #dbfdcc !important;
  border: 1px solid #a5ec86 !important;
  width: 106%;
  float: none !important;
  margin: 0 auto !important;
  clear: both;
  color: #418723;
}
