/* =========================
   THEME TOKENS (🇷🇺 Rusya)
========================= */
:root{
  --ru-blue: #1c57b7;
  --ru-blue-2:#0f3f95;
  --ru-red:  #c9162a;
  --ru-red-2:#9f0f1f;

  --ink:   #0f172a;
  --muted: #475569;
  --muted2:#64748b;

  --border: rgba(15,23,42,.08);
  --shadow-sm: 0 8px 24px rgba(15,23,42,.06);
  --shadow-md: 0 10px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 14px 40px rgba(15,23,42,.10);

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 26px;

  --grad-primary: linear-gradient(135deg, var(--ru-blue), var(--ru-red));
  --focus-ring: 0 0 0 4px rgba(28,87,183,.14);
}

/* =========================
   HERO
========================= */
.enb-hero{
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* CTA Buttons */
.enb-cta-primary{
  background: var(--grad-primary);
  color:#fff;
}
.enb-cta-primary:hover{ filter: brightness(1.05); }

.enb-cta-ghost{
  background: rgba(238,244,255,.10);
  border: 1px solid rgba(238,244,255,.18);
  color:#fff;
}
.enb-cta-ghost:hover{ background: rgba(238,244,255,.14); }

.enb-cta-dark{
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(238,244,255,.18);
  color:#fff;
}
.enb-cta-dark:hover{ background: rgba(15,23,42,.95); }

/* =========================
   CARDS
========================= */
.enb-info-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.enb-info-card__t{
  font-size: 12px;
  color: var(--muted2);
  font-weight: 700;
}
.enb-info-card__d{
  margin-top: 2px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
}

.enb-quote-box{
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(180deg, rgba(28,87,183,.10), #fff);
  border: 1px solid rgba(28,87,183,.25);
  box-shadow: var(--shadow-lg);
}

/* Mini buttons */
.enb-mini-btn{
  display:block;
  text-align:center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 13px;
  background: rgba(28,87,183,.10);
  border: 1px solid rgba(28,87,183,.20);
  color: var(--ink);
}
.enb-mini-btn.-dark{
  background: var(--ink);
  border-color: rgba(15,23,42,.25);
  color:#fff;
}

/* =========================
   ROUTES
========================= */
.enb-route-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.enb-route-card__h{
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}
.enb-route-card__p{
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.enb-ul{
  margin-top: 12px;
  padding-left: 18px;
  color:#334155;
  font-size: 13px;
}
.enb-ul li{ margin: 6px 0; }
.enb-ul.-compact{ margin-top: 10px; font-size: 13px; }
.enb-note{ margin-top: 10px; font-size: 12px; color: var(--muted2); }

/* =========================
   PACKS
========================= */
.enb-pack{
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px;
  background:#fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.enb-pack.-featured{
  background: linear-gradient(180deg, rgba(28,87,183,.10), #fff);
  border: 2px solid rgba(28,87,183,.55);
}

.enb-pack__tag{
  position:absolute;
  top: -12px;
  right: 14px;
  background: var(--ru-red);
  color:#fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(201,22,42,.22);
}

.enb-pack__h{ font-size: 18px; font-weight: 900; color: var(--ink); }
.enb-pack__price{ margin-top: 10px; display:flex; align-items: baseline; gap:10px; }
.enb-pack__eur{ font-size: 30px; font-weight: 1000; color: var(--ink); }
.enb-pack__try{ font-size: 13px; font-weight: 800; color: var(--muted2); }
.enb-pack__p{ margin-top: 8px; font-size: 13px; color: var(--muted); }

.enb-pack__btn{
  display:block;
  margin-top: 14px;
  text-align:center;
  padding: 12px;
  border-radius: 16px;
  font-weight: 1000;
  font-size: 13px;
  color:#fff;
  background: var(--grad-primary);
  box-shadow: 0 14px 28px rgba(28,87,183,.18);
}
.enb-pack__btn:hover{ filter: brightness(1.05); }

/* =========================
   FORM
========================= */
.enb-formwrap{
  border-radius: var(--radius-xl);
  padding: 22px;
  background: linear-gradient(180deg, rgba(15,23,42,.04), #fff);
  border: 1px solid var(--border);
  box-shadow: 0 16px 50px rgba(15,23,42,.08);
}

.enb-tick{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
}

.enb-form{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
}

.enb-field span{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color:#334155;
  margin-bottom: 6px;
}
.enb-field input,
.enb-field select{
  width:100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,23,42,.12);
  outline: none;
}

.enb-field input:focus,
.enb-field select:focus{
  border-color: rgba(28,87,183,.60);
  box-shadow: var(--focus-ring);
}

.enb-submit{
  width:100%;
  margin-top: 12px;
  height: 48px;
  border-radius: 16px;
  font-weight: 1000;
  font-size: 14px;
  color:#fff;
  background: var(--grad-primary);
  border: none;
  cursor: pointer;
}
.enb-submit:hover{ filter: brightness(1.05); }

/* =========================
   FAQ
========================= */
.enb-faq{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.enb-faq h3{ font-weight: 1000; color: var(--ink); }
.enb-faq p{ margin-top: 6px; color: var(--muted); }


.enb-tripbar{
  margin-top: 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
}
.enb-tripbar__t{
  font-size: 12px;
  opacity: .85;
  margin-bottom: .4rem;
  text-align:center;
}
.enb-tripbar__items{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:center;
  align-items:center;
}
.enb-tripbar__a{
  display:inline-flex;
  gap:.35rem;
  align-items:center;
  padding:.4rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  font-size: 12px;
  text-decoration:none;
  color: #fff;
}
.enb-tripbar__a:hover{ background: rgba(255,255,255,.14); }
.enb-tripbar__sep{ opacity:.6; font-size:12px; }
.enb-tripbar__sub{
  margin-top:.45rem;
  font-size:12px;
  opacity:.85;
  text-align:center;
}

.enb-inlink{
  text-decoration: underline;
  font-weight: 800;
}
.enb-dot{ margin: 0 .35rem; opacity: .6; }

.enb-addons{
  display:grid;
  gap:.6rem;
  margin-top:.75rem;
}
.enb-addon{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding:.65rem .75rem;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  background: rgba(2,6,23,.02);
}
.enb-addon input{ transform: scale(1.05); }
.enb-addon a{ margin-left:auto; font-size:12px; opacity:.9; }

.enb-kvkk{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  padding:.7rem .75rem;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  background: rgba(2,6,23,.02);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(15,23,42,.85);
}
.enb-kvkk input{
  margin-top:.2rem;
  transform: scale(1.05);
}

/* Etiket çakışmasını bitirir */
.enb-pack--tagspace{ position:relative; padding-top:44px; }
.enb-pack__tag{
  position:absolute; top:12px; right:12px; z-index:5;
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  font-size:11px; line-height:1; white-space:nowrap;
  max-width:calc(100% - 24px);
  overflow:hidden; text-overflow:ellipsis;
}

/* Paket kart micro text */
.enb-pack__micro{
  margin-top:10px;
  font-size:12px;
  color:#64748b;
}

/* Dahil / Hariç mini paneller (GYG hissi) */
.enb-mini-panels{
  margin-top:12px;
  display:grid;
  gap:10px;
  grid-template-columns:1fr 1fr;
}
.enb-mini-panel{
  border:1px solid rgba(15,23,42,.08);
  background:rgba(248,250,252,.7);
  border-radius:12px;
  padding:10px;
}
.enb-mini-panel__t{
  font-size:12px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}
.enb-mini-panel ul{ margin:0; padding-left:16px; }
.enb-mini-panel li{ font-size:12px; color:#334155; margin:4px 0; }

@media (max-width:640px){
  .enb-pack--tagspace{ padding-top:40px; }
  .enb-pack__tag{ top:10px; right:10px; font-size:10.5px; padding:6px 9px; }
  .enb-mini-panels{ grid-template-columns:1fr; }
}

/* Mobil yatay scroll bar daha şık */
#paketler .overflow-x-auto{ scrollbar-width: thin; }
#paketler .overflow-x-auto::-webkit-scrollbar{ height:8px; }
#paketler .overflow-x-auto::-webkit-scrollbar-thumb{ border-radius:999px; background:rgba(15,23,42,.18); }
#paketler .overflow-x-auto::-webkit-scrollbar-track{ background:rgba(15,23,42,.06); border-radius:999px; }


/* Genel CTA animasyon */
.enb-cta-primary,
.enb-cta-ghost,
.enb-cta-dark,
.enb-pack__btn,
.enb-mini-btn {
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.enb-cta-primary:hover,
.enb-cta-ghost:hover,
.enb-cta-dark:hover,
.enb-pack__btn:hover,
.enb-mini-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

@keyframes enbBreath {
  0%   { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
  50%  { transform: scale(1.04); box-shadow: 0 12px 30px rgba(99,102,241,.45); }
  100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
}

@media (max-width: 640px) {
  .enb-cta-primary,
  .enb-cta-dark {
    animation: enbBreath 3.5s ease-in-out infinite;
  }

  .enb-cta-primary:active,
  .enb-cta-dark:active {
    animation: none;
    transform: scale(0.96);
  }
}
@media (max-width: 640px) {
  .enb-cta-primary {
    animation: enbBreath 3.5s ease-in-out infinite;
  }

  .enb-cta-dark {
    animation: enbBreath 4s ease-in-out infinite;
  }
}

.enb-selected-pack {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #1e293b;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  animation: fadeInUp .35s ease;
}

.enb-pack-clear {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  opacity: .6;
}

.enb-pack-clear:hover {
  opacity: 1;
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(8px); }
  to { opacity:1; transform:translateY(0); }
}

/* =========================
   ENB TURİZM BLOKLARI
========================= */
.enb-pill{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.35rem .65rem; border-radius:999px;
  font-size:.75rem; font-weight:700;
  background:rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.10);
}
.enb-pill.-soft{ background:rgba(99,102,241,.10); border-color:rgba(99,102,241,.18); }

.enb-chip{
  display:inline-flex; align-items:center;
  padding:.35rem .55rem;
  border-radius:999px;
  font-size:.75rem;
  background:rgba(2,6,23,.04);
  border:1px solid rgba(2,6,23,.08);
}

/* ✅ Rehber kartı */
.enb-guide{
  display:grid; grid-template-columns: 120px 1fr;
  gap:14px;
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.enb-guide__img{
  width:120px; height:120px;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  border:1px solid rgba(2,6,23,.08);
}
.enb-guide__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.enb-guide__name{ font-weight:900; font-size:1.05rem; color:#0f172a; }
.enb-guide__role{ font-size:.85rem; color:#475569; margin-top:2px; }
.enb-guide__meta{ margin-top:8px; font-size:.82rem; color:#475569; display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.enb-guide__areas{ margin-top:10px; display:flex; flex-wrap:wrap; gap:8px; }
.enb-guide__cta{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }

/* ✅ Rota kartı */
.enb-spot{
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.enb-spot__head{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.enb-spot__h{ font-weight:900; font-size:1.05rem; color:#0f172a; }
.enb-spot__sub{ margin-top:4px; font-size:.8rem; color:#64748b; }
.enb-spot__p{ margin-top:10px; color:#475569; line-height:1.7; }
.enb-spot__pins{ margin-top:12px; display:flex; flex-direction:column; gap:8px; }
.enb-pin{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(2,6,23,.03);
  border:1px solid rgba(2,6,23,.06);
  color:#0f172a;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.enb-pin:hover{
  transform: translateY(-2px);
  background:rgba(99,102,241,.08);
  box-shadow: 0 10px 26px rgba(2,6,23,.10);
}
.enb-pin__go{
  font-size:.72rem;
  padding:.25rem .5rem;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
}
.enb-spot__cta{ margin-top:14px; }

/* ✅ Galeri */
.enb-gal{
  display:block;
  width:100%;
  padding-top:70%;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  border:1px solid rgba(2,6,23,.08);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.enb-gal:hover{
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(2,6,23,.12);
}

/* ✅ Adımlar */
.enb-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.enb-step{
  background:rgba(2,6,23,.03);
  border:1px solid rgba(2,6,23,.06);
  border-radius:16px;
  padding:12px;
  font-weight:700;
  color:#0f172a;
  display:flex; gap:10px; align-items:center; justify-content:center;
}
.enb-step__n{
  width:26px; height:26px;
  border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  background:#4f46e5; color:#fff;
  font-size:.8rem;
}
@media (max-width: 640px){
  .enb-guide{ grid-template-columns: 92px 1fr; }
  .enb-guide__img{ width:92px; height:92px; }
  .enb-steps{ grid-template-columns:1fr; }
}
