/* ============================================================
   iletisim.css — İletişim Sayfası Özel CSS
   style.css'e bağımlıdır.
   ============================================================ */

/* ── Page Banner ─────────────────────────────── */
.ct-banner {
  padding-top: 70px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.ct-banner__bg {
  position: absolute;
  inset: 0;
}
.ct-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: .2;
}
.ct-banner__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(19,14,11,.9) 0%, rgba(19,14,11,.6) 60%, transparent 100%);
}
.ct-banner__content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 64px 44px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 640px) { .ct-banner__content { padding: 48px 22px 44px; } }

.ct-banner__left .eyebrow { margin-bottom: 16px; }
.ct-banner__title {
  font-family: var(--ff-d);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.06;
  color: #fff;
}
.ct-banner__title em { font-style: italic; color: var(--gold); }

.ct-banner__quick {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ct-banner__qbtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  transition: border-color .3s, color .3s, background .3s;
  white-space: nowrap;
}
.ct-banner__qbtn:hover { border-color: var(--gold); color: var(--gold); }
.ct-banner__qbtn--wp { background: #25D366; border-color: #25D366; color: #fff; }
.ct-banner__qbtn--wp:hover { background: #1ebd5e; border-color: #1ebd5e; color: #fff; }
.ct-banner__qbtn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.ct-banner__qbtn--wp svg { fill: currentColor; stroke: none; width: 15px; height: 15px; }

/* ── Main Grid Layout ────────────────────────── */
.ct-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}
@media (max-width: 1060px) { .ct-layout { grid-template-columns: 1fr 360px; gap: 44px; } }
@media (max-width: 820px)  { .ct-layout { grid-template-columns: 1fr; gap: 52px; padding: 60px 0; } }

/* ── Contact Form ────────────────────────────── */
.ct-form-wrap { }
.ct-form-title {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.ct-form-subtitle {
  font-size: .84rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 540px) { .ct-form__row { grid-template-columns: 1fr; } }

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ct-field__label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 14px 18px 0;
  background: var(--surf);
  transition: color .3s;
}
.ct-field:focus-within .ct-field__label { color: var(--rose); }

.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--ff-b);
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--surf);
  border: none;
  border-bottom: 2px solid transparent;
  outline: none;
  padding: 6px 18px 14px;
  width: 100%;
  transition: border-color .3s, background .3s;
  resize: none;
  appearance: none;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--ink3); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-bottom-color: var(--rose);
  background: var(--rose-p);
}
.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='%23A8998C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}
.ct-field textarea { min-height: 120px; }

/* Divider between fields */
.ct-form__row + .ct-form__row,
.ct-form__row + .ct-field,
.ct-field + .ct-field,
.ct-field + .ct-form__row { margin-top: 2px; }

.ct-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0 0;
}
.ct-form__consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--rose);
  cursor: pointer;
}
.ct-form__consent label {
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink2);
  cursor: pointer;
}
.ct-form__consent a { color: var(--rose); border-bottom: 1px solid var(--rose-p); }

.ct-form__submit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Success state */
.ct-form__success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(190,122,98,.1);
  border-left: 3px solid var(--rose);
  font-size: .82rem;
  font-weight: 400;
  color: var(--ink);
}
.ct-form__success svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Info Sidebar ─────────────────────────────── */
.ct-sidebar { display: flex; flex-direction: column; gap: 2px; }

.ct-info-card {
  background: var(--surf);
  padding: 28px 26px;
  transition: background .3s;
}
.ct-info-card:hover { background: var(--rose-p); }

.ct-info-card__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ct-info-card__icon svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.ct-info-card__label {
  font-size: .58rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 8px;
}
.ct-info-card__title {
  font-family: var(--ff-d);
  font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 6px;
}
.ct-info-card__text {
  font-size: .82rem; font-weight: 300; line-height: 1.75; color: var(--ink2);
}
.ct-info-card__text a {
  color: var(--rose); border-bottom: 1px solid var(--rose-p);
  transition: border-color .3s;
}
.ct-info-card__text a:hover { border-color: var(--rose); }

/* ── Branches Section ────────────────────────── */
.ct-branches-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 640px) { .ct-branches-head { flex-direction: column; align-items: flex-start; gap: 14px; } }

.ct-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--brd);
}
@media (max-width: 900px) { .ct-branches-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ct-branches-grid { grid-template-columns: 1fr; } }

