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

  .contact-page {
    padding: 110px 0;
    background: var(--bg);
  }
  @media (max-width: 768px) { .contact-page { padding: 70px 0; } }

  .contact-layout {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px;
    align-items: flex-start;
  }
  @media (max-width: 960px) {
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  }

  .contact-hero h1 {
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.08;
    margin: 12px 0 18px;
  }
  .contact-hero h1 .accent {
    color: var(--brand);
  }
  .contact-hero > p {
    font-size: 17px; color: var(--muted);
    line-height: 1.6;
  }

  .contact-details {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  .contact-details h3 {
    font-size: 15px; font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .contact-detail-row {
    display: grid; grid-template-columns: 40px 1fr;
    gap: 16px; align-items: start;
    margin-bottom: 18px;
  }
  .contact-detail-row:last-child { margin-bottom: 0; }
  .contact-detail-row .ci {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .contact-detail-row .cl {
    font-size: 12px; font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 4px;
  }
  .contact-detail-row .cv {
    font-size: 15.5px; color: var(--ink);
    font-weight: 500; line-height: 1.4;
  }
  .contact-detail-row .cv a {
    color: var(--ink);
    transition: color 0.2s;
  }
  .contact-detail-row .cv a:hover { color: var(--brand); }

  /* Form card */
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(30,58,95,0.04);
  }
  @media (max-width: 640px) { .contact-form-wrap { padding: 28px 22px; } }
  .contact-form-wrap > h3 {
    font-size: 22px; color: var(--ink);
    margin-bottom: 8px;
  }
  .contact-form-wrap > p {
    font-size: 14.5px; color: var(--muted);
    line-height: 1.55; margin-bottom: 24px;
  }

  .form-placeholder-note {
    background: #FEF9E7;
    border: 1px solid #F5E3A1;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px; color: #7A5B02;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .form-placeholder-note strong { color: #594201; }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  @media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
  }

  .form-field.form-full { grid-column: 1 / -1; }

  .form-field label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
  }
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 9px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(42,170,231,0.15);
  }
  .form-field textarea {
    min-height: 110px; resize: vertical;
    line-height: 1.5;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .form-note {
    font-size: 12px; color: var(--muted);
    line-height: 1.5; margin-top: 14px;
    text-align: center;
  }
