/* ============================================================
   CONTACT US — contact.css
   Hero: full-bleed bg image + navy overlay + centered text
   Body: 2-col info + form, theme colors throughout
============================================================ */

body { background: #f0f5ff; }
.site-footer { margin-top: 0; }

/* ============================================================
   HERO — background image + overlay
============================================================ */
.ct-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Unsplash: modern office / city buildings — professional finance feel */
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
}

/* Overlay — dark enough for text, light enough to see the image */
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,31,68,0.78) 0%,
    rgba(10,31,68,0.70) 50%,
    rgba(26,82,204,0.60) 100%);
  z-index: 1;
}

/* Dot pattern on top of overlay */
.ct-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 2;
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 5vw, 48px);
  text-align: center;
}

.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #38BDF8;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.25);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ct-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.ct-hero h1 span {
  color: #38BDF8;
  font-style: normal;
}

.ct-hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto;
  text-wrap: pretty;
}


/* ============================================================
   MAIN CONTENT
============================================================ */
.ct-main {
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 48px);
}

.ct-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(10,31,68,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  border: 1px solid rgba(26,82,204,0.08);
}

/* ============================================================
   LEFT — info panel
============================================================ */
.ct-info {
  background: #f0f5ff;
  border-right: 1px solid rgba(26,82,204,0.08);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.ct-info::after { display: none; }

.ct-info-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.ct-info-heading h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.ct-info-heading p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #5a6a8a;
  line-height: 1.65;
}

.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.ct-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(26,82,204,0.09);
  border-radius: 14px;
  padding: 14px 16px;
  transition: box-shadow 0.22s, transform 0.22s;
}

.ct-info-card:hover {
  box-shadow: 0 4px 16px rgba(26,82,204,0.1);
  transform: translateX(3px);
}

.ct-info-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ct-info-cards .ct-info-card:nth-child(1) .ct-info-icon { background: rgba(239,68,68,0.1); color: #ef4444; }
.ct-info-cards .ct-info-card:nth-child(2) .ct-info-icon { background: rgba(34,197,94,0.1); color: #16a34a; }
.ct-info-cards .ct-info-card:nth-child(3) .ct-info-icon { background: rgba(251,191,36,0.15); color: #d97706; }
.ct-info-cards .ct-info-card:nth-child(4) .ct-info-icon { background: rgba(26,82,204,0.1); color: #1a52cc; }

.ct-info-card h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 2px;
}

.ct-info-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  color: #5a6a8a;
  margin-bottom: 3px;
}

.ct-info-card a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: #1a52cc;
  text-decoration: none;
  transition: color 0.2s;
}

.ct-info-card a:hover { color: #1039a0; }

.ct-quick {
  border-top: 1px solid rgba(26,82,204,0.08);
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.ct-quick h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #5a6a8a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.ct-quick a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #2a3a5e;
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid rgba(26,82,204,0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.ct-quick a:last-child { border-bottom: none; }

.ct-quick a i {
  width: 28px; height: 28px;
  background: rgba(26,82,204,0.08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #1a52cc;
  flex-shrink: 0;
}

.ct-quick a:hover { color: #1a52cc; padding-left: 4px; }


/* ============================================================
   RIGHT — form panel
============================================================ */
.ct-form-wrap {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ct-form-head { margin-bottom: 24px; }

.ct-form-head h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 5px;
  letter-spacing: -0.015em;
}

.ct-form-head p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #5a6a8a;
}

.ct-form { display: flex; flex-direction: column; gap: 15px; }

.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ct-field { display: flex; flex-direction: column; gap: 5px; }

.ct-field label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a3a5e;
}

.ct-input-wrap { position: relative; display: flex; align-items: center; }

.ct-input-wrap i {
  position: absolute;
  left: 13px;
  font-size: 0.8rem;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s;
}

.ct-input-wrap:focus-within i { color: #1a52cc; }

.ct-field input,
.ct-field select {
  width: 100%;
  height: 46px;
  padding: 0 13px 0 38px;
  border: 1.5px solid #1a2470;
  border-radius: 10px;
  background: #f8faff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #0A1F44;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}

.ct-field input::placeholder { color: #b0bac9; }
.ct-field select option { background: #fff; color: #0A1F44; }

.ct-field input:focus,
.ct-field select:focus {
  border-color: #1a52cc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,82,204,0.08);
}

.ct-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #1a2470;
  border-radius: 10px;
  background: #f8faff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #0A1F44;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 96px;
}

.ct-field textarea::placeholder { color: #b0bac9; }

.ct-field textarea:focus {
  border-color: #1a52cc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,82,204,0.08);
}

.ct-submit {
  height: 50px;
  border: none;
  border-radius: 10px;
  background: #1a52cc;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(26,82,204,0.22);
  width: 100%;
}

.ct-submit:hover {
  background: #1039a0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,82,204,0.3);
}

.ct-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.ct-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: #1a52cc;
  cursor: pointer;
}

.ct-consent label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #5a6a8a;
  line-height: 1.6;
  cursor: pointer;
}

.ct-consent label a {
  color: #1a52cc;
  text-decoration: none;
  font-weight: 600;
}

.ct-consent label a:hover {
  text-decoration: underline;
}

#err-ctAgree {
  margin-top: -6px;
}

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 20px;
}

.ct-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #22c55e;
}

.ct-success h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1F44;
}

.ct-success p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem;
  color: #5a6a8a;
  line-height: 1.7;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .ct-container { grid-template-columns: 1fr; }
  .ct-info { padding: 36px 28px; }
  .ct-form-wrap { padding: 36px 28px; }
}

@media (max-width: 540px) {
  .ct-main { padding: 28px 16px 48px; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 28px 20px; }
  .ct-hero h1 { font-size: 1.8rem; }
}
