@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+Pro:wght@400;600;700&display=swap");

:root {
  --earth: #bf995b;
  --earth-2: #6e5530;
  --gold: #bf995b;
  --sand: #f6efe3;
  --ink: #1a1a1a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans Pro", system-ui, sans-serif;
  background: var(--sand);
  color: var(--ink);
  overflow-x: hidden;
}
h1, h2, h3, .font-display { font-family: "Playfair Display", Georgia, serif; }

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(160deg, #1c1610 0%, #bf995b 60%, #1c1610 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--earth); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: 22px;
  box-shadow: 0 0 0 6px rgba(201,162,39,.18);
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader-spin {
  width: 86px; height: 86px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
  border-top-color: var(--gold);
  position: absolute;
  animation: spin .8s linear infinite;
}
.preloader p { color: #f3e7c9; margin-top: 22px; letter-spacing: .16em; font-size: 11px; text-transform: uppercase; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.page-fade { animation: rise .6s ease both; }

/* Header */
.kw-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(20,83,45,.06);
}
.kw-nav .nav-link { color: var(--earth) !important; font-weight: 600; position: relative; }
.kw-nav .nav-link::after {
  content: ""; position: absolute; left: .75rem; right: .75rem; bottom: .2rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.kw-nav .nav-link:hover::after { transform: scaleX(1); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--earth); color: var(--gold);
  display: grid; place-items: center; font-weight: 700;
  transition: transform .3s ease;
}
.navbar-brand:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.lang-btn { border: 0; background: transparent; font-weight: 700; color: #7a6a4a; }
.lang-btn.active { color: var(--earth); text-decoration: underline; }

/* Hero */
.hero { position: relative; min-height: 72vh; display: flex; align-items: center; overflow: hidden; background: #1c1610; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11,36,24,.82), rgba(11,36,24,.28));
}
.hero-text { position: relative; z-index: 2; color: #fff; animation: rise .8s ease .15s both; }
.hero-text h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.hero-dots { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.hero-dots button { width: 10px; height: 10px; border: 0; border-radius: 50%; background: rgba(255,255,255,.4); transition: transform .2s, background .2s; }
.hero-dots button.active { background: var(--gold); transform: scale(1.25); }

.btn-gold {
  background: var(--gold); color: #1a1a1a; font-weight: 700; border: 0;
  padding: 11px 20px; text-transform: uppercase; font-size: 13px; letter-spacing: .04em;
  border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease, background .2s;
}
.btn-gold:hover { background: #e0b93a; color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,162,39,.35); }

.card-pkg, .ride-card, .seats-panel {
  background: #fff; border: 1px solid #eee4d4; border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-pkg:hover, .ride-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,83,45,.12);
}
.card-pkg img { transition: transform .45s ease; }
.card-pkg:hover img { transform: scale(1.06); }
.badge-earth { background: var(--earth); color: #fff; }

.site-footer { background: #1c1610; color: #d9d2c4; padding: 36px 0 18px; margin-top: 48px; }

.admin-wrap { display: flex; min-height: 100vh; }

.as-shell {
  max-width: 1080px; margin: 24px auto 60px;
  background: #fff; color: #1a1a1a;
  border: 1px solid #eadfcb; border-radius: 18px; overflow: hidden;
  display: grid; grid-template-columns: 280px 1fr; min-height: 640px;
  box-shadow: 0 16px 40px rgba(191,153,91,.16);
}
@media (max-width: 800px) {
  .as-shell { grid-template-columns: 1fr; margin: 12px; }
  .as-side { display: none; }
}
.as-side { background: #bf995b; padding: 18px 14px; color: #fff; }
.as-user { display: flex; gap: 12px; align-items: center; padding: 8px 10px 18px; }
.as-av { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.as-user strong { display: block; font-size: 15px; color: #fff; }
.as-user span { font-size: 12px; color: #f3e7c9; }
.as-nav a {
  display: flex; align-items: center; gap: 12px;
  color: #fff; text-decoration: none;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 6px;
  font-weight: 600; font-size: 14px;
}
.as-nav a:hover, .as-nav a.active { background: rgba(255,255,255,.18); color: #fff; }
.as-ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.2); color: #fff; font-size: 12px;
}
.as-main { padding: 22px 26px 32px; background: #fffaf3; color: #1a1a1a; }
.as-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.as-head h1, .as-main h1 { font-size: 22px; margin: 0; color: #6e5530; font-weight: 700; }
.as-head a { color: #bf995b; text-decoration: none; font-size: 22px; }
.sec-label { color: #6e5530; font-size: 14px; font-weight: 700; margin: 8px 0 10px; }
.pay-row {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #eadfcb; border-radius: 12px;
  padding: 14px 16px; margin-bottom: 10px; text-decoration: none; color: #1a1a1a;
}
.pay-row:hover { background: #f6efe3; color: #1a1a1a; border-color: #bf995b; }
.pay-badge {
  min-width: 72px; height: 44px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 800; font-size: 11px;
  background: #bf995b; color: #fff;
}
.pay-logo {
  width: 86px; height: 48px; border-radius: 8px; overflow: hidden;
  background: #fff; border: 1px solid #eadfcb;
  display: grid; place-items: center; flex: 0 0 86px;
}
.pay-logo img { width: 100%; height: 100%; object-fit: contain; }
.pay-row small { color: #7a6a4a; }
.pay-row .chev { margin-left: auto; color: #bf995b; font-size: 20px; }
.wd-link { display: block; text-align: center; color: #bf995b; margin-top: 22px; font-weight: 700; }
.note-box { background: #f6efe3; border: 1px solid #eadfcb; border-radius: 12px; padding: 16px 18px; color: #4a3d28; margin-bottom: 22px; }
.note-box .t { color: #6e5530; font-weight: 700; margin-bottom: 8px; }
.phone-row { display: flex; gap: 10px; margin: 18px 0; }
.phone-cc, .phone-no { background: #fff; border: 1px solid #eadfcb; border-radius: 10px; padding: 12px 14px; }
.phone-cc { min-width: 110px; display: flex; align-items: center; gap: 8px; color: #6e5530; font-weight: 700; }
.phone-no { flex: 1; display: flex; justify-content: space-between; align-items: center; }
.dep-btn { width: 100%; border: 0; background: #bf995b; color: #fff; font-weight: 700; padding: 14px; border-radius: 12px; margin-top: 8px; }
.dep-btn:hover { background: #a8844a; color: #fff; }
.alt-btn {
  width: 100%; border: 1px solid #bf995b; background: #fff; color: #bf995b;
  font-weight: 700; padding: 12px; border-radius: 12px; margin-top: 10px;
  text-align: center; display: block; text-decoration: none;
}
.quick { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 16px; }
.quick button { background: #fff; color: #6e5530; border: 1px solid #eadfcb; border-radius: 10px; padding: 8px 12px; }
.quick button:hover { border-color: #bf995b; }
.amt-lab { font-size: 13px; color: #7a6a4a; margin-bottom: 6px; }
.amt-inp { width: 100%; background: #fff; border: 1px solid #eadfcb; color: #1a1a1a; border-radius: 10px; padding: 12px 14px; }
.as-card { background: #fff; border: 1px solid #eadfcb; border-radius: 14px; padding: 16px; margin-bottom: 14px; }
.as-card a { color: #bf995b; font-weight: 700; }
.bal { font-size: 28px; font-weight: 800; margin: 8px 0 18px; color: #6e5530; }
table.as-table { width: 100%; font-size: 13px; }
table.as-table th, table.as-table td { padding: 8px; border-bottom: 1px solid #eadfcb; }
.admin-side { width: 240px; background: linear-gradient(180deg, #6e5530, #bf995b); color: #fff; padding: 24px 16px; }
.admin-side h5 { color: #fff; font-weight: 800; letter-spacing: .04em; margin-bottom: 18px; }
.admin-side a { display: block; color: #fff; padding: 9px 12px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.admin-side a:hover, .admin-side a.active { background: rgba(255,255,255,.18); color: #fff; padding-left: 12px; }
.admin-main { flex: 1; padding: 24px; background: #f6efe3; }
.ad-card {
  background: #fff; border: 1px solid #eadfcb; border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(191,153,91,.08); margin-bottom: 22px;
}
.ad-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; background: linear-gradient(90deg, #bf995b, #d4b07a); color: #fff;
}
.ad-card-head h3, .ad-card-head strong { margin: 0; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.ad-card-head a, .ad-card-head span { color: #fff; font-size: 12px; }
.ad-card-body { padding: 16px 18px; }
.ad-table { width: 100%; border-collapse: collapse; font-size: 13px; background: #fff; }
.ad-table thead th {
  text-align: left; padding: 12px 14px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #7a6a4a; background: #f6efe3; border-bottom: 1px solid #eadfcb; white-space: nowrap;
}
.ad-table tbody td { padding: 13px 14px; border-bottom: 1px solid #f0e6d4; vertical-align: middle; }
.ad-table tbody tr:hover { background: #fffaf3; }
.ad-code { font-family: ui-monospace, Menlo, monospace; background: #f6efe3; color: #6e5530; padding: 3px 8px; border-radius: 8px; font-weight: 700; font-size: 12px; }
.ad-amt { font-weight: 800; color: #6e5530; white-space: nowrap; }
.ad-pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 700; text-transform: capitalize; }
.ad-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.st-paid, .st-completed, .st-confirmed { background: #e8f7ee; color: #157347; }
.st-pending { background: #fff4d6; color: #9a6b00; }
.st-cancelled, .st-failed { background: #fde8e8; color: #b42318; }
.dashboard-report-card { position: relative; overflow: hidden; color: #fff; border: 0; border-radius: 16px; min-height: 118px; margin-bottom: 20px; box-shadow: 0 10px 24px rgba(191,153,91,.18); }
.dashboard-report-card .card-content { padding: 18px 16px 16px; display: flex; flex-direction: column; }
.dashboard-report-card .card-title { font-size: 12px; opacity: .92; text-transform: uppercase; letter-spacing: .07em; }
.dashboard-report-card .card-amount { font-size: 24px; font-weight: 800; line-height: 1.2; }
.dashboard-report-card .card-desc { font-size: 12px; opacity: .85; }
.dashboard-report-card .card-media { position: absolute; right: 16px; bottom: 8px; font-size: 52px; opacity: .28; }
.dashboard-report-card.purple { background: linear-gradient(135deg, #667eea, #764ba2); }
.dashboard-report-card.pink { background: linear-gradient(135deg, #f06292, #ec407a); }
.dashboard-report-card.info { background: linear-gradient(135deg, #29b6f6, #0288d1); }
.dashboard-report-card.success { background: linear-gradient(135deg, #bf995b, #e6c98a); }
.welcome-title { font-weight: 700; color: #6e5530; letter-spacing: .04em; }

.seats-panel { padding: 16px; margin-bottom: 16px; }
.seatCharts-container { display: inline-block; background: #1b2a24; padding: 16px 18px 20px; border-radius: 16px; }
.front-indicator { text-align: center; color: #c9a227; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; }
.seatCharts-row { display: flex; justify-content: center; align-items: center; margin: 4px 0; }
.seatCharts-cell { width: 46px; height: 40px; margin: 3px; border-radius: 6px 6px 10px 10px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; transition: transform .15s ease, filter .15s; }
.seatCharts-seat.available:hover { transform: translateY(-2px); filter: brightness(1.08); }
.seatCharts-space { background: transparent; width: 28px; }
.seatCharts-seat.available { background: #bf995b; cursor: pointer; }
.seatCharts-seat.selected { background: #c0392b; cursor: pointer; }
.seatCharts-seat.unavailable { background: #8a8a8a; cursor: not-allowed; }
.seatCharts-seat.hold { background: #d4a017; cursor: not-allowed; }
.seat-lab { margin: 0; }
.seat-lab input { position: absolute; opacity: 0; pointer-events: none; }
.key { font-size: 13px; font-weight: 700; color: #8a6b3d; }
.key-item { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 0; }
.fam {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px; color: #fff; margin-left: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.fam.fam-xs { width: 28px; height: 22px; font-size: 11px; border-radius: 7px 7px 10px 10px; }
.fam-seat-av { background: #bf995b; }
.fam-seat-hl { background: #d4a017; }
.fam-seat-unv { background: #6b7280; }
.fam-seat-sel { background: #c0392b; }
.fam-wheel { color: var(--gold); margin-right: 6px; }
.seatCharts-seat.available { background: #bf995b; box-shadow: inset 0 -4px 0 rgba(0,0,0,.18); }
.seatCharts-seat.selected { background: #c0392b; box-shadow: inset 0 -4px 0 rgba(0,0,0,.2); }
.seatCharts-seat.unavailable { background: #8a8a8a; }
.seatCharts-seat.hold { background: #d4a017; }

@media (max-width: 767.98px) {
  .hero { min-height: 62vh; }
  .admin-wrap { flex-direction: column; }
  .admin-side { width: 100%; }
  .seatCharts-cell { width: 38px; height: 34px; font-size: 10px; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
@keyframes shine { from { transform:translateX(-120%); } to { transform:translateX(120%); } }
.kw-topbar { background: var(--earth); color: #f3e7c9; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 8px 0; }
.kw-topbar a { color: var(--gold); }
.kw-head { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 8px 28px rgba(20,83,45,.08); }
.kw-navbar { background: #fff; }
.kw-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  position: relative;
}
.kw-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.kw-wallet {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  margin-right: auto;
}
.kw-wallet-chip {
  display: inline-flex;
  align-items: center;
  background: #bf995b;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 7px 12px 7px 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(191,153,91,.28);
}
.kw-wallet-amt { white-space: nowrap; }
.kw-wallet-plus {
  width: 34px; height: 34px; border-radius: 50%;
  background: #22c55e; color: #fff !important;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 700; line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(34,197,94,.35);
}
.kw-wallet-plus:hover { background: #16a34a; color: #fff !important; }
.kw-wallet-user {
  width: 36px; height: 36px; border-radius: 50%;
  background: #bf995b; color: #fff !important;
  display: grid; place-items: center;
  text-decoration: none !important;
  overflow: hidden;
}
.kw-wallet-user img { width: 100%; height: 100%; object-fit: cover; }
.kw-wallet-chip:hover { color: #fff !important; filter: brightness(1.08); }
.kw-brand-stack { line-height: 1.15; }
.kw-brand-stack .tiny { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #7a6a4a; }
.kw-brand-stack .name { font-family: "Playfair Display", serif; font-size: 20px; color: var(--earth); margin: 0; font-weight: 700; display:block; }
.kw-menu {
  display: flex !important;
  visibility: visible !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.kw-link { position: relative; display: inline-block; color: var(--earth) !important; font-weight: 600; font-size: 14px; text-decoration: none; padding: 8px 2px; transition: color .2s ease; white-space: nowrap; }
.kw-link::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 0; background: var(--gold); transition: width .3s ease; }
.kw-link:hover::after, .kw-link.active::after { width: 100%; }
.kw-link:hover { color: var(--gold) !important; }
.kw-cta { position: relative; overflow: hidden; background: var(--gold); color: #1a1a1a !important; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; text-decoration: none; }
.kw-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); animation: shine 2.5s linear infinite; }
.kw-burger {
  display: none;
  border: 1px solid #e6d7b8;
  background: #fff;
  color: var(--earth);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .kw-burger { display: inline-flex; align-items: center; justify-content: center; }
  .kw-menu {
    display: none !important;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 100%;
    background: #fff;
    border: 1px solid #eee4d4;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(0,0,0,.12);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    z-index: 210;
  }
  .kw-menu.open { display: flex !important; }
  .kw-menu .kw-link, .kw-menu .kw-cta { width: 100%; padding: 10px 8px; }
}

/* Buttons — consistent size and spacing */
.btn, .primary-btn, .about-btn, .btn-gold, .kw-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 40px; padding: 8px 16px; font-size: 14px; font-weight: 600;
  line-height: 1.2; border-radius: 8px; white-space: nowrap;
}
.btn-sm { min-height: 32px; padding: 4px 10px; font-size: 13px; }
.btn-lg, .form-control-lg { min-height: 48px; }
.btn + .btn, .title-actions .btn { margin-left: 0; }
.title-actions, .toolbar, .filter-form {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.title-actions .btn, .filter-form .btn, .filter-form .form-control {
  width: auto; max-width: 100%;
}
.filter-form .form-control { min-width: 140px; height: 40px; }
.btn-block, .w-100.btn { width: 100%; }

img, .service-item img, .dest-card { max-width: 100%; }
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 991.98px) {
  .hero { min-height: 58vh; }
  .hero-nav { display: none; }
  .nav-menu ul { gap: 10px; }
  .admin-wrap { flex-direction: column; }
  .admin-side { width: 100%; min-height: auto; display: flex; flex-wrap: wrap; gap: 8px 16px; }
  .admin-side a { display: inline-block; padding: 4px 0; }
  .admin-main { padding: 16px; }
  .title-bar { font-size: 20px; width: 100%; margin-bottom: 8px; }
  .filter-form, .title-actions { width: 100%; }
  .filter-form .form-control, .filter-form .btn, .title-actions .btn { flex: 1 1 140px; }
}

@media (max-width: 575.98px) {
  .btn, .primary-btn, .about-btn, .btn-gold { width: 100%; }
  .title-actions .btn, .filter-form .btn { width: 100%; flex: 1 1 100%; }
  .seatCharts-container { transform: scale(.92); transform-origin: top center; }
  .container, .container-fluid { padding-left: 12px; padding-right: 12px; }
}

.brand-logo { height: 36px; width: auto; max-width: 92px; object-fit: contain; display: block; }
.brand-logo-light { height: 44px; max-width: 110px; }
.preloader-stage {
  position: relative; width: 120px; height: 120px;
  display: grid; place-items: center;
}
.preloader-logo {
  width: 78px; height: auto; object-fit: contain;
  animation: logoBreath 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(201,162,39,.45));
  z-index: 2;
}
.preloader-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(243,231,201,.12);
  border-top-color: var(--gold);
  border-right-color: rgba(201,162,39,.35);
  animation: spin 1s linear infinite;
}
.preloader-ring::after {
  content: ""; position: absolute; inset: 12px; border-radius: 50%;
  border: 2px dashed rgba(201,162,39,.35);
  animation: spin 8s linear infinite reverse;
}
@keyframes logoBreath {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: .92; }
}
@media (max-width: 575.98px) {
  .brand-logo { height: 30px; max-width: 78px; }
  .preloader-stage { width: 96px; height: 96px; }
  .preloader-logo { width: 62px; }
}
.navbar-brand { max-width: 100%; }
.kw-head .container { max-width: 1140px; }
@media (max-width: 767.98px) {
  .kw-topbar { font-size: 10px; letter-spacing: .08em; }
  .kw-brand-stack .name { font-size: 15px; }
  .hero-text p { font-size: 15px; }
}

.lang-switch { position: relative; display: inline-block; }
.lang-current {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #f3e7c9; border-radius: 999px; padding: 4px 10px; font-weight: 700; font-size: 12px;
}
.lang-current img, .lang-menu img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 6px); z-index: 80;
  min-width: 160px; background: #fff; border-radius: 10px; padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu .lang-btn {
  display: flex; align-items: center; gap: 8px; width: 100%;
  border: 0; background: transparent; padding: 8px 10px; color: #1a1a1a; text-align: left; font-weight: 600;
  border-radius: 8px;
}
.lang-menu .lang-btn:hover, .lang-menu .lang-btn.active { background: #f6efe3; }

.pkg-price-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #1a1208; color: #e8c36a; border: 2px solid #e8c36a;
  border-radius: 999px; padding: 7px 16px; font-weight: 800; font-size: 13px;
  letter-spacing: .02em; box-shadow: 0 6px 16px rgba(0,0,0,.28);
}
.pkg-day-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #c4a35a; color: #fff; border: 0;
  border-radius: 999px; padding: 7px 16px; font-weight: 800; font-size: 13px;
  min-width: 46px; box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
