/* === Contact Page === */

/* --- Hero --- */
.ct-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #e8f2fa 0%, #f4f9fd 40%, #fff 100%);
}
.ct-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.ct-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.ct-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
}

/* --- Main --- */
.ct-main { padding: 80px 0 100px; }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* --- Form --- */
.ct-form-col h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-form-col h2::before {
  content: '';
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, #5DADE2, #89CFF0);
}

.ct-form { display: flex; flex-direction: column; gap: 14px; }

.ct-field {
  position: relative;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 18px 14px 8px;
  font-size: .92rem;
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}
.ct-field select {
  padding: 28px 36px 6px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.ct-field textarea { padding-top: 28px; min-height: 140px; }

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: #89CFF0;
  box-shadow: 0 0 0 3px rgba(137,207,240,.12);
}

.ct-field label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: .88rem;
  color: var(--muted);
  pointer-events: none;
  transition: .2s;
}
.ct-field textarea + label { top: 18px; transform: none; }

.ct-field input:focus + label,
.ct-field input:not(:placeholder-shown) + label,
.ct-field textarea:focus + label,
.ct-field textarea:not(:placeholder-shown) + label {
  top: 10px;
  transform: none;
  font-size: .68rem;
  font-weight: 500;
}
.ct-select-label {
  position: absolute;
  top: 4px;
  left: 14px;
  font-size: .6rem;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
}

.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ct-submit {
  padding: 16px;
  font-size: .95rem;
  font-weight: 600;
  margin-top: 4px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ct-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.ct-note {
  text-align: center;
  padding: 40px 24px;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg2);
  border-radius: var(--r);
  border: 1px solid var(--border);
}

/* --- Info Cards --- */
.ct-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-info-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ct-info-card:hover {
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.ct-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border-radius: 10px;
  color: var(--muted);
  margin-bottom: 14px;
}
.ct-info-card h3 {
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.ct-info-card a {
  font-size: .88rem;
  color: var(--accent);
  transition: opacity .2s;
}
.ct-info-card a:hover { opacity: .7; }
.ct-info-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}
.ct-sub { font-size: .78rem !important; opacity: .7; margin-top: 2px; }

.ct-social { display: flex; gap: 10px; margin-top: 8px; }
.ct-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  transition: .25s var(--ease);
}
.ct-social-link:hover { border-color: rgba(0,0,0,.2); color: var(--text); }

/* --- FAQ --- */
.ct-faq {
  padding: 80px 0 100px;
  background: var(--bg2);
}
.ct-faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 20px 0;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--muted); }

.faq-item p {
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .ct-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-info-col { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  .ct-hero { padding: 110px 0 36px; }
  .ct-title { font-size: 2rem; }
  .ct-main { padding: 48px 0 64px; }
  .ct-info-col { grid-template-columns: 1fr; }
  .ct-info-card { padding: 18px; }
  .ct-info-card h3 { font-size: .85rem; }
  .ct-faq { padding: 56px 0 72px; }
  .ct-faq-title { font-size: 1.4rem; margin-bottom: 32px; }
  .faq-item summary { font-size: .88rem; padding: 16px 0; }
  .faq-item p { font-size: .82rem; }
}

@media (max-width: 480px) {
  .ct-field-row { grid-template-columns: 1fr; }
  .ct-hero { padding: 100px 0 32px; }
  .ct-title { font-size: 1.6rem; }
  .ct-desc { font-size: .88rem; }
}
