/* =================================
   CONTACT PAGE
   ================================= */

/* HERO */
.ct-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  z-index: 0;
}

.ct-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.ct-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  color: #6366f1;
  padding: 5px 16px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.ct-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.ct-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* MAIN LAYOUT */
.ct-main {
  padding: 4rem 2rem 6rem;
}

.ct-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media(max-width: 768px) {
  .ct-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* İLETİŞİM KARTLARI */
.ct-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ct-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ct-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ct-card:hover::before { opacity: 1; }

/* WhatsApp */
.ct-card-wa:hover { border-color: rgba(37,211,102,0.35); }
.ct-card-wa::before { background: #25d366; }
.ct-card-wa .ct-card-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.ct-card-wa .ct-card-action { color: #25d366; }

/* E-posta */
.ct-card-mail:hover { border-color: rgba(99,102,241,0.35); }
.ct-card-mail::before { background: #6366f1; }
.ct-card-mail .ct-card-icon { background: rgba(99,102,241,0.1); color: #6366f1; }
.ct-card-mail .ct-card-action { color: #6366f1; }

/* LinkedIn */
.ct-card-li:hover { border-color: rgba(10,102,194,0.35); }
.ct-card-li::before { background: #0a66c2; }
.ct-card-li .ct-card-icon { background: rgba(10,102,194,0.1); color: #0a66c2; }
.ct-card-li .ct-card-action { color: #0a66c2; }

/* Instagram */
.ct-card-ig:hover { border-color: rgba(225,48,108,0.35); }
.ct-card-ig::before { background: #e1306c; }
.ct-card-ig .ct-card-icon { background: rgba(225,48,108,0.1); color: #e1306c; }
.ct-card-ig .ct-card-action { color: #e1306c; }

.ct-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ct-card:hover .ct-card-icon { transform: scale(1.08); }

.ct-card-body { flex: 1; }

.ct-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.ct-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 6px;
}

.ct-card-action {
  font-size: 0.78rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

/* SAĞ PANEL */
.ct-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

.ct-info-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
}

.ct-info-panel h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.ct-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ct-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ct-step-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(99,102,241,0.1);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.ct-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.ct-step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* GÜVEN RAKAMLARI */
.ct-trust-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.ct-trust-item { text-align: center; }

.ct-trust-val {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.ct-trust-lbl {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ct-trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* KVKK NOTU */
.ct-kvkk-note {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

.ct-kvkk-note a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
}

.ct-kvkk-note a:hover { text-decoration: underline; }