/* Styles extracted from contact.php inline <style> (static blocks). */
.contact-page { padding: 40px 0 64px; background: #f7f8fb; }
      .contact-page__hero { text-align: center; max-width: 720px; margin: 0 auto 36px; }
      .contact-page__hero h1 { font-size: 32px; font-weight: 700; color: #07234e; margin: 0 0 10px; }
      .contact-page__hero p { font-size: 15px; color: #555; line-height: 1.6; margin: 0; }

      .contact-info-grid { display: grid; gap: 14px; }
      .contact-info-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: #fff; border: 1px solid var(--border-color); border-radius: 10px; transition: box-shadow .2s ease, transform .15s ease, border-color .2s ease; }
      .contact-info-card:hover { box-shadow: 0 4px 14px rgba(3,8,34,.08); transform: translateY(-1px); border-color: rgba(3,8,34,.15); }
      .contact-info-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; background: rgba(3,8,34,.08); color: #07234e; border-radius: 10px; font-size: 18px; }
      .contact-info-card h5 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: #07234e; text-transform: uppercase; letter-spacing: .3px; }
      .contact-info-card p { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }
      .contact-info-card a { color: #555; text-decoration: none; }
      .contact-info-card a:hover { color: var(--main-color); }

      .contact-form-card { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 28px; box-shadow: 0 2px 8px rgba(3,8,34,.04); }
      .contact-form-card h2 { font-size: 22px; font-weight: 700; color: #07234e; margin: 0 0 20px; }
      .contact-form-card .form-control { border: 1px solid #e0e0e0; border-radius: 8px; padding: 11px 14px; font-size: 14px; background: #f7f8fb; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
      .contact-form-card .form-control:focus { border-color: var(--main-color); box-shadow: 0 0 0 3px rgba(201, 15, 83,.14); background: #fff; outline: none; }
      .contact-form-card textarea.form-control { resize: vertical; min-height: 120px; }

      .contact-form__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
      .contact-form-card .main_btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 8px; border: 0; font-size: 14px; font-weight: 600; cursor: pointer; transition: background-color .2s ease, transform .15s ease; color: #fff; background-color: var(--main-color); width: auto; box-shadow: none; }
      .contact-form-card .main_btn:hover { background-color: var(--main-dark); }
      .contact-form-card .main_btn:disabled { opacity: .6; cursor: not-allowed; }

      .contact-form__msg { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 14px; display: none; }
      .contact-form__msg.is-success { display: block; background: #e8f8ee; color: #1a7a3a; border: 1px solid #b6e0c4; }
      .contact-form__msg.is-error { display: block; background: #fdecea; color: #b3241c; border: 1px solid #f5c2bd; }

      @media only screen and (min-width: 320px) and (max-width: 539px),
             only screen and (min-width: 540px) and (max-width: 767px) {
        .contact-page { padding: 24px 0 48px; }
        .contact-page__hero h1 { font-size: 26px; }
        .contact-form-card { padding: 20px; }
      }

