/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */

.ct-hero {
  background: #222;
  position: relative;
  padding: 250px 0 58px;
  overflow: hidden;
}
.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.022) 0, rgba(255,255,255,.022) 1px,
    transparent 1px, transparent 15px
  );
  pointer-events: none;
}
.ct-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,149,42,.11), transparent 65%);
  pointer-events: none;
}
.ct-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ct-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ef952a;
  margin-bottom: 16px;
}
.ct-hero__kicker::before,
.ct-hero__kicker::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(239,149,42,.6);
}
.ct-hero__title {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 100;
  color: #fff;
}
.ct-hero__desc {
  margin: 16px auto 0;
  max-width: 540px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #aaa;
}

/* ═══════════════════════════════════════════════════
   İLETİŞİM BİLGİLERİ — hero ile bütünleşik yatay şerit
═══════════════════════════════════════════════════ */
.ct-info-strip {
  background: #1c1c1c;
  border-top: 1px solid rgba(255,255,255,.055);
}
.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "addr1 addr2 email"
    "phone1 phone2 social";
  gap: 0;
  align-items: stretch;
}
.ct-info-card--addr1 { grid-area: addr1; }
.ct-info-card--phone1 { grid-area: phone1; }
.ct-info-card--addr2 { grid-area: addr2; }
.ct-info-card--phone2 { grid-area: phone2; }
.ct-info-card--email {
  grid-area: email;
  border-right: 0;
  align-items: flex-start;
}
.ct-info-card--social { grid-area: social; border-right: 0; }

.ct-info-card--addr1,
.ct-info-card--addr2,
.ct-info-card--email {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.ct-social-strip--in-card {
  background: transparent !important;
  border-top: 0 !important;
  padding: 0 !important;
  justify-content: flex-start;
  gap: 8px;
}
.ct-social-strip--in-card .ct-social-link {
  padding: 7px 10px;
  font-size: 11px;
}
.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 38px 32px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background .22s;
  background: transparent;
}
.ct-info-card:last-child { border-right: 0; }
.ct-info-card--email,
.ct-info-card--social { border-right: 0 !important; }
.ct-info-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 3px;
  background: #ef952a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.ct-info-card:hover {
  background: rgba(255,255,255,.035);
}
.ct-info-card:hover::after { transform: scaleX(1); }

.ct-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(239,149,42,.11);
  border: 1px solid rgba(239,149,42,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef952a;
  flex: 0 0 50px;
  transition: background .2s, border-color .2s, transform .3s ease;
}
.ct-info-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.ct-info-card:hover .ct-info-icon {
  background: rgba(239,149,42,.22);
  border-color: rgba(239,149,42,.40);
  transform: scale(1.05);
}
.ct-info-phone {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #ef952a !important;
  text-decoration: none;
  transition: color .2s;
}
.ct-info-phone:hover { color: #fff !important; }
.ct-info-phone svg { flex-shrink: 0; }
.ct-info-label {
  margin: 0 0 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #666;
}
.ct-info-val {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  color: #d8d8d8;
  line-height: 1.55;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ct-info-card:hover .ct-info-val { color: #fff; }

.ct-info-note {
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(216,216,216,.78);
  line-height: 1.5;
}
.ct-info-card:hover .ct-info-note { color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════════════════
   SOSYAL MEDYA ŞERIDI
═══════════════════════════════════════════════════ */
.ct-social-strip {
  background: #161616;
  border-top: 1px solid rgba(255,255,255,.045);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ct-social-link {
  display: inline-flex;
  align-items: center; 
  gap: 6px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #888;
  padding: 8px 16px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  transition: background .18s, border-color .18s, color .18s;
}
.ct-social-link:hover {
  background: rgba(239,149,42,.13);
  border-color: rgba(239,149,42,.38);
  color: #ef952a;
}

/* ═══════════════════════════════════════════════════
   FORM BÖLÜMÜ — Açık, minimal, nefesli
═══════════════════════════════════════════════════ */
.ct-form-section {
  background: #fff;
  padding: 108px 0 120px;
}
.ct-form-intro {
  text-align: center;
  margin-bottom: 64px;
}
.ct-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ef952a;
  margin-bottom: 18px;
}
.ct-form-kicker::before,
.ct-form-kicker::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(239,149,42,.45);
}
.ct-form-main-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 200;
  color: #1a1a1a;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.ct-form-main-sub {
  margin: 0 auto;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.85;
  color: #aaa;
}
.ct-form-wrap {
  margin: 0 auto;
  width: 100%;
}
.ct-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.ct-form-row > .ct-field {
  flex: 1 1 calc(50% - 10px);
  min-width: 240px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ct-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #888;
}
.ct-input,
.ct-textarea,
.ct-select {
  box-sizing: border-box;
  width: 100%;
  border: 1.5px solid #e4e4e4;
  border-radius: 0 10px;
  background: #fafafa;
  color: #1a1a1a;
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  font-family: inherit;
}
.ct-input::placeholder,
.ct-textarea::placeholder { color: #c8c8c8; }
.ct-input:focus,
.ct-textarea:focus,
.ct-select:focus {
  outline: none;
  border-color: #1d3d7c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29,61,124,.10);
}

.ct-select-wrap {
  position: relative;
  display: block;
}
.ct-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 8px;
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231d3d7c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 8px;
  transition: transform .2s;
}
.ct-select-wrap:focus-within::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ef952a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(180deg);
}

.ct-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: none;
}
.ct-select::-ms-expand { display: none; }
.ct-select:invalid { color: #c8c8c8; }
.ct-select option { color: #1a1a1a; }
.ct-select option[value=""][disabled] { color: #c8c8c8; }
.ct-textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.7;
}
.ct-kvkk-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.ct-kvkk-row label {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.ct-kvkk-row a {
  color: #1d3d7c;
  text-decoration: none;
}
.ct-kvkk-row a:hover { text-decoration: underline; }
.ct-result-modal.uk-open {
  backdrop-filter: blur(6px);
  background: rgba(9,14,25,.42);
}
.ct-result-modal .uk-modal-dialog {
  width: min(92vw, 460px);
  border-radius: 20px;
  border: 1px solid rgba(232,237,246,.9);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 80px rgba(17,29,52,.24);
  padding: 0;
  overflow: hidden;
}
.ct-result-topline {
  height: 3px;
  background: #1d3d7c;
}
.ct-result-topline--ok { background: #2a9d63; }
.ct-result-inner { padding: 26px 24px 22px; }
.ct-result-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: #1d3d7c;
  background: rgba(29,61,124,.10);
}
.ct-result-chip--ok {
  color: #2a9d63;
  background: rgba(42,157,99,.12);
}
.ct-result-title {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  color: #1a2740;
  letter-spacing: -.01em;
}
.ct-result-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: #5a6475;
}
.ct-result-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}
.ct-result-btn {
  border: 0;
  border-radius: 999px;
  background: #1d3d7c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 11px 20px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(29,61,124,.28);
  transition: background .2s, transform .18s, box-shadow .2s;
}
.ct-result-btn:hover {
  background: #162e5e;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(29,61,124,.34);
}
.ct-form-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 44px 0 32px;
}
.ct-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ct-form-req {
  font-size: 11.5px;
  color: #ccc;
  letter-spacing: .02em;
}
.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 0 0.625rem;
  padding: 15px 38px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: #0816a1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(29,61,124,.28);
  transition: background .2s, transform .18s, box-shadow .2s;
}
.ct-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  color: #0816a1;
  box-shadow: 0 14px 36px rgba(29,61,124,.38);
}
.ct-btn:disabled,
.ct-btn[disabled] {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 10px 28px rgba(29,61,124,.20);
}
.ct-btn .ct-btn-icon,
.ct-btn .ct-btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ct-btn .ct-btn-loading { color: #fff; }

/* ═══════════════════════════════════════════════════
   HARİTA BÖLÜMÜ — Açık ve geniş
═══════════════════════════════════════════════════ */
.ct-map-section {
  background: #f6f6f4;
  padding: 90px 0 108px;
}
.ct-map-intro {
  text-align: center;
  margin-bottom: 52px;
}
.ct-map-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ef952a;
  margin-bottom: 14px;
}
.ct-map-kicker::before,
.ct-map-kicker::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(239,149,42,.4);
}
.ct-map-main-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 200;
  color: #1a1a1a;
  letter-spacing: -.01em;
}
.ct-map-address-text {
  margin: 0;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}
