/* ══════════════════════════════════════
   CONTACT PAGE — contact.css
   Extends styles.css for the contact page only
══════════════════════════════════════ */

/* ── HERO ── */
.ct-hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 50%, #0f2840 100%);
  padding: 160px 0 80px;
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.ct-hero-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin: 16px 0 20px;
}
.ct-hero-sub {
  font-size: var(--text-md);
  color: var(--text-light);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ── WHAT YOU GET ── */
.ct-what {
  background: var(--light-bg);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}
.ct-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ct-what-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--ease);
}
.ct-what-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}
.ct-what-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  color: rgba(0,200,232,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.ct-what-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: 10px;
}
.ct-what-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FORM SECTION ── */
.ct-form-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.ct-form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form wrapper */
.ct-form-wrap {}
.ct-form-header { margin-bottom: 36px; }
.ct-form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.1;
}
.ct-form-sub {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form fields */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-dark);
}
.ct-input {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: var(--light-bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.ct-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,232,0.1);
  background: var(--white);
}
.ct-input::placeholder { color: #a0b4c4; }
.ct-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A7A96' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ct-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.ct-submit {
  padding: 15px 32px;
  font-size: var(--text-base);
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.ct-form-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 32px;
  background: var(--light-bg);
  border: 1px solid rgba(0,200,232,0.2);
  border-radius: var(--radius-lg);
  gap: 16px;
}
.ct-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,200,232,0.1);
  border: 2px solid rgba(0,200,232,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--cyan);
  font-weight: 700;
}
.ct-success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--text-dark);
}
.ct-success-desc {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* ── SIDEBAR ── */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* Trust signals */
.ct-trust {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.ct-trust-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ct-trust-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ct-trust-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-trust-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-dark);
  margin-bottom: 3px;
}
.ct-trust-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sidebar stats */
.ct-sidebar-stats {
  background: var(--navy);
  border: 1px solid rgba(0,200,232,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-ss-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-ss-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ct-ss-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  min-width: 80px;
}
.ct-ss-num .c { color: var(--cyan); }
.ct-ss-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Sidebar testimonial */
.ct-sidebar-testi {
  background: rgba(0,200,232,0.05);
  border: 1px solid rgba(0,200,232,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.ct-st-stars {
  color: #fbbf24;
  font-size: var(--text-base);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.ct-st-quote {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.ct-st-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-st-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0078a0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--navy-deep);
  flex-shrink: 0;
}
.ct-st-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-dark);
}
.ct-st-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ct-form-grid { grid-template-columns: 1fr; gap: 48px; }
  .ct-sidebar { position: static; }
  .ct-sidebar-stats { flex-direction: row; flex-wrap: wrap; }
  .ct-ss-item { flex: 1; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.06); padding-bottom: 0; padding-right: 16px; }
  .ct-ss-item:last-child { border-right: none; }
}
@media (max-width: 900px) {
  .ct-hero { padding: 130px 0 56px; }
  .ct-what-grid { grid-template-columns: 1fr; }
  .ct-field-row { grid-template-columns: 1fr; }
  .ct-sidebar-stats { flex-direction: column; }
  .ct-ss-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 16px; }
}
