:root{
  --bg:#eef6ff;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#5c6b85;
  --line:#e7edf6;
  --blue:#1677ff;
  --blue2:#0f5edb;
  --shadow: 0 10px 30px rgba(10,30,70,.08);
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, #e9f6ff 0%, var(--bg) 35%, #f7fbff 100%);
}
a{color:inherit;text-decoration:none}

.container{max-width:1200px;margin:0 auto;padding:0 16px}

/* topbar */
.topbar{
  height:72px;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:22px}
.brand .dot{width:14px;height:14px;border-radius:999px;background:linear-gradient(135deg,#ffb200,#ff7a00)}
.nav{display:flex;align-items:center;gap:18px;color:var(--muted);font-weight:600}
.nav .pill{padding:10px 14px;border:1px solid var(--line);border-radius:999px;background:#fff;box-shadow:0 6px 18px rgba(0,0,0,.04)}
.nav .right{display:flex;align-items:center;gap:10px}
.btn-ghost{padding:10px 12px;border-radius:12px;border:1px solid var(--line);background:#fff}
.btn-primary{padding:10px 14px;border-radius:12px;border:0;background:var(--blue);color:#fff;font-weight:700}
.btn-primary:hover{background:var(--blue2)}

/* hero */
.hero{padding:22px 0 14px}
.heroGrid{
  display:grid;grid-template-columns: 1.15fr .85fr;gap:18px;
  align-items:center;
}
.hero h1{
  margin:0 0 10px;
  font-size:56px;line-height:1.02;
  letter-spacing:-1.2px;
}
.hero p{margin:0;color:var(--muted);font-size:18px;max-width:560px}
.heroArt{
  min-height:240px;
  border-radius:28px;
  background:
    radial-gradient(140px 120px at 30% 35%, rgba(22,119,255,.18), transparent 60%),
    radial-gradient(160px 130px at 70% 55%, rgba(255,170,0,.18), transparent 60%),
    linear-gradient(135deg,#ffffff, #f2f8ff);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

/* searchbar */
.searchWrap{
  margin-top:18px;
  background: rgba(255,255,255,.8);
  border:1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow:hidden;
}

/* HERO Tabs (Otobüs / Uçak) */
.heroTabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 10px;
}
.tabBtn{
  appearance:none;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.18);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  line-height:1;
}
.tabBtn:hover{background:rgba(0,0,0,.28)}
.tabBtn.isActive{
  background:#fff;
  color:var(--text);
  border-color:#fff;
}
.tabPane{margin-top:10px;}
.searchRow{
  display:grid;
  grid-template-columns: 1.15fr 1.15fr .9fr .8fr;
  gap:0;
}
.field{
  position:relative;
  padding:14px 16px;
  border-right:1px solid var(--line);
}
.field:last-child{border-right:0}
.label{font-size:12px;color:var(--muted);font-weight:700;margin-bottom:6px}
.input{
  width:100%;
  border:0;background:transparent;
  font-size:18px;font-weight:700;
  outline:none;color:var(--text);
}
.sub{font-size:12px;color:var(--muted);margin-top:6px}
.swap{
  position:absolute;right:-18px;top:50%;
  transform:translateY(-50%);
  width:36px;height:36px;border-radius:12px;
  border:1px solid var(--line);background:#fff;
  box-shadow:0 10px 20px rgba(10,30,70,.08);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.searchBtn{
  height:100%;
  border:0;
  background:linear-gradient(135deg,var(--blue), var(--blue2));
  color:#fff;
  font-weight:800;
  font-size:18px;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
}

/* autocomplete */
.acBox{
  position:absolute;left:14px;right:14px;top:70px;
  background:#fff;border:1px solid var(--line);
  border-radius:16px;box-shadow:var(--shadow);
  overflow:hidden;z-index:50;
}
.acItem{
  padding:12px 12px;
  display:flex;align-items:center;justify-content:space-between;
  cursor:pointer;
}
.acItem:hover,.acItem.active{background:#f5f8ff}
.acName{font-weight:800}
.acMeta{font-size:12px;color:var(--muted)}

/* results layout */
.resultsTop{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  margin:18px 0 12px;
}
.chips{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  padding:10px 14px;border-radius:999px;
  border:1px solid var(--line);background:#fff;
  font-weight:800;color:var(--muted);
  cursor:pointer;
}
.chip.active{border-color:rgba(22,119,255,.35);background:#eef5ff;color:var(--text)}
.layout{
  display:grid;grid-template-columns: 320px 1fr;gap:16px;
  align-items:start;
}
.panel{
  background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow);
  padding:14px;
}
.panel h3{margin:4px 0 12px;font-size:14px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.panel .opt{display:flex;align-items:center;gap:10px;padding:10px;border-radius:12px}
.panel .opt:hover{background:#f7faff}
.panel input{transform:scale(1.1)}
.list{
  display:flex;flex-direction:column;gap:12px;
}
.card{
  background:#fff;border:1px solid var(--line);
  border-radius:22px;box-shadow:var(--shadow);
  padding:14px 14px;
}
.cardRow{
  display:grid;grid-template-columns: 260px 1fr 160px;
  gap:12px;align-items:center;
}
.company{
  display:flex;align-items:center;gap:12px;
}
.logo{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);background:#fff;object-fit:contain;
}
.company .name{font-weight:900}
.company .meta{font-size:12px;color:var(--muted)}
.times{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.timeBig{font-size:28px;font-weight:950;letter-spacing:-.6px}
.station{color:var(--muted);font-weight:700}
.badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px}
.badge{font-size:12px;color:var(--muted);font-weight:800;border:1px solid var(--line);padding:6px 10px;border-radius:999px;background:#fff}
.priceBox{
  display:flex;align-items:center;justify-content:flex-end;gap:10px;
}
.price{
  font-size:22px;font-weight:950;color:var(--blue2)
}
.go{
  width:44px;height:44px;border-radius:16px;
  border:0;background:var(--blue);color:#fff;font-weight:900;
  cursor:pointer;
}
.go:hover{background:var(--blue2)}
.go{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:18px;
  background:#0b67ff;
  color:#fff;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(11,103,255,.25);
}
.go svg{ display:block; }

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .hero h1{font-size:44px}
  .searchRow{grid-template-columns:1fr}
  .field{border-right:0;border-bottom:1px solid var(--line)}
  .field:last-child{border-bottom:0}
  .swap{display:none}
  .layout{grid-template-columns:1fr}
  .cardRow{grid-template-columns:1fr}
  .priceBox{justify-content:space-between}
}
/* --- Autocomplete dropdown (clickable + above everything) --- */
.field{ position:relative; }

.ac-list{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 12px);
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:26px;
  box-shadow: 0 22px 60px rgba(15,23,42,.18);
  padding:16px;
  max-height: 360px;
  overflow:auto;
  z-index:9999;
}

/* header like "Son aramalar" */
.ac-head{ padding: 4px 6px 12px 6px; }
.ac-title{
  font-weight: 900;
  letter-spacing: -.3px;
  font-size: 20px;
  color: var(--text);
}

.ac-empty{ padding:12px 12px; color: var(--muted); font-weight:700; }

.ac-item{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 14px;
  border:0;
  background: rgba(11,103,255,.08);
  cursor:pointer;
  text-align:left;
  font: inherit;
  border-radius:18px;
}
.ac-item + .ac-item{ margin-top:10px; }

.ac-item:hover{ background: rgba(11,103,255,.08); }

.ac-ico{
  width:44px;height:44px;
  display:inline-flex;
  align-items:center;justify-content:center;
  border-radius:16px;
  background: rgba(11,103,255,.12);
  flex: 0 0 44px;
  font-size: 18px;
}

.ac-txt{ display:flex; flex-direction:column; gap:3px; min-width:0; }
.ac-name{ font-weight:900; font-size:18px; letter-spacing:-.2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ac-meta{ font-size:16px; color: var(--muted); font-size:12px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ac-arr{ margin-left:auto; color: rgba(15,23,42,.45); font-size:18px; }

/* swap butonu dropdown üstüne binmesin */
.swap{
  z-index: 2;               /* düşük tut */
  pointer-events: auto;
}

/* dropdown açıkken swap alanı listeden yüksek olmasın */
#ac-from .ac-list{ z-index:9999; }

/* --- Mobile responsiveness --- */
@media (max-width: 980px){
  .topbar{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav{
    width:100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav .right{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    width:100%;
    justify-content:flex-start;
  }

  .heroGrid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .heroArt{ display:none; } /* mobilde sağ görseli kapat */
}

@media (max-width: 720px){
  .searchRow{
    display:flex;
    flex-direction: column;
    gap: 12px;
  }
  .searchRow .field{
    width:100%;
  }
  .searchBtn{
    width:100%;
    height:52px;
    border-radius:16px;
  }

  /* swap butonu mobilde inputu kapatmasın */
  #ac-from .swap{
    position:absolute;
    right:12px;
    top: 40px;
  }
}

@media (max-width: 420px){
  .container{ padding-left:14px; padding-right:14px; }
  h1{ font-size: 30px; line-height: 1.12; }
}
/* ============ Mobile layout fixes ============ */
.container{ width:100%; max-width:1100px; margin:0 auto; padding: 0 18px; }

@media (max-width: 980px){
  .topbar{ flex-direction:column; align-items:flex-start; gap:10px; }
  .nav{ width:100%; flex-wrap:wrap; gap:10px; }
  .nav .right{ width:100%; display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-start; }
  .heroGrid{ grid-template-columns:1fr; gap:18px; }
  .heroArt{ display:none; }
}

@media (max-width: 720px){
  .searchRow{ display:flex; flex-direction:column; gap:12px; }
  .searchRow .field{ width:100%; }
  .searchBtn{ width:100%; height:52px; border-radius:16px; }
}

/* ===== AUTOCOMPLETE MODERN UI ===== */

.ac-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 9999;
}

/* Header */
.ac-header {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

/* Item */
.ac-item {
  padding: 14px 18px;
  cursor: pointer;
  transition: background .15s ease;
}

.ac-item:hover {
  background: #f3f8ff;
}

/* Text */
.ac-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.ac-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

/* Divider */
.ac-item + .ac-item {
  border-top: 1px solid #eef2f7;
}
/* ================================
   AUTOCOMPLETE — MODERN DROPDOWN
   ================================ */

/* dropdown input altına otursun */
.field { position: relative; }

/* eski chip/btn stilleri varsa etkisizleştir */
.ac-item, .ac-ico, .ac-arr { display: none !important; }

.ac-list{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 9999;
}

/* header */
.ac-head{
  padding: 14px 18px 10px;
}
.ac-head-title{
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

/* empty */
.ac-empty{
  padding: 14px 18px 18px;
  color: #64748b;
  font-size: 14px;
}

/* list body */
.ac-body{
  padding: 6px 8px 10px;
}

/* row */
.ac-row{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.ac-row:hover{ background: #f1f7ff; }
.ac-row:active{ background: #e8f1ff; }
.ac-row:focus{ outline: none; }

/* soft pin (no emoji) */
.ac-pin{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #eaf3ff;
  position: relative;
  flex: 0 0 34px;
}
.ac-pin::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #3b82f6;
}

/* text */
.ac-col{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}
.ac-name{
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}
.ac-sub{
  font-size: 14px;
  color: #64748b;
  line-height: 1.15;
}

/* mobile */
@media (max-width: 520px){
  .ac-list{ border-radius: 18px; }
  .ac-name{ font-size: 15px; }
  .ac-sub{ font-size: 13px; }
}
/* ===== Mobile responsive homepage + Popular routes ===== */

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand .dot{
  width:10px;height:10px;border-radius:999px;
  background:#2b7cff;
  display:inline-block;
}

.hero{
  padding: 10px 0 30px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.heroCopy h1{
  margin: 0 0 10px;
  line-height: 1.1;
  font-size: 38px;
}

.heroCopy p{
  margin: 0 0 18px;
  opacity:.78;
  font-size: 16px;
}

.searchWrap{
  background: rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.searchRow{
  display:flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap; /* ✅ mobile kırılma */
}

.field{
  position: relative;
  flex: 1 1 220px;
  min-width: 220px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
}

.label{
  font-weight: 700;
  margin-bottom: 6px;
  opacity: .9;
}

.input{
  width:100%;
  border: 0;
  outline: none;
  font-size: 18px;
  padding: 2px 0;
}

.sub{
  margin-top: 6px;
  font-size: 13px;
  opacity: .65;
}

.searchBtn{
  flex: 0 0 auto;
  border: 0;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 800;
  cursor: pointer;
  background: #2b7cff;
  color: #fff;
  min-width: 120px;
}

.swapBtn{
  position:absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: #f8fafc;
  cursor: pointer;
  font-size: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ===== Popular routes ===== */
.popular{
  margin-top: 18px;
}

.sectionHead{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 2px 10px;
}

.sectionHead h2{
  margin:0;
  font-size: 18px;
  font-weight: 900;
}

.sectionHead .muted{
  opacity:.65;
  font-size: 13px;
}

.popularGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.routeCard{
  display:block;
  text-decoration:none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.routeCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  background: #fbfdff;
}

.routeTop{
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 900;
}

.routeFrom,.routeTo{
  font-size: 16px;
}

.routeArrow{
  opacity:.55;
  font-weight: 900;
}

.routeSub{
  margin-top: 8px;
  font-size: 13px;
  opacity:.70;
}

/* ===== Flights (Travelpayouts White Label) ===== */
.tpFlights{
  margin-top: 18px;
  padding: 0 0 6px;
}
.tpFlightsInner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.tpFlightsCard{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(10,30,70,.08);
}
.tpFlightsHead{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.tpFlightsHead h2{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}
.tpFlightsSub{
  opacity: .65;
  font-size: 13px;
}

/* Prevent the widget from overflowing on small screens */
#tpwl-search, #tpwl-tickets{ max-width: 100%; overflow: hidden; }

/* ===== Responsive breakpoints ===== */
@media (max-width: 980px){
  .popularGrid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px){
  .heroCopy h1{ font-size: 30px; }
  .field{ flex: 1 1 100%; min-width: 0; }
  .searchBtn{ width: 100%; min-width: 0; } /* ✅ mobilde tam genişlik */
  .popularGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 420px){
  .container{ padding: 14px; }
  .popularGrid{
    grid-template-columns: 1fr; /* küçük ekranda tek sütun */
  }
}
/* ===== SEO ARTICLE ===== */
.seoArticle{
  margin-top: 22px;
  padding: 18px 0 28px;
}

.seoInner{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
}

.seoInner h2{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.seoInner h3{
  margin: 16px 0 8px;
  font-size: 16px;
  font-weight: 900;
}

.seoInner p{
  margin: 8px 0;
  line-height: 1.7;
  opacity: .88;
}

.seoInner ul{
  margin: 10px 0 0 18px;
  padding: 0;
}

.seoInner li{
  margin: 6px 0;
  line-height: 1.6;
}

.faq{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faqItem{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px;
  background: #fbfdff;
}

.faqItem h4{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
}

.faqItem p{
  margin: 0;
  font-size: 14px;
  opacity: .85;
}

@media (max-width: 720px){
  .faq{ grid-template-columns: 1fr; }
  .seoInner{ padding: 14px; }
}
/* results page heading */
.routeHeading{
  margin-top: 14px;
  padding: 14px 6px 0;
}
.routeHeading h1{
  margin: 0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.2px;
}
.routeHeading h2{
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  opacity: .7;
}
@media (max-width: 720px){
  .routeHeading h1{ font-size: 18px; }
  .routeHeading h2{ font-size: 13px; }
}
/* ---- tripCard (api/search.php yeni çıktı) ---- */
.tripCard{
  background:#fff;
  border-radius:18px;
  padding:16px 18px;
  margin:12px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow:0 14px 40px rgba(16,24,40,.08);
  border:1px solid rgba(16,24,40,.06);
}

.tripCard .left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:280px;
}

.tripCard .tlogo{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:contain;
  background:#f3f6ff;
  flex:0 0 auto;
  padding:6px;
}
.tripCard .tlogo.ph{
  padding:0;
  background:linear-gradient(180deg,#f3f6ff,#eef2ff);
  border:1px solid rgba(16,24,40,.06);
}

.tripCard .ltext .title{
  font-weight:950;
  font-size:18px;
  line-height:1.1;
}
.tripCard .ltext .sub{
  margin-top:2px;
  color:var(--muted, #667085);
  font-weight:700;
  font-size:13px;
}
.tripCard .ltext .meta{
  margin-top:2px;
  color:var(--muted, #667085);
  font-weight:800;
  font-size:12px;
}

.tripCard .mid{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
}
.tripCard .mid .t{
  font-weight:950;
  font-size:22px;
  letter-spacing:.2px;
}
.tripCard .mid .arr{
  color:var(--muted, #667085);
  font-weight:900;
  margin:0 8px;
}

.tripCard .pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.tripCard .pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(16,24,40,.10);
  background:rgba(99,102,241,.06);
  font-weight:900;
  font-size:12px;
  color:#334155;
}

.tripCard .right{
  display:flex;
  align-items:center;
  gap:12px;
}
.tripCard .price{
  font-weight:950;
  font-size:26px;
  color:#2563eb;
  white-space:nowrap;
}
.tripCard .goBtn{
  width:54px;
  height:54px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#2f6df6;
  color:#fff;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 14px 26px rgba(47,109,246,.25);
}
.tripCard .goBtn:hover{ filter:brightness(.98); }

/* Mobile */
@media (max-width: 820px){
  .tripCard{
    flex-direction:column;
    align-items:stretch;
  }
  .tripCard .left{ min-width:0; width:100%; }
  .tripCard .mid{ width:100%; }
  .tripCard .right{ width:100%; justify-content:space-between; }
  .tripCard .mid .t{ font-size:20px; }
  .tripCard .price{ font-size:24px; }
}
.eventsWrap{ margin-top:12px; }
.eventsStatus{ margin:10px 2px; opacity:.8; }
.eventsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}
.evCard{
  display:block;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius:14px;
  overflow:hidden;
  text-decoration:none;
}
.evImg{ height:140px; background: rgba(0,0,0,.15); display:flex; align-items:center; justify-content:center; }
.evImg img{ width:100%; height:100%; object-fit:cover; display:block; }
.evBody{ padding:10px 12px; }
.evTitle{ font-weight:700; line-height:1.25; }
.evMeta{ font-size:13px; opacity:.85; margin-top:6px; }
.evVenue{ font-size:13px; opacity:.85; margin-top:4px; }
.evCta{ margin-top:10px; font-weight:700; }

@media (max-width: 980px){
  .eventsGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .eventsGrid{ grid-template-columns: 1fr; }
}
/* Events status spacing */
.eventsStatus{ margin:12px 2px; opacity:.85; }

/* Events grid (kartlar) */
.eventsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
@media (max-width: 980px){ .eventsGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){ .eventsGrid{ grid-template-columns: 1fr; } }
.site-footer{
  background:#0f172a;
  color:#e5e7eb;
  margin-top:60px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.footer-logo{
  font-size:22px;
  font-weight:800;
  color:#38bdf8;
  margin-bottom:8px;
}

.footer-desc{
  font-size:14px;
  line-height:1.6;
  color:#cbd5f5;
}

.site-footer h4{
  font-size:15px;
  margin-bottom:10px;
  color:#fff;
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.site-footer ul li{
  margin-bottom:6px;
  font-size:14px;
}

.site-footer a{
  color:#cbd5f5;
  text-decoration:none;
}
.site-footer a:hover{
  color:#38bdf8;
}

.footer-legal{
  font-size:13px;
  line-height:1.6;
  color:#cbd5f5;
}

.footer-bottom{
  text-align:center;
  padding:14px;
  font-size:13px;
  background:#020617;
  color:#94a3b8;
}

