/* ============================================================
   CONTACT PAGE — contact.css
   ============================================================ */

/* PAGE HEADER */
.ct-header {
    padding: calc(var(--nav-h) + 4rem) 0 4rem;
    background: var(--green-800);
  }
  .ct-header .eyebrow { color: var(--green-100); }
  .ct-header .eyebrow::before { background: var(--green-100); }
  .ct-h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500; color: var(--white);
    line-height: 1.1; letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }
  .ct-intro {
    font-size: 17px; color: rgba(255,255,255,0.75);
    line-height: 1.7; max-width: 560px;
  }
  
  /* LAYOUT */
  .ct-section { background: var(--off-white); }
  .ct-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem; align-items: start;
  }
  
  /* FORM WRAPPER */
  .ct-form-wrap {
    background: var(--white);
    border: 0.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
  }
  
  /* SUCCESS STATE */
  .ct-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
  }
  .ct-success.visible { display: block; }
  .ct-success-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--green-50); border: 2px solid var(--green-600);
    color: var(--green-600); font-size: 22px; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
  }
  .ct-success-title {
    font-size: 20px; font-weight: 500;
    color: var(--near-black); margin-bottom: 0.5rem;
  }
  .ct-success-body {
    font-size: 15px; color: var(--gray-800); line-height: 1.6;
  }
  
  /* FORM */
  .ct-form { display: flex; flex-direction: column; gap: 1.25rem; }
  .ct-form.hidden { display: none; }
  
  .ct-field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  }
  .ct-field { display: flex; flex-direction: column; gap: 6px; }
  
  .ct-label {
    font-size: 13px; font-weight: 500; color: var(--near-black);
  }
  .ct-required { color: var(--green-600); }
  
  .ct-input {
    font-family: var(--font); font-size: 15px;
    color: var(--near-black);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 11px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none; width: 100%;
  }
  .ct-input::placeholder { color: var(--gray-400); }
  .ct-input:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(59,109,17,0.1);
  }
  .ct-input.error { border-color: #C0392B; }
  .ct-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
  
  .ct-error {
    font-size: 12px; color: #C0392B;
    display: none;
  }
  .ct-error.visible { display: block; }
  
  .ct-form-footer {
    display: flex; align-items: center; gap: 1.5rem;
    padding-top: 0.5rem; flex-wrap: wrap;
  }
  .ct-submit { position: relative; min-width: 160px; }
  .ct-submit-loading { display: none; }
  .ct-submit.loading .ct-submit-text { display: none; }
  .ct-submit.loading .ct-submit-loading { display: inline; }
  .ct-submit.loading { opacity: 0.75; pointer-events: none; }
  .ct-privacy { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
  
  /* CONTACT INFO */
  .ct-info {
    display: flex; flex-direction: column; gap: 0;
    padding-top: 0.5rem;
  }
  .ct-info-block {
    padding: 1.25rem 0;
    border-bottom: 0.5px solid var(--gray-200);
  }
  .ct-info-block:first-child { padding-top: 0; }
  .ct-info-block:last-child { border-bottom: none; }
  .ct-info-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gray-600); margin-bottom: 6px;
  }
  .ct-info-value {
    font-size: 16px; color: var(--near-black); line-height: 1.5;
  }
  .ct-info-link {
    color: var(--green-600); font-weight: 500;
    transition: color 0.15s;
  }
  .ct-info-link:hover { color: var(--green-800); }
  .ct-wa-link {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .ct-wa-icon { font-size: 18px; }
  .ct-address {
    font-style: normal; font-size: 15px;
    color: var(--gray-800); line-height: 1.7;
  }
  .ct-show {
    display: flex; flex-direction: column; gap: 2px;
  }
  .ct-show-name { font-size: 15px; font-weight: 500; color: var(--near-black); }
  .ct-show-detail { font-size: 13px; color: var(--gray-600); }
  .ct-info-divider { height: 0; }
  .ct-quick-links {
    display: flex; flex-direction: column; gap: 8px; margin-top: 2px;
  }
  .ct-quick-link {
    font-size: 14px; color: var(--green-600); font-weight: 500;
    transition: color 0.15s;
  }
  .ct-quick-link:hover { color: var(--green-800); }
  
  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .ct-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 640px) {
    .ct-field-row { grid-template-columns: 1fr; }
    .ct-form-wrap { padding: 1.5rem; }
    .ct-form-footer { flex-direction: column; align-items: flex-start; }
  }