/* =====================================================
   İLETİŞİM SAYFASI
   ===================================================== */

/* ----- İletişim Kartları ----- */
.ct-info-section {
  padding-bottom: 0;
}

.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tj-color-border-1, #e5e5e5);
  border: 1px solid var(--tj-color-border-1, #e5e5e5);
  border-radius: 20px;
  overflow: hidden;
}

.ct-card {
  background: #fcf8f0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s ease;
}

.ct-card:hover {
  background: var(--at-neutral-0, #fff);
}

.ct-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--tj-color-heading-primary, #0a0a0a);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.ct-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  flex-shrink: 0;
}

.ct-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--at-neutral-700, #999);
}

.ct-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-card__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--tj-color-heading-primary, #0a0a0a);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
  line-height: 1.4;
}

.ct-card__link:hover {
  opacity: 0.6;
  color: var(--tj-color-heading-primary, #0a0a0a);
}

.ct-card__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--tj-color-heading-primary, #0a0a0a);
  line-height: 1.5;
  display: block;
}

.ct-card__text--muted {
  color: var(--at-neutral-700, #888);
  font-size: 13px;
  font-weight: 400;
}

/* ----- Form Bölümü ----- */
.ct-form-section {
  padding-top: 100px;
}

.ct-form-left {
  padding-right: 40px;
  padding-top: 8px;
}

.ct-form-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--at-neutral-700, #666);
  margin-top: 28px;
  margin-bottom: 32px;
}

.ct-socials.tj_socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

/* Onay kutusu */
.ct-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--at-neutral-700, #777);
  cursor: pointer;
  line-height: 1.5;
}

.ct-agree-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--tj-color-heading-primary, #0a0a0a);
  cursor: pointer;
}

.ct-agree-label a {
  color: var(--tj-color-heading-primary, #0a0a0a);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ----- Harita ----- */
.ct-map-section {
  padding: 110px 0 110px;
}

.ct-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--tj-color-border-1, #e5e5e5);
}

.ct-map-wrap .custom-marker {
  font-size: 60px;
  font-family: "agina-icons" !important;
}

.ct-map-wrap .custom-marker::before {
  color: var(--tj-color-theme-primary, #E63946);
}

#lasera-map {
  width: 100%;
  height: 500px;
  display: block;
}

/* Konum overlay kartı */
.ct-map-overlay {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 800;
  pointer-events: none;
}

.ct-map-overlay__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.ct-map-overlay__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tj-color-heading-primary, #0a0a0a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ct-map-overlay__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-map-overlay__info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--tj-color-heading-primary, #0a0a0a);
  letter-spacing: -0.01em;
}

.ct-map-overlay__info span {
  font-size: 12px;
  color: var(--at-neutral-700, #888);
  line-height: 1.5;
}

.ct-map-overlay__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--tj-color-heading-primary, #0a0a0a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.ct-map-overlay__btn:hover {
  opacity: 0.75;
  color: #fff;
}

.ct-map-overlay__btn i {
  font-size: 11px;
}

@media (max-width: 767px) {
  #lasera-map { height: 380px; }
  .ct-map-section { padding-bottom: 70px; }

  .ct-map-overlay {
    top: auto;
    bottom: 20px;
    left: 12px;
    right: 12px;
  }

  .ct-map-overlay__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .ct-map-overlay__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ct-map-wrap { border-radius: 12px; }
}

/* ----- Responsive ----- */
@media (max-width: 1199px) {
  .ct-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ct-form-left {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .ct-cards-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .ct-card {
    padding: 28px 24px;
  }

  .ct-form-section {
    padding-top: 70px;
  }
}
