/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 22 2026 | 00:47:33 */
/* ==================================================
   BLKFOG CONTACT (LOCKED — SYSTEM LEVEL)
================================================== */

.blkfog-contact {
  padding: 6rem 20px 8rem;
}

.blkfog-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
}

/* LEFT */

.blkfog-contact-left h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--bf-black);
}

.blkfog-contact-intro {
  margin-bottom: 40px;
  line-height: 1.6;
  color: var(--bf-body);
}

.blkfog-contact-emails {
  display: flex;
  gap: 60px;
}

.bf-small {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--bf-muted);
}

/* ==================================================
   FORM
================================================== */

.blkfog-contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ROW */

.form-row {
  display: flex;
  gap: 40px;
  flex-direction: column;
}

/* FIELD */

.form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* LABEL */

.form-field label {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--bf-black);
}

/* INPUTS */

.form-field input,
.form-field textarea {
  border: none;
  border-bottom: 1px solid var(--bf-border);
  padding: 8px 0;
  font-size: 15px;
  background: transparent;
  color: var(--bf-black);
  transition: border-color 0.25s ease, transform 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--bf-muted);
}

/* FOCUS */

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--bf-black);
  transform: translateY(-1px);
}

/* ==================================================
   BUTTON (UNIFIED SYSTEM)
================================================== */

.bf-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

/* Loading state */

.bf-submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Clean transition only */

.bf-submit-btn .btn-text {
  transition: opacity 0.2s ease;
}

.bf-submit-btn.is-loading .btn-text {
  opacity: 0.65;
}

/* ==================================================
   FIELD ERRORS
================================================== */

.field-error {
  font-size: 11px;
  margin-top: 6px;
  letter-spacing: 0.5px;
  color: var(--bf-black);
  opacity: 0;
  transform: translateY(-4px);
  animation: blfErrorFade 0.25s ease forwards;
}

@keyframes blfErrorFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-border {
  border-bottom: 1px solid var(--bf-black) !important;
}

/* ==================================================
   RESPONSE SYSTEM
================================================== */

.blkfog-form-response {
  margin-top: 16px;
}

/* SUCCESS */

.blkfog-form-success {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bf-black);
  position: relative;
  padding-left: 12px;
  opacity: 0;
  transform: translateY(10px);
}

/* Indicator */

.blkfog-form-success::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: 16px;
  background: var(--bf-black);
}

/* Secondary line */

.blkfog-form-success span {
  display: block;
  margin-top: 4px;
  color: var(--bf-muted);
}

/* ==================================================
   ERROR MESSAGE
================================================== */

.blkfog-contact-message {
  font-size: 14px;
  color: var(--bf-black);
  border-left: 2px solid var(--bf-black);
  padding-left: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: blkfogFadeIn 0.3s ease forwards;
}

.blkfog-contact-message.error {
  opacity: 0.85;
}

/* ==================================================
   ANIMATION SYSTEM (TIGHTENED)
================================================== */

/* Form exit */

.blkfog-contact-form.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

/* Fade in (shared system) */

.fade-in {
  animation: blkfogFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes blkfogFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 768px) {

  .blkfog-contact-inner {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .form-field {
    flex: 1;
  }

}


/* =========================================
   BLKFOG CONTACT — MOBILE REFINEMENT (REAL FIX)
========================================= */

@media (max-width: 768px) {

  /* MAIN WRAP */
  .blkfog-contact-inner {
    display: flex !important;
    flex-direction: column !important;
    
  }
.blkfog-contact {
    padding: 0 0 0;
}
  /* -------------------------
     TOP SECTION (LEFT)
  ------------------------- */

  .blkfog-contact-left {
    margin-bottom: 32px !important;
  }

  .blkfog-contact-left h1 {
    font-size: 30px !important;
    margin-bottom: 12px !important;
  }

  .blkfog-contact-left .bf-lead {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  /* EMAIL GRID → STACK CLEAN */
  .blkfog-contact-emails {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .blkfog-contact-emails div {
    margin: 0 !important;
  }

  /* -------------------------
     FORM
  ------------------------- */

  .blkfog-contact-right {
    width: 100% !important;
  }

  .form-row {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .form-field {
    margin-bottom: 16px !important;
  }

  /* LABELS */
  .blkfog-contact-form label {
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 6px !important;
    display: block;
    opacity: 0.7;
  }

  /* INPUTS — THIS IS THE BIG FIX */
  .blkfog-contact-form input,
  .blkfog-contact-form textarea {

    width: 100% !important;

    padding: 16px 14px !important;   /* ← increased */
    font-size: 15px !important;

    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.2) !important;

    background: transparent !important;

  }

  /* TEXTAREA HEIGHT */
  .blkfog-contact-form textarea {
    min-height: 140px !important;
  }

  /* BUTTON */
  .blkfog-button {
    width: 100% !important;
    margin-top: 14px !important;
  }

}