.ct-map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
}
.ct-map-frame iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .ct-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "addr1 addr2"
      "phone1 phone2"
      "email social";
  }
  /* Email sol, sosyal sağ: aralarındaki dik çizgi görünsün */
  .ct-info-card--email { border-right: 1px solid rgba(255,255,255,.07) !important; }
  /* En sağ sütunda sağ dik çizgi görünmesin */
  .ct-info-card--addr2,
  .ct-info-card--phone2,
  .ct-info-card--social { border-right: 0 !important; }
  .ct-info-card { border-bottom: 0; padding: 30px 20px; }
}

@media (max-width: 959px) {
  .ct-hero { padding: 144px 0 50px; }
  /* Tablet: mail ve sosyal medya yan yana */
  .ct-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "addr1 addr2"
      "phone1 phone2"
      "email social";
  }
  .ct-info-card {
    border-bottom: 0;
    padding: 30px 18px;
  }
  /* Email sol, sosyal sağ: aradaki dik çizgi görünsün */
  .ct-info-card--email { border-right: 1px solid rgba(255,255,255,.07) !important; }
  /* En sağ sütunda sağ dik çizgi görünmesin */
  .ct-info-card--addr2,
  .ct-info-card--phone2 { border-right: 0 !important; }
  .ct-form-section { padding: 80px 0 90px; }
  .ct-form-intro { margin-bottom: 48px; }
  .ct-map-section { padding: 64px 0 80px; }
}

@media (max-width: 639px) {
  .ct-hero { padding: 120px 0 40px; }
  .ct-hero__title { font-size: clamp(30px, 8vw, 44px); }
  .ct-info-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "addr1"
      "phone1"
      "addr2"
      "phone2"
      "email"
      "social";
    gap: 0;
  }
  .ct-info-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 26px 18px;
    gap: 18px;
    flex-direction: row;
    align-items: flex-start;
  }
  .ct-info-card:last-child { border-bottom: 0; }
  .ct-info-card--email { align-items: flex-start; }
  .ct-social-strip { gap: 8px; padding: 14px 0; }
  
  .ct-form-section { padding: 56px 0 64px; }
  .ct-form-intro { margin-bottom: 36px; }
  .ct-form-row > .ct-field { flex: 1 1 100%; min-width: 0; }
  .ct-map-section { padding: 48px 0 64px; }
  .ct-map-frame iframe { min-height: 340px; }
}