.ct-branch {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--e);
}
.ct-branch::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--eo);
}
.ct-branch:hover { background: var(--surf); }
.ct-branch:hover::after { transform: scaleX(1); }

.ct-branch__num {
  font-family: var(--ff-d);
  font-size: 4rem; font-weight: 300; line-height: 1;
  color: var(--brd); margin-bottom: 12px;
  transition: color .3s;
}
.ct-branch:hover .ct-branch__num { color: rgba(190,122,98,.12); }

.ct-branch__city {
  font-family: var(--ff-d);
  font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 3px;
}
.ct-branch__district {
  font-size: .6rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 14px;
}
.ct-branch__addr {
  font-size: .8rem; font-weight: 300;
  line-height: 1.7; color: var(--ink2); margin-bottom: 12px;
  flex: 1;
}
.ct-branch__row {
  display: flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 300; color: var(--ink3); margin-bottom: 6px;
}
.ct-branch__row:last-child { margin-bottom: 0; }
.ct-branch__row svg { width: 12px; height: 12px; stroke: var(--ink3); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* ── Map placeholder ─────────────────────────── */
.ct-map {
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--surf);
  position: relative;
  overflow: hidden;
  margin-top: 2px;
}
@media (max-width: 640px) { .ct-map { aspect-ratio: 16/9; } }

.ct-map img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
  filter: grayscale(30%) sepia(10%);
}
.ct-map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  pointer-events: none;
}
.ct-map__pin-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(190,122,98,.25), 0 0 0 12px rgba(190,122,98,.1);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(190,122,98,.25), 0 0 0 12px rgba(190,122,98,.1); }
  50%       { box-shadow: 0 0 0 10px rgba(190,122,98,.15), 0 0 0 20px rgba(190,122,98,.05); }
}
.ct-map__pin-label {
  background: var(--dark);
  color: #fff;
  font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  padding: 5px 14px;
  white-space: nowrap;
}
.ct-map__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ct-map__open {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .65rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--dark);
  color: #fff;
  transition: background .3s;
}
.ct-map__open:hover { background: var(--rose); }
.ct-map__open svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Social Bar ──────────────────────────────── */
.ct-social-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--brd);
}
@media (max-width: 640px) { .ct-social-bar { grid-template-columns: repeat(2, 1fr); } }

.ct-social-item {
  background: var(--dark);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background .35s;
}
.ct-social-item:hover { background: var(--dark2); }
.ct-social-item:nth-child(2):hover { background: #833ab4; }
.ct-social-item:nth-child(3):hover { background: #ff0050; }
.ct-social-item:nth-child(4):hover { background: #ff0000; }

.ct-social-item__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-social-item__icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.ct-social-item__name {
  font-family: var(--ff-d); font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.85); margin-bottom: 2px;
}
.ct-social-item__handle {
  font-size: .65rem; font-weight: 300; letter-spacing: .06em;
  color: rgba(255,255,255,.35);
}

/* ── Working Hours card ──────────────────────── */
.ct-hours {
  background: var(--surf);
  padding: 36px 36px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 640px) { .ct-hours { gap: 28px; padding: 28px 22px; } }

.ct-hours__group { }
.ct-hours__day {
  font-size: .6rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 6px;
}
.ct-hours__time {
  font-family: var(--ff-d); font-size: 1.6rem; font-weight: 300;
  color: var(--ink); line-height: 1;
}
.ct-hours__note {
  font-size: .72rem; font-weight: 300; color: var(--ink3); margin-top: 4px;
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 60px;
    align-items: start;
}

.contact-grid > div {
    background: var(--surf);
    padding: 34px 32px;
}

.contact-grid h2 {
    font-family: var(--ff-d);
    font-size: 2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 16px;
}

.contact-grid p {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--ink2);
}

.contact-grid a {
    color: var(--rose);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--surf);
    padding: 34px 32px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--ff-b);
    font-size: .9rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--brd);
    outline: none;
    padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--rose);
}

.contact-form label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    line-height: 1.6;
    color: var(--ink2);
}

.contact-form label input {
    width: auto;
    margin-top: 4px;
}

.contact-form .btn-p {
    align-self: flex-start;
    margin-top: 8px;
}

.map {
    margin-top: 24px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .contact-grid > div,
    .contact-form {
        padding: 26px 22px;
    }
}

.map {
    margin-top: 24px;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--surf);
}

.map iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}
