/* ============================================================
   contact.css  —  Contact page
   Follows site theme: white bg, var(--color-dark), var(--color-primary)
   Font sizes, weights, spacing match policy.css & page-hero.css
   ============================================================ */

/* ── SECTION WRAPPER ── */
.ct-section {
  background: #fff;
  padding: 80px 0 100px;
}

.ct-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
}

/* ============================================================
   LEFT COLUMN
   ============================================================ */
.ct-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.22;
  margin: 0 0 12px;
}

.ct-heading span {
  color: var(--color-primary);
}

.ct-sub {
  font-size: 13.5px;
  font-weight: 600;
  color: #666;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

.ct-body {
  font-size: 15px;
  color: #484848;
  line-height: 1.82;
  margin: 0 0 44px;
}

/* ── Contact list ── */
.ct-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ct-list li:first-child {
  border-top: 1px solid #f0f0f0;
}

.ct-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: transform .25s, background .25s;
}

.ct-list li:hover .ct-ico {
  transform: scale(1.08);
  background: var(--color-primary-dark, #8baa00);
}

.ct-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.ct-info strong {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;
}

.ct-info a,
.ct-info span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  line-height: 1.45;
  transition: color .2s;
}

.ct-info a:hover {
  color: var(--color-primary);
}

/* ============================================================
   RIGHT COLUMN — FORM CARD
   ============================================================ */
.ct-right {
  position: sticky;
  top: 96px;
}

.ct-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* Card top bar — matches policy highlight style */
.ct-card-top {
  background: var(--color-dark);
  border-bottom: 3px solid var(--color-primary);
  padding: 22px 28px;
}

.ct-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ct-card-title > i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.ct-card-title h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 3px;
}

.ct-card-title p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* ── Alert — matches policy-warning / policy-highlight ── */
.ct-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px solid transparent;
}

.ct-alert i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}

.ct-alert--ok {
  background: #f6faec;
  color: #3d4f00;
  border-bottom-color: #c8e06a;
}

.ct-alert--err {
  background: #fffbea;
  color: #78450f;
  border-bottom-color: #f5d44a;
}

/* ── FORM ── */
.ct-form {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Two-col row */
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Field group */
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.ct-field label span {
  color: #e53e3e;
  margin-left: 1px;
  font-size: 13px;
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fafafa;
  border: 1.5px solid #e4e4e4;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 14px;
  color: var(--color-dark);
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #bbb;
  font-size: 13px;
}

.ct-field input:hover,
.ct-field textarea:hover {
  border-color: #c8e06a;
  background: #fff;
}

.ct-field input:focus,
.ct-field textarea:focus {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(165,198,21,0.15);
}

.ct-field input.err,
.ct-field textarea.err {
  border-color: #e53e3e;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.08);
}

.ct-field textarea {
  resize: none;
  min-height: 90px;
  line-height: 1.65;
}

/* Error text */
.ct-err {
  font-size: 12px;
  font-weight: 600;
  color: #e53e3e;
  min-height: 14px;
  line-height: 1.3;
  font-style: normal;
}

/* ── Bottom: checkbox + button ── */
.ct-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid #f0f0f0;
}

/* Custom checkbox */
.ct-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.ct-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ct-checkmark {
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  background: #fafafa;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, box-shadow .2s;
  position: relative;
  flex-shrink: 0;
}

.ct-check:hover .ct-checkmark {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(165,198,21,0.15);
}

.ct-check input:checked + .ct-checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ct-check input:checked + .ct-checkmark::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.ct-check span:last-child {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  font-family: inherit;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.ct-check a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(165,198,21,0.4);
  transition: border-color .2s;
}

.ct-check a:hover {
  border-bottom-color: var(--color-primary);
}

/* ── Submit button — matches policy-cta-btn style ── */
.ct-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .2s, box-shadow .3s;
}

.ct-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left .45s ease;
}

.ct-btn:hover::before { left: 160%; }

.ct-btn:hover {
  background: var(--color-primary-dark, #8baa00);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(165,198,21,0.35);
}

.ct-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.ct-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.ct-btn-spin {
  display: none;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .ct-wrap {
    grid-template-columns: 1fr 420px;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .ct-section { padding: 56px 0 72px; }

  .ct-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ct-right { position: static; }
  .ct-heading { font-size: 24px; }
  .ct-body { margin-bottom: 32px; }
}

@media (max-width: 520px) {
  .ct-section { padding: 44px 0 56px; }
  .ct-wrap { padding: 0 16px; }

  .ct-row {
    grid-template-columns: 1fr;
  }

  .ct-card-top { padding: 18px 20px; }
  .ct-form { padding: 20px 20px 24px; gap: 12px; }
}


.wh-center {
  display: flex;
  align-items: center;
}

.wh-center-icon {
  margin-left: auto;
  margin-right: auto;
}

.ct-body a {
    color: #a5c615;
}

.ct-body a:hover {
    color: #8eac13;
}

.contact-email{
  padding-top: 10px;
}