/* FORMATTING FOR CONTACT PAGE */
.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-label {
    display: inline-block;
    width: 120px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    flex-shrink: 0;
    text-align: left;
}

/* FIXED: missing dot before form-row */
.form-row input,
.form-row textarea {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

form input,
form select,
form textarea {
    margin-top: 5px;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

textarea {
    resize: vertical;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-left: 148px;
    margin-top: 20px;
}

form button {
    display: inline-block;
    padding: 10px 40px;
    background-color: #2d9391;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #2baab1;
}

/* Placeholder styling */
::placeholder {
    color: #999;
    font-style: italic;
    opacity: 1;
}

textarea::placeholder {
    font-size: 13px;
}

/* =========================
   Success / error messages
========================= */
.form-status {
    display: none;
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 4px; /* match your inputs/buttons */
    font-size: 14px;
    line-height: 1.4;
}

.form-status.is-success {
    display: block;
    background: rgba(45, 147, 145, 0.12);
    border: 1px solid rgba(45, 147, 145, 0.35);
    color: #2d9391;
}

.form-status.is-error {
    display: block;
    background: rgba(176, 0, 32, 0.08);
    border: 1px solid rgba(176, 0, 32, 0.25);
    color: #b00020;
}

/* Highlight invalid fields */
.field-error {
    border: 1px solid #b00020 !important;
    box-shadow: 0 0 0 2px rgba(176, 0, 32, 0.15) !important;
    outline: none !important;
}

/* Optional: tidy spacing for reCAPTCHA + button row */
.g-recaptcha {
    margin-top: 10px;
}

/* Your HTML uses .button-row (not .button-container) */
.button-row {
    margin-top: 12px;
}

/* CONTACT DETAILS PAGE ICONS */
.contact ul li {
    list-style-type: none;
    padding-left: 25px;
    position: relative;
}

.contact ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    color: #2baab1;
}

.contact ul li.user-icon::before { content: "\f007"; }
.contact ul li.address-icon::before { content: "\f041"; }
.contact ul li.phone-icon::before { content: "\f095"; }
.contact ul li.email-icon::before { content: "\f0e0"; }
.contact ul li.website-icon::before { content: "\f0ac"; }
.contact ul li.facebook-icon::before { content: "\f39e"; }
.contact ul li.twitter-icon::before { content: "\f099"; }

/* Button spinner */
#submitBtn {
  position: relative;
}

#submitBtn .btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,1);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -2px;
  animation: btnspin 0.8s linear infinite;
}

@keyframes btnspin {
  to { transform: rotate(360deg); }
}