/* ══ CONTACT PAGE ════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ct-hero {
  background: var(--green-dk);
  padding: 64px 0 56px;
}
.ct-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ct-hero-left h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.ct-hero-left p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.75;
  max-width: 100%;
}
.ct-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-hcard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.ct-hcard i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.ct-hcard strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ct-hcard span {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* ── Body grid ────────────────────────────────────────────────────────────── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* ── Form column ──────────────────────────────────────────────────────────── */
.ct-form-col h2 { margin-bottom: 8px; }
.ct-form-intro  { color: var(--muted); font-size: 15px; margin-bottom: 36px; max-width: 100%; }

.ct-form { display: flex; flex-direction: column; gap: 20px; }

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.req { color: var(--gold); }

.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .2s, background .2s, box-shadow .2s;
  line-height: 1.5;
}
.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,77,64,0.10);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--muted); font-size: 14px; }
.ct-field textarea { resize: vertical; min-height: 140px; }

/* Select custom styling */
.ct-select-wrap {
  position: relative;
}
.ct-select-wrap select {
  width: 100%;
  padding: 13px 44px 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.ct-select-wrap select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,77,64,0.10);
}
.ct-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}

.ct-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.ct-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.ct-card--dark {
  background: var(--green-dk);
  border-color: var(--green-dk);
}
.ct-card--dark p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 100%;
}

.ct-card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Contact rows */
.ct-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  transition: background .15s;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
}
.ct-contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-contact-row:first-of-type { padding-top: 0; }
.ct-contact-row:hover .ct-contact-arrow { transform: translateX(4px); }

.ct-contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-contact-icon i     { color: var(--green); font-size: 16px; }
.ct-contact-icon--wa   { background: #E8F5E9; }
.ct-contact-icon--wa i { color: #2E7D32; font-size: 18px; }

.ct-contact-info { flex: 1; }
.ct-contact-info strong {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.ct-contact-info span {
  font-size: 14px;
  color: var(--green-dk);
  font-weight: 500;
}

.ct-contact-arrow {
  color: var(--muted);
  font-size: 12px;
  transition: transform .2s;
}

/* Offices */
.ct-office {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.ct-office:last-child { border-bottom: none; padding-bottom: 0; }
.ct-office-flag { font-size: 26px; flex-shrink: 0; }
.ct-office strong { display: block; font-size: 14px; color: var(--green-dk); font-weight: 600; margin-bottom: 2px; }
.ct-office span   { font-size: 13px; color: var(--muted); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ct-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .ct-grid       { grid-template-columns: 1fr; }
  .ct-sidebar    { position: static; }
}
@media (max-width: 640px) {
  .ct-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Global operations ────────────────────────────────────────────────────── */
.ct-global-intro {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 100%;
}
/* Tighter spacing when many offices listed */
.ct-card .ct-office {
  padding: 10px 0;
}
.ct-office strong { font-size: 13.5px; }
.ct-office span   { font-size: 12px; }
