/* ================================================
   HOPE GLOBAL — Contact Us Page Stylesheet
   ================================================ */

/* ── Page Hero Banner ── */
.ct-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.ct-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.ct-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.ct-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.ct-hero-title span { color: #60a5fa; }

.ct-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Contact Section (2-col) ── */
.ct-section {
  background: var(--off-white);
  padding: 5.5rem 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left: info panel */
.ct-info-title {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.ct-info-sub {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}

.ct-info-card:hover {
  box-shadow: 0 12px 36px rgba(13,27,75,0.09);
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.3);
}

.ct-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur);
}

.ct-info-card:hover .ct-info-icon { background: var(--accent); }

.ct-info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  transition: stroke var(--dur);
}

.ct-info-card:hover .ct-info-icon svg { stroke: var(--white); }

.ct-info-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.ct-info-value {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.ct-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur);
}

.ct-info-value a:hover { color: var(--accent); }

/* ── Contact Form ── */
.ct-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 16px 56px rgba(13,27,75,0.08);
}

.ct-form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.ct-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.ct-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  width: 100%;
  appearance: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--text-muted); }

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  background: var(--white);
}

.ct-field textarea { resize: vertical; min-height: 120px; }

.ct-form-submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  width: 100%;
  justify-content: center;
}

.ct-submit-btn svg { width: 18px; height: 18px; transition: transform var(--dur); }

.ct-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.35);
}

.ct-submit-btn:hover svg { transform: translateX(3px); }

/* ── Map Section ── */
.ct-map-section {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.ct-map-header {
  background: var(--navy);
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
}

.ct-map-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.ct-map-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

.ct-map-frame {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  filter: brightness(0.92) saturate(0.95);
}

/* ── Responsive ── */

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .ct-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-section { padding: 4.5rem 0; }
}

/* Large mobile ≤ 680px */
@media (max-width: 680px) {
  .ct-hero { padding: calc(var(--nav-h) + 3rem) 0 3rem; }
  .ct-section { padding: 3.5rem 0; }
  .ct-info-sub { font-size: 0.88rem; margin-bottom: 1.75rem; }
  .ct-form-wrap { padding: 2rem 1.5rem; }
  .ct-form { grid-template-columns: 1fr; }
  .ct-map-frame { height: 320px; }
  .ct-map-header { padding: 3rem 1.25rem 2rem; }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .ct-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
  .ct-hero-sub { font-size: 0.9rem; line-height: 1.7; }

  .ct-section { padding: 3rem 0; }

  .ct-info-title { font-size: 1.35rem; }
  .ct-info-cards { gap: 0.875rem; }
  .ct-info-card {
    padding: 1.1rem 1.25rem;
    gap: 0.875rem;
    border-radius: 14px;
  }
  .ct-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .ct-info-icon svg { width: 17px; height: 17px; }
  .ct-info-value { font-size: 0.88rem; }

  .ct-form-wrap { padding: 1.75rem 1.25rem; border-radius: 20px; }
  .ct-form-title { font-size: 1.25rem; margin-bottom: 1.25rem; }
  .ct-field input,
  .ct-field select,
  .ct-field textarea { font-size: 0.88rem; padding: 0.7rem 0.9rem; }

  .ct-map-frame { height: 280px; }
  .ct-map-title { font-size: 1.5rem; }
}

/* Small mobile ≤ 420px */
@media (max-width: 420px) {
  .ct-hero-title { font-size: 2rem; }
  .ct-form-wrap { padding: 1.5rem 1.1rem; border-radius: 18px; }
  .ct-map-frame { height: 260px; }
  .ct-submit-btn { font-size: 0.88rem; padding: 0.8rem 1.5rem; }
}

/* Extra-small ≤ 360px */
@media (max-width: 360px) {
  .ct-hero-title { font-size: 1.75rem; }
  .ct-info-value { font-size: 0.83rem; }
  .ct-map-frame { height: 240px; }
}

