/* =========================================
   HOME — Packages (Premium)
========================================= */
.ot-packages{
  position: relative;
  padding: 72px 0 76px;
  color: #fff;

  /* full-width kurumsal mor geçiş (section’da radius yok) */
  background: linear-gradient(135deg,
    #140026 0%,
    #3B0764 28%,
    #6D28D9 58%,
    #1D4ED8 100%
  );
  overflow: hidden;
}

.ot-packages__bgFX{
  position:absolute;
  inset:-40% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.14), transparent 42%),
    radial-gradient(circle at 70% 20%, rgba(34,211,238,.16), transparent 38%),
    radial-gradient(circle at 60% 80%, rgba(236,72,153,.18), transparent 45%);
  filter: blur(22px);
  transform: rotate(-10deg);
  opacity: .9;
  animation: otPkgFloat 10s ease-in-out infinite;
}

@keyframes otPkgFloat{
  0%,100%{ transform: translate3d(0,0,0) rotate(-10deg); }
  50%{ transform: translate3d(0,-18px,0) rotate(-10deg); }
}

.ot-packages__head{
  max-width: 860px;
  margin: 0 0 22px;
}

.ot-packages__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.1;
  letter-spacing: .2px;
}

.ot-packages__desc{
  margin: 0;
  opacity: .88;
  max-width: 760px;
}

/* grid */
.ot-packages__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* card (eşit yükseklik) */
.ot-pkgCard{
  position: relative;
  display:flex;
  flex-direction: column;
  min-height: 560px;

  padding: 18px 18px 16px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);

  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}

.ot-pkgCard:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.ot-pkgCard__shine{
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 22%, transparent 46%);
  transform: translateX(-60%);
  opacity: .0;
  transition: opacity .18s ease;
}
.ot-pkgCard:hover .ot-pkgCard__shine{
  opacity: .75;
  animation: otPkgShine 1.1s ease;
}
@keyframes otPkgShine{
  from{ transform: translateX(-60%); }
  to{ transform: translateX(70%); }
}

/* popular */
.ot-pkgCard.is-popular{
  border-color: rgba(236,72,153,.55);
  box-shadow: 0 26px 80px rgba(236,72,153,.12), 0 18px 50px rgba(0,0,0,.18);
}
.ot-pkgCard.is-popular:hover{
  border-color: rgba(236,72,153,.70);
}

/* top */
.ot-pkgCard__kicker{
  display:inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  opacity: .92;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.12);
  margin-bottom: 12px;
}

.ot-pkgCard__row{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ot-pkgCard__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: .2px;
}

.ot-pkgCard__badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  color: #140026;
  background: linear-gradient(90deg, rgba(236,72,153,1), rgba(34,211,238,1));
  box-shadow: 0 14px 30px rgba(236,72,153,.18);
  white-space: nowrap;
}

.ot-pkgCard__desc{
  margin: 12px 0 0;
  opacity: .90;
}

/* meta list */
.ot-pkgCard__meta{
  list-style:none;
  margin: 14px 0 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.ot-pkgCard__meta li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  opacity: .95;
}

.ot-pkgCard__meta i{
  opacity: .95;
}

/* middle */
.ot-pkgCard__mid{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.ot-pkgCard__sub{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
  opacity: .95;
}

.ot-pkgCard__features{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 9px;
}

.ot-pkgCard__features li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  opacity: .92;
}

.ot-pkgCard__features i{
  opacity: .95;
}

/* bottom CTA */
.ot-pkgCard__bottom{
  margin-top: auto;
  padding-top: 14px;
}

.ot-pkgBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  font-weight: 900;
  text-decoration: none;

  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, #2b7bff 0%, #6a3df0 55%, #22d3ee 120%);
  box-shadow: 0 14px 34px rgba(43,123,255,.18);

  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.ot-pkgBtn:hover{
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow: 0 18px 44px rgba(43,123,255,.22);
}

/* =========================================
   OTEL SİTESİ PAKETLERİ — FULL WIDTH FIX
   Paket section içerik max-width kısıtından çıkar
========================================= */

/* Shortcode wrapper varsa (biz eklemiştik) */
.ot-shortcode-packages{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Ek güvenlik: section da aynı şekilde breakout */
.ot-shortcode-packages .ot-packages{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}


/* responsive */
@media (max-width: 1100px){
  .ot-packages__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ot-pkgCard{ min-height: 520px; }
}
@media (max-width: 560px){
  .ot-packages{ padding: 56px 0 60px; }
  .ot-packages__grid{ grid-template-columns: 1fr; }
  .ot-pkgCard{ min-height: auto; }
}