/* ============================================================
   CONTACT PAGE
============================================================ */

/* ============================================================
   PAGE HEADER
============================================================ */
.ct-header {
  position: relative;
  background: var(--navy-deep);
  padding: 140px 0 5rem;
  overflow: hidden;
}

.ct-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(26,93,171,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(192,33,43,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #060912 0%, #0d1829 50%, #060912 100%);
}

.ct-header-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ct-header-inner {
  position: relative;
  z-index: 2;
}

.ct-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}

.ct-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-blue);
}

.ct-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.ct-title span { color: var(--brand-blue); }

.ct-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* ============================================================
   MAIN GRID
============================================================ */
.ct-main {
  background: var(--off-white);
  padding: 5rem 0 var(--sp-3xl);
}

.ct-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ============================================================
   LEFT — Info
============================================================ */

/* Person card */
.ct-person-card {
  background: var(--navy-deep);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.ct-person-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.ct-person-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.ct-person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-person-role {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.3rem;
}

.ct-person-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.ct-person-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 0.3rem;
}

.ct-person-contact svg { fill: var(--brand-blue); flex-shrink: 0; }
.ct-person-contact:hover { color: #ffffff; }

/* Info blocks */
.ct-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.ct-info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s ease;
}

.ct-info-block:last-child { border-bottom: none; }
.ct-info-block:hover { background: var(--blue-pale); }

.ct-info-icon {
  width: 38px;
  height: 38px;
  background: rgba(26,93,171,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-info-icon svg { fill: var(--brand-blue); }

.ct-info-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.2rem;
}

.ct-info-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-deep);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

a.ct-info-value:hover { color: var(--brand-blue); }

/* Social links */
.ct-socials-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.8rem;
}

.ct-socials-row {
  display: flex;
  gap: 0.6rem;
}

.ct-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.ct-social-btn svg { fill: var(--navy-deep); transition: fill 0.2s ease; }

.ct-social-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #ffffff;
}
.ct-social-btn:hover svg { fill: #ffffff; }

/* ============================================================
   RIGHT — Form
============================================================ */
.ct-form-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.ct-form-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.ct-form-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.ct-form-sub {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* Form rows */
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.ct-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.ct-input {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
}

.ct-input::placeholder { color: rgba(0,0,0,0.25); }

.ct-input:focus {
  border-color: var(--brand-blue);
  background: #ffffff;
}

.ct-input--error {
  border-color: var(--brand-red) !important;
  background: #fff5f5 !important;
}

.ct-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A97A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.ct-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Submit button */
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.ct-submit svg { fill: #ffffff; transition: transform 0.2s ease; }

.ct-submit:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,93,171,0.3);
}

.ct-submit:hover svg { transform: translateX(4px); }

/* Success state */
.ct-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: #f0fdf4;
  border: 1.5px solid #22c55e;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
}

.ct-success.visible { display: flex; }

.ct-success svg { fill: #22c55e; flex-shrink: 0; }

.ct-success-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.2rem;
}

.ct-success-sub {
  font-size: 0.8rem;
  color: #166534;
  opacity: 0.8;
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 2rem 1.5rem; }
  .ct-socials-row { flex-wrap: wrap; }
}