/* ═══════════════════════════════════════════
   Contact Page Styles
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   CONTACT HEADER
══════════════════════════════════════════ */
.ct-header-section {
  padding: 50px 0 40px;
  background: #fff;
}

/* Badge pill */
.ct-badge {
  display: inline-block;
  background: var(--color-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

/* Main heading */
.ct-main-heading {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Body text */
.ct-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Phone */
.ct-phone {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  margin-top: 6px;
  transition: color .2s;
}
.ct-phone:hover { color: var(--color-gold); }

/* Email */
.ct-email {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  margin-top: 4px;
  transition: color .2s;
}
.ct-email:hover { color: var(--color-navy); }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.ct-form-section {
  padding: 20px 0 70px;
  background: #fff;
}

.ct-form-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.ct-form-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

/* Form container — bordered box */
.ct-form-wrap {
  border: 1.5px solid #ccc;
  background: #fff;
  overflow: hidden;
}

/* Each field cell */
.ct-field {
  padding: 20px 24px;
}
.ct-field-border-right {
  border-right: 1.5px solid #ccc;
}
.ct-field-border-top {
  border-top: 1.5px solid #ccc;
}

/* Label */
.ct-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Input & textarea */
.ct-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: transparent;
  padding: 0;
}
.ct-input::placeholder {
  color: #bbb;
  font-weight: 500;
}
.ct-input:focus { outline: none; }

.ct-textarea {
  height: 90px;
  resize: none;
}

/* Checkboxes grid */
.ct-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.ct-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
}
.ct-check-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--color-navy);
  cursor: pointer;
  flex-shrink: 0;
}

/* Submit button — full width, dark */
.ct-submit-btn {
  display: block;
  width: 100%;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background .2s;
  margin-top: 0;
}
.ct-submit-btn:hover { background: var(--color-gold); }

/* ── Responsive ── */
@media (max-width: 767px) {
  .ct-field-border-right { border-right: none; border-bottom: 1.5px solid #ccc; }
  .ct-checks { grid-template-columns: 1fr; }
}
