/* yalnızca ana sayfayı hedefle */
.home .only-mobile { display: none; }

/* 768px ve altı: mobil görünür */
@media (max-width: 767.98px) {
  .home .only-mobile { display: block; }
}

/* hero'yu bağıl konteyner yap (absolute çocuklar için) */
.home .hero { position: relative; }

/* panel: HERO İÇİNDE alta sabit (absolute), KAYDIRILABİLİR */
.mobile-quick-panel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 5;               /* yazının ve videonun üstünde */
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}

/* yazıların panelle çakışmaması için mobilde alttan tampon */
@media (max-width: 767.98px) {
  .home .hero .wrapper { padding-bottom: 140px; } /* butonlara yer aç */
}

/* satırlar */
.mobile-quick-panel .mq-row {
  display: flex;
  gap: 10px;           /* yan yana boşluk */
  margin-top: 6px;     /* satırlar arası boşluk */
}

/* sadece ilk satır (turuncu buton) ortalansın */
.mobile-quick-panel .mq-row:first-child {
  justify-content: center;
}
.mobile-quick-panel .mq-primary {
  min-width: 70%;       /* genişliği %70 */
  text-align: center;
}

/* iki sütunlu satırlar */
.mobile-quick-panel .mq-grid .mq-btn {
  flex: 1 1 48%;        /* %50 yerine %48 → arada boşluk */
  font-size: 14px;      /* yazıyı biraz küçült */
  padding: 8px 10px;    /* iç boşluk azaldı */
}

/* buton görünümü */
.mobile-quick-panel .mq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-decoration: none;
  background: rgba(34,34,34,.9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
}

/* marka rengi: rezervasyon */
.mobile-quick-panel .mq-primary {
  background: #f58222;
  color: #fff;
}

/* buton aktif efekti */
.mobile-quick-panel .mq-btn:active {
  transform: translateY(1px);
}

/* güvenli alan (çentik) */
@supports (padding: max(0px)) {
  .mobile-quick-panel {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

/* masaüstünde tamamen gizle (emniyet) */
@media (min-width: 768px) {
  .mobile-quick-panel { display: none !important; }
}


/* sadece mobil (max 767px) için TR/EN linklerini koyu renk yap */
@media (max-width: 767.98px) {
  .lang-switch .lang {
    color: #242424 !important; /* koyu gri/siyah */
    font-weight: 600;          /* biraz kalın olsun */
  }
  .lang-switch .sep {
    color: #242424 !important;
  }
}

/* Responsive Google Maps embed */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}