
  /* ================= CONTACT PAGE ================= */

  .contact-hero {
    padding: 80px 0 40px;
    background: #f8f8f8;
  }

  

  /* .hero-title {
    font-size: 42px;
    margin: 10px 0;
    color: #111;
  } */

  .hero-desc {
    color: #888;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .contact-info-section {
    padding: 50px 0;
  }

  .contact-info-box {
    height: 100%;
    padding: 28px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
  }

  .contact-info-box:hover {
    border-color: #c8a96a;
    transform: translateY(-3px);
  }

  .contact-info-box i {
    font-size: 22px;
    margin-bottom: 12px;
    color: #c8a96a;
  }

  .contact-info-box h5 {
    margin-bottom: 12px;
    color: #111;
  }

  .contact-info-box p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .contact-form-wrapper {
    padding: 55px 0 80px;
    border-top: 1px solid #eee;
    background: #fff;
  }

  .contact-form-box {
    background: #fff;
    padding: 38px;
    border: 1px solid #eee;
  }

  .contact-form-title {
    margin-bottom: 6px;
    color: #111;
  }

  .contact-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
  }

  .premium-input {
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: 14px;
    color: #111;
    background: #fff;
    transition: all 0.3s ease;
  }

  .premium-input::placeholder {
    color: #aaa;
  }

  .premium-input:focus {
    border-color: #c8a96a;
    box-shadow: none;
    outline: none;
  }

  .premium-input.is-invalid {
    border-color: #dc3545;
  }

  .invalid-feedback {
    display: block;
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
  }

  .contact-submit-btn {
    width: 100%;
    background: #c8a96a;
    color: #000;
    padding: 14px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .contact-submit-btn:hover {
    background: #b89655;
    transform: translateY(-1px);
  }

  .contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }

  .char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: #888;
    pointer-events: none;
  }

  .honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .contact-alert {
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 0;
  }

  .contact-alert-success {
    background: #eef8f0;
    color: #176b2c;
    border: 1px solid #bde5c6;
  }

  .contact-alert-error {
    background: #fff1f1;
    color: #9d1c1c;
    border: 1px solid #f0b7b7;
  }

  @media (max-width: 767px) {
    .hero-title {
      font-size: 34px;
    }

    .contact-form-box {
      padding: 26px 20px;
    }
  }
