/* ===================================================
   Contact Page — contact.css
   =================================================== */

/* ── Main Section ────────────────────────────────── */
.ct-section {
  padding: 80px 0 100px;
  background: var(--bg-color);
}

/* ── Info Cards ──────────────────────────────────── */
.ct-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(117,205,217,0.1);
}
.ct-info-card:first-child { padding-top: 0; }

.ct-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(117,205,217,0.1);
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 2px;
}

.ct-info-title {
  font-family: "Gotham";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.ct-info-text {
  font-size: 14px;
  color: var(--body-text-color);
  line-height: 1.7;
  margin: 0;
}

.ct-info-link {
  font-size: 14px;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s;
}
.ct-info-link:hover { color: var(--primary-color); }

/* Social row */
.ct-social {
  padding-top: 1.5rem;
}
.ct-social-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--body-text-color);
  margin-bottom: 1rem;
}
.ct-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ct-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117,205,217,0.2);
  color: var(--body-text-color);
  text-decoration: none;
  font-size: 14px;
  border-radius: 50%;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.ct-social-link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
}

/* ── Form ────────────────────────────────────────── */
.ct-form-wrap {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
}

.ct-form { width: 100%; }

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body-text-color);
}
.ct-field label span { color: var(--primary-color); }

.ct-field input,
.ct-field select,
.ct-field textarea {
  background: rgba(117,205,217,0.04);
  border: 1px solid rgba(117,205,217,0.15);
  color: var(--heading-color);
  padding: 14px 16px;
  font-size: 14px;
  font-family: "Gotham";
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(138,155,168,0.5);
}
.ct-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ba8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.ct-field select option {
  background: var(--bg-secondary);
  color: var(--heading-color);
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--primary-color);
  background: rgba(117,205,217,0.07);
}
.ct-field textarea { resize: vertical; min-height: 140px; }

/* Invalid state */
.ct-invalid {
  border-color: #e05a5a !important;
  background: rgba(224,90,90,0.05) !important;
}

/* Submit button */
.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--primary-color);
  color: var(--bg-color);
  border: 2px solid var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  font-family: "Gotham";
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.ct-submit:hover {
  background: transparent;
  color: var(--primary-color);
}
.ct-submit i { font-size: 14px; }

/* Success message */
.ct-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  text-align: center;
}
.ct-success i {
  font-size: 3.5rem;
  color: var(--primary-color);
}
.ct-success h4 {
  font-family: "Libre Baskerville", serif;
  color: var(--heading-color);
  font-size: 1.5rem;
}
.ct-success p {
  color: var(--body-text-color);
  font-size: 15px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
  .ct-form-wrap { padding: 2rem 1.5rem; }
}
@media (max-width: 576px) {
  .ct-section { padding: 60px 0 80px; }
  .ct-form-wrap { padding: 1.5rem 1rem; }
  .ct-submit { width: 100%; justify-content: center; }
}
