/* ── Contact Page ─────────────────────────────────────────────── */

body,
.site-main {
  background-color: #ffffff !important;
}

.contact-page {
  padding-bottom: 80px;
  background-color: #ffffff !important;
}

/* ── Hero ────────────────────────────────────────────────────── */
.contact-hero {
  background: #ffffff;
  padding: 40px 0 30px;
  margin-bottom: 48px;
}

.contact-hero__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #0a2540;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-hero__sub {
  color: #5a6f86;
  font-size: 15px;
  margin: 0;
  max-width: 480px;
}

/* ── Map + Info Grid ─────────────────────────────────────────── */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin-bottom: 72px;
}

/* ── Map ─────────────────────────────────────────────────────── */
.contact-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #edf1f6;
  background: #ffffff;
  aspect-ratio: 4/3;
  min-height: 320px;
}

.contact-map__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: #5a6f86;
  text-align: center;
  padding: 40px 32px;
}

.contact-map__placeholder p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}

/* ── Info Panel ──────────────────────────────────────────────── */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  padding: 26px 22px;
}

.contact-info-panel__name {
  font-size: 19px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f6;
  line-height: 1.3;
}

/* ── Info Items ──────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f6;
  text-decoration: none;
  color: inherit;
  transition: background .1s;
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-item--link {
  cursor: pointer;
  border-radius: 8px;
  margin: 0 -8px;
  padding: 12px 8px;
}

.contact-info-item--link:hover .contact-info-item__value {
  color: #1098a2;
}

.contact-info-item--link:hover {
  background: rgba(16,152,162,0.05);
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(16,152,162,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1098a2;
}

.contact-info-item__icon--wa {
  background: rgba(37,211,102,0.12);
  color: #25d366;
}

.contact-info-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-info-item__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5a6f86;
}

.contact-info-item__value {
  font-size: 14px;
  color: #0a2540;
  line-height: 1.55;
  transition: color .15s;
}

/* ── Sosyal Medya Hesaplarımız ─────────────────────────────────── */
.contact-social-section {
  margin-bottom: 40px;
  text-align: center;
}

.contact-social-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5a6f86;
  margin: 0 0 16px;
}

.contact-social-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.contact-social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0a2540;
  text-decoration: none;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  transition: border-color .15s, color .15s, background .15s;
}

.contact-social-chip svg {
  color: #1098a2;
}

.contact-social-chip:hover {
  border-color: #1098a2;
  color: #1098a2;
  background: rgba(16,152,162,0.05);
}

.contact-social-chip--disabled {
  color: #b7c2cd;
  cursor: not-allowed;
  background: #fbfcfd;
}

.contact-social-chip--disabled svg {
  color: #cbd5e0;
}

.contact-social-chip--disabled:hover {
  border-color: #edf1f6;
  color: #b7c2cd;
  background: #fbfcfd;
}

/* ── Google Review Badge ─────────────────────────────────────── */
.contact-review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,152,162,0.06);
  border: 1px solid rgba(16,152,162,0.22);
  border-radius: 10px;
  padding: 11px 14px;
  text-decoration: none;
  margin: 6px 0 2px;
  transition: background .15s;
}

.contact-review-badge:hover {
  background: rgba(16,152,162,0.12);
}

.contact-review-badge__stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  flex-shrink: 0;
  line-height: 1;
}

.contact-review-badge__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact-review-badge__body strong {
  font-size: 14px;
  color: #0a2540;
  font-weight: 600;
}

.contact-review-badge__body span {
  font-size: 12px;
  color: #5a6f86;
}

.contact-review-badge__arrow {
  color: #5a6f86;
  flex-shrink: 0;
}

/* ── CTA Group ───────────────────────────────────────────────── */
.contact-cta-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #edf1f6;
}

.contact-cta-group .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  width: 100%;
  border-radius: 10px;
  text-decoration: none;
}

.contact-cta__wa {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
  font-weight: 600;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.contact-cta__wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .28);
}

/* ── Mesaj Formu ─────────────────────────────────────────────── */
.contact-form-section {
  margin-bottom: 72px;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #edf1f6;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(10, 37, 64, 0.04), 0 2px 8px rgba(10, 37, 64, 0.02);
  padding: 40px;
}

.contact-form-head {
  text-align: center;
  margin-bottom: 28px;
}

.contact-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1098a2;
  margin-bottom: 10px;
}

.contact-form-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(16, 152, 162, .55);
}

.contact-form-head h2 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: #0f172a; /* Premium slate color */
  margin: 0 0 8px;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-head p {
  font-size: 14px;
  color: #5a6f86;
  margin: 0;
}

.contact-form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-form-alert--success {
  background: rgba(21, 128, 61, .08);
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, .18);
}

.contact-form-alert--error {
  background: rgba(185, 28, 28, .07);
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, .18);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field span {
  font-size: 12.5px;
  font-weight: 600;
  color: #0a2540;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font: inherit;
  font-size: 14px;
  color: #0a2540;
  padding: 11px 14px;
  border: 1px solid #d8e3ec;
  border-radius: 9px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #1098a2;
  box-shadow: 0 0 0 3px rgba(16, 152, 162, .12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 13px;
  color: #5a6f86;
  line-height: 1.5;
}

.contact-form__check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-form__check a {
  color: #1098a2;
  font-weight: 600;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
  width: 100%;
  margin: 22px auto 0;
  padding: 13px 20px;
  border-radius: 10px;
  background: #1098a2;
  color: #fff;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.contact-form__submit:hover {
  background: #0c7a82;
  transform: translateY(-1px);
}

/* ── Çalışma Saatleri ─────────────────────────────────────────── */
.contact-hours {
  margin: 0 0 72px;
}

.contact-hours__head {
  text-align: left; /* Sol sütunla (SSS) tutarlı olması için sola hizalandı */
  margin-bottom: 32px;
}

.contact-hours__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1098a2;
  margin-bottom: 10px;
}

.contact-hours__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(16, 152, 162, .55);
}

.contact-hours__head h2 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: #0f172a; /* Premium slate color */
  margin: 0 0 8px;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hours__head p {
  font-size: 14px;
  color: #5a6f86;
  margin: 0;
  max-width: 460px;
  line-height: 1.6;
}

.contact-hours__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(16, 152, 162, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(10, 37, 64, 0.04), 0 2px 8px rgba(10, 37, 64, 0.02);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.contact-hours__card:hover {
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.06), 0 4px 12px rgba(10, 37, 64, 0.03);
}

.contact-hours__status {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(16, 152, 162, 0.02);
  border-bottom: 1px solid rgba(16, 152, 162, 0.08);
}

.contact-hours__status-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-hours__status-day {
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 700;
  color: #0a2540;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.contact-hours__status-date {
  font-size: 14px;
  color: #5a6f86;
}

.contact-hours__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  width: fit-content;
}

.contact-hours__status-badge.is-open {
  background: rgba(21, 128, 61, .10);
  color: #15803d;
}

.contact-hours__status-badge.is-closed {
  background: rgba(185, 28, 28, .09);
  color: #b91c1c;
}

.contact-hours__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: contact-hours-pulse 2s ease-in-out infinite;
}

@keyframes contact-hours-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

.contact-hours__status-time {
  font-variant-numeric: tabular-nums;
}

.contact-hours__next-open {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(16, 152, 162, 0.15);
  box-shadow: 0 2px 8px rgba(16, 152, 162, 0.04);
  margin-left: auto;
  flex-shrink: 0; /* İçeriğin sıkışmasını engeller */
  max-width: 100%;
}

.contact-hours__next-open-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 152, 162, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1098a2;
}

.contact-hours__next-open-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-hours__next-open-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #1098a2;
  opacity: .85;
}

.contact-hours__next-open-time {
  font-size: 13.5px;
  font-weight: 600;
  color: #0a2540;
  line-height: 1.35;
  white-space: normal; /* Uzun yazılarda alt satıra kaysın ama sıkışmasın */
}

.contact-hours__divider {
  display: none;
}

.contact-hours__list {
  list-style: none;
  margin: 0;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #5a6f86;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.contact-hours__row:hover {
  background: rgba(16, 152, 162, 0.02);
  border-color: rgba(16, 152, 162, 0.06);
  transform: translateX(4px);
}

.contact-hours__row.is-today {
  background: rgba(16, 152, 162, 0.05);
  border-color: rgba(16, 152, 162, 0.2);
  color: #0a2540;
  font-weight: 600;
}

.contact-hours__day {
  flex: 1;
}

.contact-hours__time {
  font-variant-numeric: tabular-nums;
  font-size: 13.5px;
  color: #0a2540;
}

.contact-hours__row.is-today .contact-hours__time {
  color: #1098a2;
  font-weight: 700;
}

.contact-hours__closed {
  font-size: 13px;
  color: #b91c1c;
  font-weight: 500;
}

/* ── Alt Izgara & SSS (FAQ) ────────────────────────────────────────── */
.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.contact-faq-section {
  display: flex;
  flex-direction: column;
}

.contact-faq-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(16, 152, 162, 0.04);
  border: 1px solid rgba(16, 152, 162, 0.16);
  border-radius: 12px;
}

.contact-faq-more__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-faq-more__body strong {
  font-size: 14.5px;
  color: #0a2540;
  font-weight: 700;
}

.contact-faq-more__body span {
  font-size: 13px;
  color: #5a6f86;
}

.contact-faq-more__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 9px 16px;
  border-radius: 8px;
  background: #1098a2;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}

.contact-faq-more__cta:hover {
  background: #0c7a82;
  transform: translateY(-1px);
}

.contact-faq-head {
  margin-bottom: 32px;
}

.contact-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1098a2;
  margin-bottom: 10px;
}

.contact-faq-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(16, 152, 162, 0.55);
}

.contact-faq-head h2 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: #0f172a; /* Premium slate color */
  margin: 0 0 8px;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-faq-head p {
  font-size: 14px;
  color: #5a6f86;
  margin: 0;
  line-height: 1.6;
}

.contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-faq-item {
  background: #ffffff;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-faq-item:hover {
  border-color: rgba(16, 152, 162, 0.3);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
}

.contact-faq-item[open] {
  border-color: rgba(16, 152, 162, 0.5);
  box-shadow: 0 6px 16px rgba(10, 37, 64, 0.06);
}

.contact-faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0a2540;
  cursor: pointer;
  list-style: none; /* Hide default triangle */
}

.contact-faq-item__summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item__icon {
  color: #1098a2;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-faq-item[open] .contact-faq-item__icon {
  transform: rotate(45deg);
}

.contact-faq-item__content {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: #5a6f86;
  line-height: 1.65;
}

.contact-faq-item__content p {
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-bottom-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    aspect-ratio: 16/9;
    min-height: 260px;
  }

  .contact-social-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 28px 0 22px;
    margin-bottom: 32px;
  }

  .contact-info-panel {
    padding: 20px 16px;
  }

  .contact-hours__status {
    flex-direction: column;
  }

  .contact-hours__list {
    padding: 22px 20px 24px;
  }

  .contact-hours {
    margin-bottom: 48px;
  }

  .contact-map-wrap {
    aspect-ratio: 4/3;
  }

  .contact-social-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}
