/* =============================================================
   PKWORLD Guest Site v2 — Master Stylesheet
   Brand: #3CB54B (Green) | #1B4353 (Teal) | Roboto | Abeatbykai
   Build: Parallel v2 — public/v2/css/pkw-v2.css
   ============================================================= */

/* Fonts loaded via <link> in master.blade.php:
   Roboto (300-800, body) + Playfair Display (400/600/700 + italic, headlines) */

/* ── CSS Custom Properties (Brand Tokens) ─────────────────── */
:root {
  --pkw-green:        #3CB54B;
  --pkw-green-dark:   #2fa040;
  --pkw-green-light:  #EFFCF1;
  --pkw-teal:         #1B4353;
  --pkw-teal-mid:     #216E85;
  --pkw-teal-bright:  #51BAC0;
  --pkw-teal-deep:    #001E01;
  --pkw-ice:          #F5FEFF;
  --pkw-cream:        #FFF0E0;
  --pkw-gray-bg:      #F1F2F4;
  --pkw-charcoal:     #343434;
  --pkw-mid-gray:     #646C6C;
  --pkw-light-gray:   #DCDCDC;
  --pkw-gold:         #E8CA35;
  --pkw-white:        #ffffff;
  --pkw-font-body:    'Roboto', sans-serif;
  --pkw-font-heading: 'Roboto', sans-serif;
  --pkw-radius-sm:    8px;
  --pkw-radius-md:    12px;
  --pkw-radius-lg:    16px;
  --pkw-radius-pill:  50px;
  --pkw-shadow-sm:    0 2px 8px rgba(27,67,83,0.08);
  --pkw-shadow-md:    0 4px 20px rgba(27,67,83,0.12);
  --pkw-shadow-lg:    0 12px 48px rgba(27,67,83,0.16);
  --pkw-shadow-float: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(27,67,83,0.10);
  --pkw-transition:   0.18s ease;
  --pkw-container:    1200px;

  /* ── P8 aliases — used by static pages & error states ── */
  --pkw-deep-teal:    #1B4353;   /* dark navy — primary heading colour */
  --pkw-surface:      #F5FEFF;   /* ice-blue card / sidebar surface    */
}

/* ── Global Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.pkw-v2 {
  font-family: var(--pkw-font-body);
  color: var(--pkw-charcoal);
  background: var(--pkw-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.pkw-v2 a { text-decoration: none; color: inherit; }
.pkw-v2 img { max-width: 100%; height: auto; }

.pkw-v2 .pkw-container {
  max-width: var(--pkw-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ──────────────────────────────────────────────── */
.pkw-v2 .pkw-w-full      { width: 100%; }
.pkw-v2 .pkw-mb-4        { margin-bottom: 24px; }
.pkw-v2 .pkw-me-2        { margin-right: 8px; }
.pkw-v2 .pkw-text-center { text-align: center; }
.pkw-v2 .pkw-text-muted  { color: var(--pkw-mid-gray); }
.pkw-v2 .pkw-link-green  { color: var(--pkw-green); }
.pkw-v2 .pkw-link-green:hover { color: var(--pkw-deep-teal); }

/* Shared intro paragraph used under section headings */
.pkw-v2 .pkw-section-intro {
  font-size: 15px; color: var(--pkw-mid-gray);
  line-height: 1.8; max-width: 620px;
}
.pkw-v2 .pkw-section-intro-centered {
  font-size: 15px; color: var(--pkw-mid-gray);
  line-height: 1.8; max-width: 580px;
  margin-left: auto; margin-right: auto;
}

/* Press-specific helpers */
.pkw-v2 .pkw-press-facts-card {
  background: #fff; border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg); padding: 40px 44px;
  box-shadow: var(--pkw-shadow-sm);
}
.pkw-v2 .pkw-press-facts-heading {
  font-size: 16px; font-weight: 700;
  color: var(--pkw-deep-teal); margin-bottom: 16px;
}
.pkw-v2 .pkw-press-facts-text {
  font-size: 14px; color: var(--pkw-charcoal);
  line-height: 1.8; margin-bottom: 0;
}
.pkw-v2 .pkw-press-coverage-date i {
  color: var(--pkw-green); margin-right: 5px;
}
.pkw-v2 .pkw-press-kit-body  { flex: 1; }
.pkw-v2 .pkw-press-kit-cta   { flex-shrink: 0; }

/* FAQ CTA — push the button to the far right */
.pkw-v2 .pkw-faq-cta-inner .pkw-btn { margin-left: auto; flex-shrink: 0; }

.pkw-v2 .pkw-section-label {
  font-family: var(--pkw-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pkw-green);
  display: block;
  margin-bottom: 6px;
}
.pkw-v2 .pkw-section-title {
  font-family: var(--pkw-font-heading);
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  color: var(--pkw-teal);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.pkw-v2 .pkw-section-sub {
  font-size: 15px;
  color: var(--pkw-mid-gray);
  font-weight: 400;
}
.pkw-v2 .pkw-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--pkw-radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.pkw-v2 .pkw-badge-green  { background: var(--pkw-green-light); color: var(--pkw-green); }
.pkw-v2 .pkw-badge-teal   { background: rgba(81,186,192,0.15); color: var(--pkw-teal-mid); }
.pkw-v2 .pkw-badge-cream  { background: var(--pkw-cream); color: #b35c00; }
.pkw-v2 .pkw-badge-gold   { background: rgba(232,202,53,0.18); color: #a07c00; }

.pkw-v2 .pkw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--pkw-font-body);
  font-weight: 600;
  border-radius: var(--pkw-radius-pill);
  transition: all var(--pkw-transition);
  text-decoration: none;
}
.pkw-v2 .pkw-btn-primary {
  background: var(--pkw-green);
  color: var(--pkw-white);
  padding: 12px 28px;
  font-size: 15px;
}
.pkw-v2 .pkw-btn-primary:hover { background: var(--pkw-green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(60,181,75,0.35); }
.pkw-v2 .pkw-btn-outline {
  background: transparent;
  border: 2px solid var(--pkw-teal);
  color: var(--pkw-teal);
  padding: 10px 24px;
  font-size: 14px;
}
.pkw-v2 .pkw-btn-outline:hover { background: var(--pkw-teal); color: #fff; }
.pkw-v2 .pkw-btn-teal {
  background: var(--pkw-teal);
  color: var(--pkw-white);
  padding: 10px 22px;
  font-size: 14px;
}
.pkw-v2 .pkw-btn-teal:hover { background: var(--pkw-teal-mid); color: #fff; }
.pkw-v2 .pkw-btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 10px 22px;
  font-size: 14px;
}
.pkw-v2 .pkw-btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
.pkw-v2 .pkw-btn-sm { padding: 8px 18px; font-size: 13px; }
.pkw-v2 .pkw-btn-lg { padding: 15px 36px; font-size: 16px; }

/* ── Scrollbar Hide Utility ───────────────────────────────── */
/* padding: gives box-shadow room so overflow-x:auto doesn't clip it */
.pkw-scroll-x { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 6px 4px 14px; }
.pkw-scroll-x::-webkit-scrollbar { display: none; }

/* =============================================================
   HEADER
   ============================================================= */
.pkw-v2 .pkw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pkw-white);
  border-bottom: 1px solid rgba(220,220,220,0.6);
  box-shadow: var(--pkw-shadow-sm);
}
.pkw-v2 .pkw-header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}
.pkw-v2 .pkw-header-logo img { height: 46px; width: auto; display: block; }
.pkw-v2 .pkw-header-logo { flex-shrink: 0; margin-right: 32px; }


.pkw-v2 .pkw-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.pkw-v2 .pkw-hdr-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--pkw-radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--pkw-teal);
  background: #fff;
  border: 1.5px solid var(--pkw-light-gray);
  transition: all var(--pkw-transition);
  white-space: nowrap;
}
.pkw-v2 .pkw-hdr-link:hover { border-color: var(--pkw-teal); background: var(--pkw-ice); color: var(--pkw-teal); }
.pkw-v2 .pkw-hdr-link.pkw-hdr-list { background: #fff; border-color: var(--pkw-green); color: var(--pkw-green); font-weight: 600; }
.pkw-v2 .pkw-hdr-link.pkw-hdr-list:hover { background: var(--pkw-green); color: #fff; }
.pkw-v2 .pkw-hdr-divider { width: 1px; height: 28px; background: var(--pkw-light-gray); margin: 0 4px; }
.pkw-v2 .pkw-hdr-icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--pkw-light-gray);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--pkw-teal);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-hdr-icon-btn:hover { border-color: var(--pkw-teal); background: var(--pkw-ice); }

/* ── User Menu Dropdown (pkw-user-menu) ───────────────────── */
.pkw-v2 .pkw-user-menu {
  position: relative;
}

.pkw-v2 .pkw-user-menu-caret {
  font-size: 10px;
  opacity: 0.55;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.pkw-v2 .pkw-user-menu.open .pkw-user-menu-caret {
  transform: rotate(180deg);
}

.pkw-v2 .pkw-user-menu-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(27,67,83,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(27,67,83,0.14);
  z-index: 9999;
  padding: 6px 0;
  /* subtle entrance */
  animation: pkwMenuIn 0.15s ease;
}

@keyframes pkwMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pkw-v2 .pkw-user-menu.open .pkw-user-menu-panel {
  display: block;
}

.pkw-v2 .pkw-um-header {
  padding: 14px 16px 10px;
}

.pkw-v2 .pkw-um-name {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1B4353;
}

.pkw-v2 .pkw-um-email {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: rgba(27,67,83,0.45);
  margin-top: 2px;
  word-break: break-all;
}

.pkw-v2 .pkw-um-divider {
  height: 1px;
  background: #f0f3f6;
  margin: 4px 0;
}

.pkw-v2 .pkw-um-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1B4353;
  text-decoration: none;
  transition: background 0.12s;
  cursor: pointer;
}

.pkw-v2 .pkw-um-item:hover {
  background: #f4fafe;
  color: #1B4353;
  text-decoration: none;
}

.pkw-v2 .pkw-um-item i {
  width: 16px;
  text-align: center;
  font-size: 13px;
  color: #3CB54B;
  flex-shrink: 0;
}

.pkw-v2 .pkw-um-logout,
.pkw-v2 .pkw-um-logout:hover { color: #e74c3c; }
.pkw-v2 .pkw-um-logout i     { color: #e74c3c; }

/* ── Nav Menu Dropdown — Accordion style (pkw-nav-menu) ───── */
.pkw-v2 .pkw-nav-menu {
  position: relative;
}

.pkw-v2 .pkw-nav-menu-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid rgba(27,67,83,0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(27,67,83,0.14);
  z-index: 9999;
  overflow: hidden;
  animation: pkwMenuIn 0.15s ease;
}

.pkw-v2 .pkw-nav-menu.open .pkw-nav-menu-panel {
  display: block;
}

/* Category row */
.pkw-v2 .pkw-nm-cat {
  border-bottom: 1px solid #f0f3f6;
}

.pkw-v2 .pkw-nm-cat:last-of-type {
  border-bottom: none;
}

.pkw-v2 .pkw-nm-cat-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1B4353;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
}
.pkw-v2 .pkw-nm-cat-header:focus {
  outline: none;
}

.pkw-v2 .pkw-nm-cat-header:hover {
  background: #f8fbfd;
}

.pkw-v2 .pkw-nm-chevron {
  font-size: 11px;
  color: rgba(27,67,83,0.4);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.pkw-v2 .pkw-nm-cat.open .pkw-nm-chevron {
  transform: rotate(180deg);
}

/* Sub-items — collapsed by default */
.pkw-v2 .pkw-nm-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #fafcfd;
}

.pkw-v2 .pkw-nm-cat.open .pkw-nm-cat-body {
  max-height: 240px;   /* enough for any reasonable sub-list */
}

.pkw-v2 .pkw-nm-sub {
  display: block;
  padding: 11px 20px 11px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(27,67,83,0.75);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  border-bottom: 1px solid #f0f3f6;
}

.pkw-v2 .pkw-nm-sub:last-child {
  border-bottom: none;
}

.pkw-v2 .pkw-nm-sub:hover {
  background: #eef6fb;
  color: #1B4353;
  text-decoration: none;
}

/* Standalone items (bottom section) */
.pkw-v2 .pkw-nm-standalone {
  border-top: 1px solid #f0f3f6;
  padding: 6px 0;
}

.pkw-v2 .pkw-nm-standalone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1B4353;
  text-decoration: none;
  transition: background 0.12s;
}

.pkw-v2 .pkw-nm-standalone-item:hover {
  background: #f4fafe;
  text-decoration: none;
  color: #1B4353;
}

.pkw-v2 .pkw-nm-standalone-item i {
  color: #3CB54B;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

/* Mobile header */
.pkw-v2 .pkw-header-mobile { display: none; }
.pkw-v2 .pkw-mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--pkw-white); z-index: 9999;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  display: flex; flex-direction: column;
}
.pkw-v2 .pkw-mobile-drawer.open { right: 0; }
.pkw-v2 .pkw-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 9998;
  display: none;
}
.pkw-v2 .pkw-drawer-overlay.open { display: block; }
.pkw-v2 .pkw-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--pkw-light-gray);
}
.pkw-v2 .pkw-drawer-close { background: none; border: none; font-size: 22px; color: var(--pkw-teal); cursor: pointer; }
.pkw-v2 .pkw-drawer-nav { padding: 12px 0; flex: 1; }
.pkw-v2 .pkw-drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--pkw-charcoal);
  border-bottom: 1px solid var(--pkw-gray-bg);
  transition: background var(--pkw-transition);
}
.pkw-v2 .pkw-drawer-nav a:hover { background: var(--pkw-ice); color: var(--pkw-teal); }
.pkw-v2 .pkw-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--pkw-light-gray); }

/* =============================================================
   PROMO BANNER (Admin-Scheduled)
   ============================================================= */
.pkw-v2 .pkw-promo-banner {
  background: linear-gradient(135deg, var(--pkw-green) 0%, var(--pkw-teal-mid) 100%);
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.pkw-v2 .pkw-promo-banner a { color: #fff; font-weight: 700; text-decoration: underline; }
.pkw-v2 .pkw-promo-banner .pkw-promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.8); font-size: 18px; cursor: pointer;
  line-height: 1;
}
.pkw-v2 .pkw-promo-banner .pkw-promo-close:hover { color: #fff; }

/* =============================================================
   HERO
   ============================================================= */
.pkw-v2 .pkw-hero {
  background: linear-gradient(145deg, #0f2a35 0%, #1B4353 45%, #216E85 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 130px;
  text-align: center;
}
.pkw-v2 .pkw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(60,181,75,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(81,186,192,0.10) 0%, transparent 50%);
  pointer-events: none;
}
/* Subtle dot pattern */
.pkw-v2 .pkw-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.pkw-v2 .pkw-hero-inner { position: relative; z-index: 2; }

.pkw-v2 .pkw-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(60,181,75,0.2);
  border: 1px solid rgba(60,181,75,0.4);
  border-radius: var(--pkw-radius-pill);
  padding: 5px 16px;
  font-size: 12px; font-weight: 600; color: #7ce68a;
  letter-spacing: 0.5px; margin-bottom: 22px;
}
.pkw-v2 .pkw-hero-eyebrow .pkw-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7ce68a;
  animation: pkwPulse 2s infinite;
}
@keyframes pkwPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.pkw-v2 .pkw-hero-headline {
  font-family: var(--pkw-font-heading);
  font-size: 56px;
  font-weight: 800;
  font-style: normal;
  color: var(--pkw-white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.pkw-v2 .pkw-hero-headline .pkw-green-text { color: var(--pkw-green); }

.pkw-v2 .pkw-hero-subline {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ── Floating Search Widget ─────────────────────────────── */
.pkw-v2 .pkw-search-float-wrapper {
  position: relative;
  z-index: 50;
  margin-top: -68px;
  padding: 0 24px;
}
.pkw-v2 .pkw-search-widget {
  background: var(--pkw-white);
  border-radius: 18px;
  box-shadow: var(--pkw-shadow-float);
  max-width: 1100px;
  margin: 0 auto;
  /* overflow:hidden REMOVED — it was clipping the autocomplete dropdown.
     Corner hover-bg clipping is now handled per-element below. */
  position: relative; /* positioning context for guest panel */
}
.pkw-v2 .pkw-search-row {
  display: flex;
  align-items: stretch;
  min-height: 68px;
}
.pkw-v2 .pkw-sf-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  flex: 1;
  border-right: 1px solid var(--pkw-gray-bg);
  cursor: pointer;
  transition: background var(--pkw-transition);
  min-width: 0;
  position: relative;
}
.pkw-v2 .pkw-sf-field:hover { background: var(--pkw-ice); }
.pkw-v2 .pkw-sf-field:last-of-type { border-right: none; }
/* Fixed-width search fields (Dates, Guests) — overridden to auto in mobile breakpoint */
.pkw-v2 .pkw-sf-field--fixed { flex: 0 0 230px; }
/* Round the left corners of the first field so hover-bg clips correctly */
.pkw-v2 .pkw-search-row .pkw-sf-field:first-child {
  border-radius: 18px 0 0 18px;
}
/* Round + clip the right side of the CTA so the green button bg clips correctly */
.pkw-v2 .pkw-search-cta {
  border-radius: 0 18px 18px 0;
  overflow: hidden;
}
.pkw-v2 .pkw-sf-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--pkw-ice);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pkw-teal);
  font-size: 14px;
}
.pkw-v2 .pkw-sf-label {
  font-size: 10px; font-weight: 700;
  color: var(--pkw-mid-gray);
  text-transform: uppercase; letter-spacing: 0.6px;
  display: block; margin-bottom: 2px;
}
.pkw-v2 .pkw-sf-value {
  font-size: 14px; font-weight: 600; color: var(--pkw-charcoal);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block;
}
.pkw-v2 .pkw-sf-placeholder { color: var(--pkw-mid-gray); font-weight: 400; }
.pkw-v2 .pkw-sf-input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%; border: none; background: none;
}
/* Actual select/input override */
.pkw-v2 .pkw-sf-select {
  position: absolute; inset: 0; opacity: 0;
  width: 100%; height: 100%;
  border: none; background: none; cursor: pointer;
  font-size: 0;
}
.pkw-v2 .pkw-search-cta {
  padding: 10px;
  display: flex; align-items: center; flex-shrink: 0;
}
.pkw-v2 .pkw-search-cta .pkw-btn-primary {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 12px;
  white-space: nowrap;
  height: 100%;
}
.pkw-v2 .pkw-search-trust {
  padding: 9px 24px;
  background: var(--pkw-ice);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-top: 1px solid var(--pkw-gray-bg);
  border-radius: 0 0 18px 18px;
}
.pkw-v2 .pkw-trust-icon {
  width: 20px; height: 20px; flex-shrink: 0;
}
.pkw-v2 .pkw-trust-text {
  font-family: 'Roboto', sans-serif;
  font-size: 12px; font-weight: 500;
  color: #001E01;
  white-space: nowrap;
}
.pkw-v2 .pkw-trust-available {
  font-family: 'Roboto', sans-serif;
  font-size: 12px; font-weight: 500;
  color: #3CB54B;
  white-space: nowrap;
}

/* ── Destination autocomplete dropdown (BE-8-T24 — grouped) ──── */
.pkw-v2 .pkw-autocomplete-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--pkw-white);
  border-radius: 0 0 var(--pkw-radius-md) var(--pkw-radius-md);
  box-shadow: var(--pkw-shadow-lg);
  z-index: 200; max-height: 360px; overflow-y: auto;
  display: none;
  padding: 4px 0 6px;
}
.pkw-v2 .pkw-autocomplete-dropdown.open { display: block; }

/* Group header (Cities / Hotels / Landmarks) */
.pkw-v2 .pkw-ac-group-head {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--pkw-mid-gray);
  padding: 10px 20px 4px;
  border-top: 1px solid #F1F2F4;
}
.pkw-v2 .pkw-ac-group-head:first-child { border-top: none; padding-top: 8px; }

/* Each suggestion row */
.pkw-v2 .pkw-ac-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; cursor: pointer;
  transition: background var(--pkw-transition);
  font-size: 14px;
  border-left: 3px solid transparent;
}
.pkw-v2 .pkw-ac-item:hover,
.pkw-v2 .pkw-ac-item.pkw-ac-active {
  background: var(--pkw-ice);
  border-left-color: var(--pkw-green);
}
.pkw-v2 .pkw-ac-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #F1F8F9;
  color: var(--pkw-teal-mid);
  font-size: 12px;
}
.pkw-v2 .pkw-ac-hotel    .pkw-ac-icon { background: #FFF6E5; color: #C58A1A; }
.pkw-v2 .pkw-ac-landmark .pkw-ac-icon { background: #EFFCF1; color: var(--pkw-green); }

.pkw-v2 .pkw-ac-body { flex: 1; min-width: 0; }
.pkw-v2 .pkw-ac-name {
  font-weight: 600;
  color: var(--pkw-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}
.pkw-v2 .pkw-ac-sub {
  font-size: 11.5px;
  color: var(--pkw-mid-gray);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkw-v2 .pkw-ac-stars {
  font-size: 11px;
  color: #E8CA35;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.pkw-v2 .pkw-ac-meta {
  font-size: 11px;
  color: var(--pkw-mid-gray);
  font-weight: 600;
  flex-shrink: 0;
}
.pkw-v2 .pkw-ac-empty {
  padding: 18px 20px;
  font-size: 13px;
  color: var(--pkw-mid-gray);
  text-align: center;
}
/* BE-8-T24.1: truthful Sponsored tag — never hidden */
.pkw-v2 .pkw-ac-sponsored {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #8A7100;
  background: #FFF6E5;
  border: 1px solid #F1E1A6;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* BE-8-T26: Recent searches in the empty-state dropdown */
.pkw-v2 .pkw-ac-group-head-recent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkw-v2 .pkw-ac-clear-all {
  border: none;
  background: transparent;
  color: var(--pkw-teal-mid);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-ac-clear-all:hover {
  color: var(--pkw-green);
  background: var(--pkw-green-light);
}
.pkw-v2 .pkw-ac-recent .pkw-ac-icon {
  background: #F1F2F4;
  color: var(--pkw-mid-gray);
}
.pkw-v2 .pkw-ac-remove {
  border: none;
  background: transparent;
  color: #C8D6DC;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  flex-shrink: 0;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-ac-remove:hover {
  background: #FBECF0;
  color: #B82A4A;
}
@media (max-width: 720px) {
  .pkw-v2 .pkw-ac-remove { width: 24px; height: 24px; font-size: 10px; }
}

/* Mobile: slightly tighter rows + smaller font */
@media (max-width: 720px) {
  .pkw-v2 .pkw-autocomplete-dropdown { max-height: 50vh; }
  .pkw-v2 .pkw-ac-item { padding: 9px 14px; font-size: 13px; }
  .pkw-v2 .pkw-ac-group-head { padding: 8px 14px 3px; }
  .pkw-v2 .pkw-ac-icon { width: 26px; height: 26px; font-size: 11px; }
}

/* =============================================================
   STATS BAR
   ============================================================= */
.pkw-v2 .pkw-stats-section {
  padding-top: 80px;
  padding-bottom: 32px;
  background: var(--pkw-white);
}
.pkw-v2 .pkw-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
  background: var(--pkw-white);
  border: 1px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg);
  overflow: hidden;
  box-shadow: var(--pkw-shadow-sm);
}
.pkw-v2 .pkw-stat-featured {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
  color: var(--pkw-white);
  padding: 22px 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.pkw-v2 .pkw-stat-featured .pkw-stat-dest {
  font-family: var(--pkw-font-heading);
  font-size: 22px; color: #fff; line-height: 1;
}
.pkw-v2 .pkw-stat-featured .pkw-stat-sub {
  font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 400;
}
.pkw-v2 .pkw-stat-featured .pkw-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(60,181,75,0.25); border: 1px solid rgba(60,181,75,0.5);
  border-radius: var(--pkw-radius-pill); padding: 3px 10px;
  font-size: 10px; font-weight: 700; color: #7ce68a;
  margin-top: 6px; width: fit-content;
}
.pkw-v2 .pkw-stat-divider {
  width: 1px; background: var(--pkw-gray-bg); align-self: stretch;
}
.pkw-v2 .pkw-stat-item {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 2px;
  text-align: center;
  border-left: 1px solid var(--pkw-gray-bg);
}
.pkw-v2 .pkw-stat-item:first-of-type { border-left: none; }
.pkw-v2 .pkw-stat-number {
  font-family: var(--pkw-font-body);
  font-size: 28px; font-weight: 700; color: var(--pkw-teal);
  line-height: 1;
}
.pkw-v2 .pkw-stat-number span { color: var(--pkw-green); }
.pkw-v2 .pkw-stat-label {
  font-size: 11px; color: var(--pkw-mid-gray); font-weight: 500;
  line-height: 1.4;
}

/* =============================================================
   PROVINCE PILL STRIP
   ============================================================= */
.pkw-v2 .pkw-province-section {
  padding: 18px 0;
  background: var(--pkw-white);
  border-bottom: 1px solid var(--pkw-gray-bg);
}
.pkw-v2 .pkw-province-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 2px;
}
.pkw-v2 .pkw-province-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: var(--pkw-radius-pill);
  border: 1.5px solid var(--pkw-light-gray);
  font-size: 13px; font-weight: 500; color: var(--pkw-charcoal);
  white-space: nowrap; cursor: pointer;
  transition: all var(--pkw-transition);
  background: var(--pkw-white);
  text-decoration: none;
}
.pkw-v2 .pkw-province-pill:hover {
  border-color: var(--pkw-teal); color: var(--pkw-teal);
  background: var(--pkw-ice);
}
.pkw-v2 .pkw-province-pill.active {
  background: var(--pkw-teal); border-color: var(--pkw-teal);
  color: var(--pkw-white);
}
.pkw-v2 .pkw-province-pill .pkw-pill-icon {
  font-size: 15px; line-height: 1;
}

/* =============================================================
   EXPLORE PAKISTAN (Featured Cities)
   ============================================================= */
.pkw-v2 .pkw-section {
  padding: 60px 0;
}
.pkw-v2 .pkw-section-alt { background: var(--pkw-white); }
.pkw-v2 .pkw-section-dark { background: var(--pkw-teal); }

.pkw-v2 .pkw-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px;
}
.pkw-v2 .pkw-section-header .pkw-see-all {
  font-size: 13px; font-weight: 600; color: var(--pkw-teal-mid);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
  margin-bottom: 2px;
  transition: color var(--pkw-transition);
}
.pkw-v2 .pkw-section-header .pkw-see-all:hover { color: var(--pkw-green); }

/* City Cards Carousel */
.pkw-v2 .pkw-city-cards {
  display: flex; gap: 16px;
}
.pkw-v2 .pkw-city-card {
  flex: 0 0 200px;
  border-radius: var(--pkw-radius-md);
  overflow: hidden;
  position: relative;
  height: 240px;
  cursor: pointer;
  transition: transform var(--pkw-transition), box-shadow var(--pkw-transition);
}
.pkw-v2 .pkw-city-card:hover { transform: translateY(-4px); box-shadow: var(--pkw-shadow-lg); }
.pkw-v2 .pkw-city-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pkw-v2 .pkw-city-card:hover .pkw-city-card-img { transform: scale(1.06); }
.pkw-v2 .pkw-city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(27,67,83,0.88) 100%);
}
.pkw-v2 .pkw-city-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
}
.pkw-v2 .pkw-city-card-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: var(--pkw-green); color: #fff;
  border-radius: 4px; padding: 2px 8px; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pkw-v2 .pkw-city-card-name {
  font-family: var(--pkw-font-heading);
  font-size: 18px; color: #fff; display: block;
}
.pkw-v2 .pkw-city-card-meta {
  font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px;
  display: block;
}
/* Placeholder gradient for city cards with no image */
.pkw-v2 .pkw-city-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
}

/* =============================================================
   HOT RIGHT NOW — Hotel Cards
   ============================================================= */
.pkw-v2 .pkw-hotel-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pkw-v2 .pkw-hotel-card {
  background: var(--pkw-white);
  border-radius: var(--pkw-radius-md);
  border: 1px solid var(--pkw-gray-bg);
  overflow: hidden;
  transition: transform var(--pkw-transition), box-shadow var(--pkw-transition);
  display: flex; flex-direction: column;
}
.pkw-v2 .pkw-hotel-card:hover { transform: translateY(-4px); box-shadow: var(--pkw-shadow-lg); }
.pkw-v2 .pkw-hotel-card-img-wrap {
  position: relative; height: 170px; overflow: hidden;
}
.pkw-v2 .pkw-hotel-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.pkw-v2 .pkw-hotel-card:hover .pkw-hotel-card-img { transform: scale(1.05); }
.pkw-v2 .pkw-hotel-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pkw-ice) 0%, var(--pkw-gray-bg) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--pkw-light-gray); font-size: 36px;
}
.pkw-v2 .pkw-hotel-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 5px; flex-wrap: wrap;
}
.pkw-v2 .pkw-hotel-card-save {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--pkw-mid-gray); cursor: pointer;
  border: none; transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-hotel-card-save:hover { color: #e74c3c; background: #fff; }
.pkw-v2 .pkw-hotel-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.pkw-v2 .pkw-hotel-card-name {
  font-size: 15px; font-weight: 700; color: var(--pkw-charcoal);
  margin-bottom: 4px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pkw-v2 .pkw-hotel-card-location {
  font-size: 12px; color: var(--pkw-mid-gray);
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 10px;
}
.pkw-v2 .pkw-hotel-card-amenities {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px;
}
.pkw-v2 .pkw-hotel-card-amenity {
  font-size: 10px; color: var(--pkw-mid-gray);
  display: flex; align-items: center; gap: 3px;
}
.pkw-v2 .pkw-hotel-card-footer {
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--pkw-gray-bg);
}
.pkw-v2 .pkw-hotel-card-price .pkw-price-label { font-size: 10px; color: var(--pkw-mid-gray); }
.pkw-v2 .pkw-hotel-card-price .pkw-price-value {
  font-size: 18px; font-weight: 800; color: var(--pkw-teal);
}
.pkw-v2 .pkw-hotel-card-price .pkw-price-night { font-size: 11px; color: var(--pkw-mid-gray); }
.pkw-v2 .pkw-hotel-card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--pkw-teal); color: #fff;
  padding: 8px 14px; border-radius: var(--pkw-radius-sm);
  font-size: 12px; font-weight: 600;
  transition: background var(--pkw-transition);
  border: none; cursor: pointer; white-space: nowrap;
}
.pkw-v2 .pkw-hotel-card-cta:hover { background: var(--pkw-teal-mid); color: #fff; }

/* Stars */
.pkw-v2 .pkw-stars {
  display: flex; gap: 2px; align-items: center; margin-bottom: 6px;
}
.pkw-v2 .pkw-stars i { color: var(--pkw-gold); font-size: 11px; }
.pkw-v2 .pkw-stars .pkw-score {
  font-size: 12px; font-weight: 700; color: var(--pkw-teal);
  margin-left: 4px;
}

/* =============================================================
   LOYALTY CTA SECTION
   ============================================================= */
.pkw-v2 .pkw-loyalty-section {
  background: linear-gradient(135deg, var(--pkw-ice) 0%, rgba(81,186,192,0.1) 100%);
  border-top: 1px solid rgba(81,186,192,0.2);
  border-bottom: 1px solid rgba(81,186,192,0.2);
  padding: 48px 0;
}
.pkw-v2 .pkw-loyalty-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.pkw-v2 .pkw-loyalty-content { flex: 1; }
.pkw-v2 .pkw-loyalty-title {
  font-family: var(--pkw-font-heading);
  font-size: 30px; font-weight: 700; font-style: normal;
  color: var(--pkw-teal); margin-bottom: 6px; letter-spacing: -0.3px;
}
.pkw-v2 .pkw-loyalty-sub { font-size: 14px; color: var(--pkw-mid-gray); max-width: 460px; line-height: 1.6; }
.pkw-v2 .pkw-loyalty-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.pkw-v2 .pkw-loyalty-tiers {
  display: flex; gap: 8px; margin-top: 16px;
}
.pkw-v2 .pkw-tier-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: var(--pkw-radius-pill);
  font-size: 12px; font-weight: 600;
}
.pkw-v2 .pkw-tier-silver { background: #f0f0f0; color: #666; }
.pkw-v2 .pkw-tier-gold   { background: rgba(232,202,53,0.18); color: #a07c00; }
.pkw-v2 .pkw-tier-elite  { background: linear-gradient(135deg, #1B4353, #216E85); color: #fff; }

/* =============================================================
   FILTER PILLS
   ============================================================= */
.pkw-v2 .pkw-filter-row {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 28px;
}
.pkw-v2 .pkw-filter-label {
  font-size: 13px; font-weight: 700; color: var(--pkw-charcoal);
  white-space: nowrap; flex-shrink: 0;
}
.pkw-v2 .pkw-filter-pills { display: flex; gap: 8px; flex-wrap: nowrap; }
.pkw-v2 .pkw-filter-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: var(--pkw-radius-pill);
  border: 1.5px solid var(--pkw-light-gray);
  font-size: 12px; font-weight: 500; color: var(--pkw-charcoal);
  white-space: nowrap; cursor: pointer; background: var(--pkw-white);
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-filter-pill:hover { border-color: var(--pkw-teal); color: var(--pkw-teal); background: var(--pkw-ice); }
.pkw-v2 .pkw-filter-pill.active { background: var(--pkw-green-light); border-color: var(--pkw-green); color: var(--pkw-green); }

/* =============================================================
   SEASONAL HIGHLIGHTS
   ============================================================= */
.pkw-v2 .pkw-seasonal-section { background: var(--pkw-cream); }
.pkw-v2 .pkw-seasonal-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pkw-v2 .pkw-seasonal-card {
  border-radius: var(--pkw-radius-md); overflow: hidden;
  background: var(--pkw-white);
  box-shadow: var(--pkw-shadow-sm);
  transition: transform var(--pkw-transition), box-shadow var(--pkw-transition);
}
.pkw-v2 .pkw-seasonal-card:hover { transform: translateY(-3px); box-shadow: var(--pkw-shadow-md); }
.pkw-v2 .pkw-seasonal-card-img {
  height: 160px; width: 100%; object-fit: cover;
}
.pkw-v2 .pkw-seasonal-card-img-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.pkw-v2 .pkw-seasonal-card-body { padding: 16px; }
.pkw-v2 .pkw-seasonal-season {
  font-size: 10px; font-weight: 700; color: var(--pkw-green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.pkw-v2 .pkw-seasonal-title {
  font-family: var(--pkw-font-heading);
  font-size: 17px; color: var(--pkw-teal); margin-bottom: 6px;
}
.pkw-v2 .pkw-seasonal-desc { font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.5; }

/* =============================================================
   DESTINATIONS GRID (Pakistan's Best)
   ============================================================= */
.pkw-v2 .pkw-dest-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.pkw-v2 .pkw-dest-card {
  position: relative; border-radius: var(--pkw-radius-md);
  overflow: hidden; cursor: pointer;
  transition: transform var(--pkw-transition), box-shadow var(--pkw-transition);
}
.pkw-v2 .pkw-dest-card:hover { transform: scale(1.01); box-shadow: var(--pkw-shadow-lg); }
.pkw-v2 .pkw-dest-card-large { grid-row: 1 / 3; } /* spans 2 rows */
.pkw-v2 .pkw-dest-card img { width: 100%; height: 100%; object-fit: cover; }
.pkw-v2 .pkw-dest-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
}
.pkw-v2 .pkw-dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(27,67,83,0.85) 100%);
}
.pkw-v2 .pkw-dest-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px;
}
.pkw-v2 .pkw-dest-card-large .pkw-dest-card-body { padding: 24px; }
.pkw-v2 .pkw-dest-name {
  font-family: var(--pkw-font-heading);
  font-size: 20px; color: #fff; display: block; line-height: 1.1;
}
.pkw-v2 .pkw-dest-card-large .pkw-dest-name { font-size: 28px; }
.pkw-v2 .pkw-dest-sub { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px; display: block; }
.pkw-v2 .pkw-dest-count {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.18); border-radius: var(--pkw-radius-pill);
  padding: 3px 10px; font-size: 11px; color: #fff; margin-top: 8px;
}

/* =============================================================
   REVIEWS SECTION
   ============================================================= */
.pkw-v2 .pkw-reviews-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
}
.pkw-v2 .pkw-reviews-panel {
  background: linear-gradient(145deg, var(--pkw-teal) 0%, #0f2a35 100%);
  border-radius: var(--pkw-radius-lg); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.pkw-v2 .pkw-reviews-panel-title {
  font-family: var(--pkw-font-heading);
  font-size: 28px; font-weight: 700; font-style: normal;
  color: var(--pkw-white); line-height: 1.2; letter-spacing: -0.3px;
}
.pkw-v2 .pkw-reviews-panel-title em { color: var(--pkw-green); font-style: normal; }
.pkw-v2 .pkw-reviews-rating {
  display: flex; align-items: center; gap: 10px;
}
.pkw-v2 .pkw-reviews-rating .pkw-big-score {
  font-size: 42px; font-weight: 800; color: #fff; line-height: 1;
}
.pkw-v2 .pkw-reviews-rating .pkw-rating-detail { color: rgba(255,255,255,0.75); font-size: 13px; }
.pkw-v2 .pkw-reviews-rating .pkw-big-stars i { color: var(--pkw-gold); font-size: 14px; }
.pkw-v2 .pkw-reviews-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.pkw-v2 .pkw-reviews-apps { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.pkw-v2 .pkw-app-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--pkw-radius-sm); padding: 10px 14px;
  color: #fff; font-size: 12px; font-weight: 500;
  transition: background var(--pkw-transition);
}
.pkw-v2 .pkw-app-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
.pkw-v2 .pkw-app-btn i { font-size: 22px; }

.pkw-v2 .pkw-review-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pkw-v2 .pkw-review-card {
  background: var(--pkw-white); border: 1px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-md); padding: 18px;
}
.pkw-v2 .pkw-review-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.pkw-v2 .pkw-reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pkw-teal), var(--pkw-teal-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.pkw-v2 .pkw-reviewer-name { font-size: 14px; font-weight: 700; color: var(--pkw-charcoal); }
.pkw-v2 .pkw-reviewer-city { font-size: 11px; color: var(--pkw-mid-gray); }
.pkw-v2 .pkw-review-stars { margin-left: auto; display: flex; gap: 2px; }
.pkw-v2 .pkw-review-stars i { color: var(--pkw-gold); font-size: 11px; }
.pkw-v2 .pkw-review-text {
  font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pkw-v2 .pkw-review-hotel { font-size: 11px; color: var(--pkw-teal-mid); margin-top: 8px; font-weight: 500; }
.pkw-v2 .pkw-verified-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; color: var(--pkw-green); font-weight: 600;
  margin-top: 6px;
}

/* =============================================================
   WHY PKWORLD
   ============================================================= */
.pkw-v2 .pkw-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.pkw-v2 .pkw-why-headline {
  font-family: var(--pkw-font-heading);
  font-size: 42px; font-weight: 800; font-style: normal;
  color: var(--pkw-teal); line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.pkw-v2 .pkw-why-desc { font-size: 15px; color: var(--pkw-mid-gray); line-height: 1.8; margin-bottom: 24px; }
.pkw-v2 .pkw-why-pillars { display: flex; flex-direction: column; gap: 24px; }
.pkw-v2 .pkw-pillar {
  display: flex; gap: 18px; align-items: flex-start;
}
.pkw-v2 .pkw-pillar-num {
  font-size: 36px; font-weight: 800;
  color: var(--pkw-green-light); /* Muted for depth */
  line-height: 1; flex-shrink: 0; width: 48px;
  font-family: var(--pkw-font-heading);
}
.pkw-v2 .pkw-why-section-alt .pkw-pillar-num { color: rgba(60,181,75,0.2); }
.pkw-v2 .pkw-pillar-content {}
.pkw-v2 .pkw-pillar-title { font-size: 16px; font-weight: 700; color: var(--pkw-charcoal); margin-bottom: 5px; }
.pkw-v2 .pkw-pillar-desc { font-size: 14px; color: var(--pkw-mid-gray); line-height: 1.6; }

/* =============================================================
   BLOG PREVIEW
   ============================================================= */
.pkw-v2 .pkw-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.pkw-v2 .pkw-blog-card {
  border-radius: var(--pkw-radius-md); overflow: hidden;
  background: var(--pkw-white); border: 1px solid var(--pkw-gray-bg);
  transition: transform var(--pkw-transition), box-shadow var(--pkw-transition);
}
.pkw-v2 .pkw-blog-card:hover { transform: translateY(-3px); box-shadow: var(--pkw-shadow-md); }
.pkw-v2 .pkw-blog-card-img { height: 180px; overflow: hidden; }
.pkw-v2 .pkw-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pkw-v2 .pkw-blog-card-img-placeholder {
  height: 100%;
  background: linear-gradient(135deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.pkw-v2 .pkw-blog-card-body { padding: 18px; }
.pkw-v2 .pkw-blog-category {
  font-size: 10px; font-weight: 700; color: var(--pkw-green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.pkw-v2 .pkw-blog-title {
  font-size: 16px; font-weight: 700; color: var(--pkw-charcoal);
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pkw-v2 .pkw-blog-excerpt { font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.6; margin-bottom: 14px; }
.pkw-v2 .pkw-blog-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--pkw-mid-gray);
}
.pkw-v2 .pkw-blog-read-time { display: flex; align-items: center; gap: 4px; }

/* =============================================================
   HOW TO BOOK — 3 STEPS
   ============================================================= */
.pkw-v2 .pkw-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: start;
  position: relative;
}
.pkw-v2 .pkw-steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px; background: var(--pkw-gray-bg); z-index: 0;
}
.pkw-v2 .pkw-step { text-align: center; position: relative; z-index: 1; }
.pkw-v2 .pkw-step-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--pkw-green-light);
  border: 2px solid var(--pkw-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px; color: var(--pkw-green);
  position: relative;
}
.pkw-v2 .pkw-step-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pkw-green); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pkw-v2 .pkw-step-title { font-size: 16px; font-weight: 700; color: var(--pkw-teal); margin-bottom: 8px; }
.pkw-v2 .pkw-step-desc { font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.6; }
.pkw-v2 .pkw-step-tick {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; color: var(--pkw-green); font-weight: 600; margin-top: 10px;
}

/* =============================================================
   NEWSLETTER
   ============================================================= */
.pkw-v2 .pkw-newsletter-section {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
  padding: 56px 0;
}
.pkw-v2 .pkw-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.pkw-v2 .pkw-newsletter-title {
  font-family: var(--pkw-font-heading);
  font-size: 28px; font-weight: 700; font-style: normal;
  color: #fff; margin-bottom: 6px; letter-spacing: -0.3px;
}
.pkw-v2 .pkw-newsletter-sub { font-size: 14px; color: rgba(255,255,255,0.72); }
.pkw-v2 .pkw-newsletter-form {
  display: flex; gap: 0; border-radius: var(--pkw-radius-pill);
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.pkw-v2 .pkw-newsletter-input {
  border: none; outline: none; padding: 15px 24px;
  font-size: 14px; font-family: var(--pkw-font-body);
  width: 300px; background: #fff; color: var(--pkw-charcoal);
}
.pkw-v2 .pkw-newsletter-input::placeholder { color: var(--pkw-mid-gray); }
.pkw-v2 .pkw-newsletter-submit {
  background: var(--pkw-green); color: #fff;
  border: none; padding: 15px 28px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--pkw-font-body);
  transition: background var(--pkw-transition);
  white-space: nowrap;
}
.pkw-v2 .pkw-newsletter-submit:hover { background: var(--pkw-green-dark); }

/* =============================================================
   FOOTER
   ============================================================= */
.pkw-v2 .pkw-footer {
  background: var(--pkw-teal);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}
.pkw-v2 .pkw-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.pkw-v2 .pkw-footer-brand { }
.pkw-v2 .pkw-footer-logo { height: 34px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.pkw-v2 .pkw-footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 18px; max-width: 260px;
}
.pkw-v2 .pkw-footer-contact { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; flex-direction: column; gap: 6px; }
.pkw-v2 .pkw-footer-contact a { color: rgba(255,255,255,0.7); transition: color var(--pkw-transition); }
.pkw-v2 .pkw-footer-contact a:hover { color: #fff; }
.pkw-v2 .pkw-footer-contact i { width: 16px; }
.pkw-v2 .pkw-footer-col-title {
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.pkw-v2 .pkw-footer-links { display: flex; flex-direction: column; gap: 10px; }
.pkw-v2 .pkw-footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.65);
  transition: color var(--pkw-transition);
  display: flex; align-items: center; gap: 6px;
}
.pkw-v2 .pkw-footer-links a:hover { color: #fff; }
.pkw-v2 .pkw-footer-links a i { font-size: 11px; color: var(--pkw-green); }
.pkw-v2 .pkw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.pkw-v2 .pkw-footer-bottom-left { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.pkw-v2 .pkw-footer-made-in {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--pkw-green); font-weight: 600;
}
.pkw-v2 .pkw-footer-payments {
  display: flex; align-items: center; gap: 8px;
}
.pkw-v2 .pkw-pay-icon {
  height: 22px; padding: 3px 8px;
  background: rgba(255,255,255,0.12); border-radius: 4px;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.8);
  display: flex; align-items: center;
}
.pkw-v2 .pkw-footer-socials { display: flex; gap: 10px; }
.pkw-v2 .pkw-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); font-size: 14px;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-social-icon:hover { background: var(--pkw-green); border-color: var(--pkw-green); color: #fff; }

/* =============================================================
   STATS BAR (5-card grid)
   ============================================================= */
.pkw-v2 .pkw-statsbar { padding: 8px 0 20px; }
.pkw-v2 .pkw-statsbar-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.pkw-v2 .pkw-sb-card {
  border-radius: 12px; padding: 16px 14px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--pkw-transition); cursor: default;
}
.pkw-v2 .pkw-sb-card:hover { transform: translateY(-2px); }
.pkw-v2 .pkw-sb-card.pkw-sc1 { background: #FFF3E8; }
.pkw-v2 .pkw-sb-card.pkw-sc2 { background: #E4F4F6; }
.pkw-v2 .pkw-sb-card.pkw-sc3 { background: var(--pkw-green-light); }
.pkw-v2 .pkw-sb-card.pkw-sc4 { background: #EEE9FD; }
.pkw-v2 .pkw-sb-card.pkw-sc5 { background: #FEFAE8; }
.pkw-v2 .pkw-sb-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-bottom: 10px;
}
.pkw-v2 .pkw-sb-card.pkw-sc1 .pkw-sb-icon { background: rgba(180,83,9,.1);    color: #B45309; }
.pkw-v2 .pkw-sb-card.pkw-sc2 .pkw-sb-icon { background: rgba(33,110,133,.12); color: var(--pkw-teal-mid); }
.pkw-v2 .pkw-sb-card.pkw-sc3 .pkw-sb-icon { background: rgba(60,181,75,.14);  color: var(--pkw-green); }
.pkw-v2 .pkw-sb-card.pkw-sc4 .pkw-sb-icon { background: rgba(109,40,217,.1);  color: #6D28D9; }
.pkw-v2 .pkw-sb-card.pkw-sc5 .pkw-sb-icon { background: rgba(180,140,9,.1);   color: #92620A; }
.pkw-v2 .pkw-sb-num {
  font-size: 20px; font-weight: 700; color: var(--pkw-charcoal); line-height: 1;
}
.pkw-v2 .pkw-sb-label {
  font-size: 10px; color: var(--pkw-mid-gray); margin-top: 5px; line-height: 1.45;
}

/* =============================================================
   PROVINCE PILLS BAR (compact strip)
   ============================================================= */
.pkw-v2 .pkw-pbar { padding: 4px 0 28px; }
.pkw-v2 .pkw-pbar-scroll {
  display: flex; gap: 7px; overflow-x: auto; padding-bottom: 4px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.pkw-v2 .pkw-pbar-scroll::-webkit-scrollbar { display: none; }
.pkw-v2 .pkw-ppill {
  flex-shrink: 0; font-size: 11px; font-weight: 500;
  padding: 7px 18px; border-radius: 24px; cursor: pointer;
  border: 1.5px solid var(--pkw-light-gray);
  color: var(--pkw-teal-mid); background: #fff;
  white-space: nowrap; text-decoration: none; display: inline-block;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-ppill.active {
  background: var(--pkw-teal); color: #fff; border-color: var(--pkw-teal);
}
.pkw-v2 .pkw-ppill:hover:not(.active) {
  background: var(--pkw-ice); border-color: var(--pkw-teal-bright); color: var(--pkw-teal);
}

/* =============================================================
   FLASH DEALS
   ============================================================= */
.pkw-v2 .pkw-flash-section { padding: 12px 0 40px; }
.pkw-v2 .pkw-flash-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 18px;
}
.pkw-v2 .pkw-flash-title {
  font-size: 22px; font-weight: 700; color: var(--pkw-charcoal); line-height: 1.2;
  display: flex; align-items: center; gap: 8px;
}
.pkw-v2 .pkw-flash-title i { color: var(--pkw-green); font-size: 18px; }
.pkw-v2 .pkw-flash-title em { color: var(--pkw-green); font-style: normal; }
.pkw-v2 .pkw-flash-sub { font-size: 12px; color: var(--pkw-mid-gray); margin-top: 4px; }
.pkw-v2 .pkw-flash-link {
  font-size: 12px; font-weight: 500; color: var(--pkw-teal-mid);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
  transition: color var(--pkw-transition);
}
.pkw-v2 .pkw-flash-link:hover { color: var(--pkw-teal); }

.pkw-v2 .pkw-flash-scroll {
  display: flex; gap: 14px;
  overflow-x: auto; padding: 6px 4px 16px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.pkw-v2 .pkw-flash-scroll::-webkit-scrollbar { display: none; }

.pkw-v2 .pkw-flash-card {
  min-width: 240px; flex-shrink: 0; scroll-snap-align: start;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--pkw-light-gray);
  background: var(--pkw-white); cursor: pointer;
  transition: box-shadow var(--pkw-transition), transform var(--pkw-transition);
}
.pkw-v2 .pkw-flash-card:hover {
  box-shadow: var(--pkw-shadow-lg);
  transform: translateY(-4px);
}
.pkw-v2 .pkw-flash-img {
  height: 130px; position: relative;
  display: flex; align-items: flex-start;
  justify-content: space-between; padding: 10px;
}
.pkw-v2 .pkw-flash-badge {
  font-size: 10px; font-weight: 600; background: var(--pkw-green);
  color: #fff; padding: 4px 10px; border-radius: 20px;
  display: flex; align-items: center; gap: 4px;
}
.pkw-v2 .pkw-flash-badge i { font-size: 11px; }
.pkw-v2 .pkw-flash-disc {
  font-size: 11px; font-weight: 700; background: #fff;
  color: var(--pkw-green); padding: 3px 8px; border-radius: 6px;
}
.pkw-v2 .pkw-flash-body { padding: 13px; }
.pkw-v2 .pkw-flash-name {
  font-size: 13px; font-weight: 600; color: var(--pkw-charcoal); margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pkw-v2 .pkw-flash-loc {
  font-size: 11px; color: var(--pkw-mid-gray);
  display: flex; align-items: center; gap: 3px; margin-bottom: 10px;
}
.pkw-v2 .pkw-flash-timer {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--pkw-mid-gray); margin-bottom: 10px;
}
.pkw-v2 .pkw-timer-box { display: flex; gap: 3px; align-items: center; }
.pkw-v2 .pkw-tunit {
  background: var(--pkw-teal); color: #fff; border-radius: 4px;
  padding: 3px 7px; font-size: 11px; font-weight: 600; font-family: monospace;
  min-width: 24px; text-align: center;
}
.pkw-v2 .pkw-tsep { color: var(--pkw-mid-gray); font-weight: 700; font-size: 12px; }
.pkw-v2 .pkw-flash-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid #F0F0F0;
}
.pkw-v2 .pkw-flash-was {
  font-size: 10px; color: #AAAAAA; text-decoration: line-through; line-height: 1.3;
}
.pkw-v2 .pkw-flash-now {
  font-size: 15px; font-weight: 700; color: var(--pkw-charcoal); line-height: 1;
}
.pkw-v2 .pkw-flash-night { font-size: 10px; color: var(--pkw-mid-gray); font-weight: 400; }
.pkw-v2 .pkw-flash-btn {
  font-size: 11px; font-weight: 600; background: var(--pkw-green);
  color: #fff; border: none; border-radius: 8px;
  padding: 8px 14px; cursor: pointer; transition: background var(--pkw-transition);
  white-space: nowrap;
}
.pkw-v2 .pkw-flash-btn:hover { background: var(--pkw-green-dark); }

/* =============================================================
   EVENTS & STAYS
   ============================================================= */
.pkw-v2 .pkw-events-section { padding: 40px 0 48px; }
.pkw-v2 .pkw-events-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; gap: 20px;
}
.pkw-v2 .pkw-events-new-badge {
  display: inline-block; background: var(--pkw-green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  padding: 3px 10px; border-radius: 6px; margin-bottom: 12px;
}
.pkw-v2 .pkw-events-title {
  font-size: 42px; font-weight: 800; color: var(--pkw-charcoal);
  line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.5px;
}
.pkw-v2 .pkw-events-title em { color: var(--pkw-teal); font-style: normal; }
.pkw-v2 .pkw-events-sub {
  font-size: 14px; color: var(--pkw-mid-gray); line-height: 1.6; max-width: 560px;
}
.pkw-v2 .pkw-events-nav {
  display: flex; gap: 8px; flex-shrink: 0; margin-top: 10px;
}
.pkw-v2 .pkw-ev-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--pkw-light-gray);
  background: var(--pkw-white); color: var(--pkw-charcoal);
  font-size: 14px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-ev-nav-btn:hover {
  border-color: var(--pkw-teal); color: var(--pkw-teal); background: var(--pkw-ice);
}
.pkw-v2 .pkw-events-scroll {
  display: flex; gap: 16px;
  overflow-x: auto; padding: 6px 4px 16px;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.pkw-v2 .pkw-events-scroll::-webkit-scrollbar { display: none; }
.pkw-v2 .pkw-ev-card {
  min-width: 280px; flex-shrink: 0; scroll-snap-align: start;
  display: flex; align-items: center; gap: 14px;
  background: var(--pkw-white); border: 1.5px solid var(--pkw-light-gray);
  border-radius: 16px; padding: 16px; cursor: pointer;
  transition: box-shadow var(--pkw-transition), border-color var(--pkw-transition), transform var(--pkw-transition);
}
.pkw-v2 .pkw-ev-card:hover {
  box-shadow: var(--pkw-shadow-lg);
  border-color: var(--pkw-teal-bright);
  transform: translateY(-2px);
}
.pkw-v2 .pkw-ev-img {
  width: 88px; height: 88px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
}
.pkw-v2 .pkw-ev-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pkw-v2 .pkw-ev-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.pkw-v2 .pkw-ev-info { flex: 1; min-width: 0; }
.pkw-v2 .pkw-ev-name {
  font-size: 14px; font-weight: 700; color: #0D0D0D;
  margin-bottom: 7px; line-height: 1.3;
}
.pkw-v2 .pkw-ev-date, .pkw-v2 .pkw-ev-loc {
  font-size: 12px; color: var(--pkw-mid-gray);
  display: flex; align-items: center; gap: 5px; margin-bottom: 4px;
}
.pkw-v2 .pkw-ev-date i, .pkw-v2 .pkw-ev-loc i { font-size: 11px; color: #A0A0A0; }
.pkw-v2 .pkw-events-footer {
  display: flex; justify-content: flex-end; margin-top: 24px;
}
.pkw-v2 .pkw-ev-explore-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  border: 2px solid var(--pkw-teal); background: transparent;
  color: var(--pkw-teal); font-size: 14px; font-weight: 700;
  transition: all var(--pkw-transition); cursor: pointer;
}
.pkw-v2 .pkw-ev-explore-btn:hover {
  background: var(--pkw-teal); color: #fff;
}

/* =============================================================
   REUSABLE SCROLL NAV ARROWS
   ============================================================= */
.pkw-v2 .pkw-nav-arrows {
  display: flex; gap: 8px; flex-shrink: 0; align-items: center;
}
.pkw-v2 .pkw-nav-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--pkw-light-gray);
  background: var(--pkw-white); color: var(--pkw-charcoal);
  font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--pkw-transition);
}
.pkw-v2 .pkw-nav-arrow:hover {
  border-color: var(--pkw-teal); color: var(--pkw-teal); background: var(--pkw-ice);
}
.pkw-v2 .pkw-section-header-right {
  display: flex; align-items: center; gap: 14px;
}

/* =============================================================
   SKELETON LOADER
   ============================================================= */
@keyframes pkwSkeleton {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.pkw-v2 .pkw-skeleton {
  background: linear-gradient(90deg, var(--pkw-gray-bg) 25%, #e9eef0 50%, var(--pkw-gray-bg) 75%);
  background-size: 800px 100%;
  animation: pkwSkeleton 1.4s infinite linear;
  border-radius: 6px;
}

/* =============================================================
   MOBILE — STICKY BOTTOM NAV
   ============================================================= */
.pkw-v2 .pkw-mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--pkw-white);
  border-top: 1px solid var(--pkw-gray-bg);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 998; height: 60px;
  grid-template-columns: repeat(5, 1fr);
}
.pkw-v2 .pkw-bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 10px; color: var(--pkw-mid-gray); font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: color var(--pkw-transition);
}
.pkw-v2 .pkw-bottom-nav-item i { font-size: 18px; }
.pkw-v2 .pkw-bottom-nav-item.active { color: var(--pkw-green); }
.pkw-v2 .pkw-bottom-nav-item:hover { color: var(--pkw-teal); }

/* =============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .pkw-v2 .pkw-hotel-cards { grid-template-columns: repeat(2, 1fr); }
  .pkw-v2 .pkw-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .pkw-v2 .pkw-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pkw-v2 .pkw-reviews-grid { grid-template-columns: 220px 1fr; }
  .pkw-v2 .pkw-stats-grid { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: auto auto; }
  .pkw-v2 .pkw-stat-featured { grid-column: 1 / -1; }
  .pkw-v2 .pkw-stat-divider { display: none; }
}

/* =============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
  :root { --pkw-container: 100%; }

  .pkw-v2 .pkw-header-actions { display: none; }
  .pkw-v2 .pkw-header-logo { margin-right: auto; }
  .pkw-v2 .pkw-header-mobile { display: flex; align-items: center; gap: 8px; }

  .pkw-v2 .pkw-hero { padding: 48px 0 120px; }
  .pkw-v2 .pkw-hero-headline { font-size: 34px; }
  .pkw-v2 .pkw-hero-subline { font-size: 14px; }

  .pkw-v2 .pkw-search-float-wrapper { margin-top: -90px; padding: 0 16px; }
  .pkw-v2 .pkw-search-row { flex-direction: column; min-height: unset; }

  /* Reset desktop left-corner radius — on mobile first field gets TOP corners */
  .pkw-v2 .pkw-search-row .pkw-sf-field:first-child {
    border-radius: 18px 18px 0 0;
  }
  /* Reset desktop right-corner radius on CTA — on mobile it gets BOTTOM corners */
  .pkw-v2 .pkw-search-cta {
    border-radius: 0 0 18px 18px;
  }

  /* Each field: auto height in column stack — overrides pkw-sf-field--fixed (equal specificity, later in cascade) */
  .pkw-v2 .pkw-sf-field {
    flex: 0 0 auto;
    min-height: 60px;
    padding: 10px 16px;
    border-right: none;
    border-bottom: 1px solid var(--pkw-gray-bg);
  }
  .pkw-v2 .pkw-sf-field:last-of-type { border-bottom: none; }

  /* Floating label: tighten padding-top on mobile */
  .pkw-v2 .pkw-dest-input { padding-top: 12px; }

  .pkw-v2 .pkw-search-cta { padding: 12px; }
  .pkw-v2 .pkw-search-cta .pkw-btn-primary { width: 100%; border-radius: 10px; }
  .pkw-v2 .pkw-search-trust { flex-direction: column; gap: 6px; }

  .pkw-v2 .pkw-stats-section { padding-top: 100px; }
  .pkw-v2 .pkw-stats-grid { grid-template-columns: 1fr 1fr; }
  .pkw-v2 .pkw-stat-featured { grid-column: 1 / -1; }

  .pkw-v2 .pkw-section { padding: 40px 0; }
  .pkw-v2 .pkw-section-title { font-size: 24px; }
  .pkw-v2 .pkw-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .pkw-v2 .pkw-hotel-cards { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-seasonal-cards { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-blog-grid { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-steps-grid { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-steps-grid::before { display: none; }
  .pkw-v2 .pkw-dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pkw-v2 .pkw-dest-card-large { grid-column: 1 / -1; grid-row: auto; height: 220px; }

  .pkw-v2 .pkw-reviews-grid { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-review-cards-grid { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-reviews-panel { border-radius: var(--pkw-radius-md); padding: 24px; }

  .pkw-v2 .pkw-loyalty-inner { flex-direction: column; }
  .pkw-v2 .pkw-loyalty-actions { width: 100%; }
  .pkw-v2 .pkw-loyalty-actions .pkw-btn { flex: 1; justify-content: center; }

  .pkw-v2 .pkw-newsletter-inner { flex-direction: column; text-align: center; }
  .pkw-v2 .pkw-newsletter-form { width: 100%; }
  .pkw-v2 .pkw-newsletter-input { width: 100%; flex: 1; }

  .pkw-v2 .pkw-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pkw-v2 .pkw-footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .pkw-v2 .pkw-mobile-bottom-nav { display: grid; }
  body.pkw-v2 { padding-bottom: 60px; }
}

/* =============================================================
   EVENTS & STAYS
   ============================================================= */
.pkw-v2 .pkw-events-heading em { font-style: normal; color: var(--pkw-teal-bright); }
.pkw-v2 .pkw-events-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 768px) {
  .pkw-v2 .pkw-events-cards { grid-template-columns: 1fr; }
}
.pkw-v2 .pkw-event-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--pkw-white); border: 1px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-md); padding: 14px;
  transition: box-shadow var(--pkw-transition);
}
.pkw-v2 .pkw-event-card:hover { box-shadow: var(--pkw-shadow-md); }
.pkw-v2 .pkw-event-img {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: var(--pkw-radius-sm); overflow: hidden; object-fit: cover;
}
.pkw-v2 .pkw-event-img-placeholder {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: var(--pkw-radius-sm);
  background: linear-gradient(135deg, var(--pkw-teal) 0%, var(--pkw-teal-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.pkw-v2 .pkw-event-body {}
.pkw-v2 .pkw-event-date { font-size: 11px; color: var(--pkw-green); font-weight: 700; margin-bottom: 4px; }
.pkw-v2 .pkw-event-name { font-size: 14px; font-weight: 700; color: var(--pkw-charcoal); margin-bottom: 4px; }
.pkw-v2 .pkw-event-meta { font-size: 12px; color: var(--pkw-mid-gray); display: flex; flex-direction: column; gap: 2px; }


/* ════════════════════════════════════════════════════════════════════════════
   P8: Static Pages & Error States
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Static Page Hero ──────────────────────────────────────────────────────── */
.pkw-v2 .pkw-sp-hero {
  background: linear-gradient(135deg, var(--pkw-green) 0%, var(--pkw-deep-teal) 100%);
  padding: 48px 0 40px;
  color: #fff;
}
.pkw-v2 .pkw-sp-breadcrumb .breadcrumb { background: none; padding: 0; margin: 0; }
.pkw-v2 .pkw-sp-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; }
.pkw-v2 .pkw-sp-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.pkw-v2 .pkw-sp-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.95); font-size: 13px; }
.pkw-v2 .pkw-sp-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.pkw-v2 .pkw-sp-hero-title {
  font-family: 'Roboto', sans-serif; font-size: 30px; font-weight: 700;
  color: #fff; margin: 10px 0 0; letter-spacing: -0.3px;
}
.pkw-v2 .pkw-sp-hero-sub { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ── Static Page Body ──────────────────────────────────────────────────────── */
.pkw-v2 .pkw-sp-body { padding: 52px 0 72px; background: #fff; }
.pkw-v2 .pkw-sp-content { max-width: 860px; }
.pkw-v2 .pkw-sp-content h1,
.pkw-v2 .pkw-sp-content h2,
.pkw-v2 .pkw-sp-content h3 {
  font-family: 'Roboto', sans-serif; font-weight: 700;
  color: var(--pkw-deep-teal); margin-top: 32px; margin-bottom: 12px;
}
.pkw-v2 .pkw-sp-content h1 { font-size: 22px; }
.pkw-v2 .pkw-sp-content h2 { font-size: 18px; }
.pkw-v2 .pkw-sp-content h3 { font-size: 16px; }
.pkw-v2 .pkw-sp-content p {
  font-size: 15px; color: var(--pkw-charcoal); line-height: 1.75; margin-bottom: 16px;
}
.pkw-v2 .pkw-sp-content ul,
.pkw-v2 .pkw-sp-content ol {
  font-size: 15px; color: var(--pkw-charcoal); line-height: 1.75;
  margin-bottom: 16px; padding-left: 24px;
}
.pkw-v2 .pkw-sp-content li { margin-bottom: 8px; }
.pkw-v2 .pkw-sp-content a { color: var(--pkw-green); }
.pkw-v2 .pkw-sp-content a:hover { color: var(--pkw-deep-teal); }
.pkw-v2 .pkw-sp-content hr { border-color: var(--pkw-gray-bg); margin: 32px 0; }
.pkw-v2 .pkw-sp-section-title {
  font-size: 20px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 6px;
}
.pkw-v2 .pkw-sp-section-sub { font-size: 14px; color: var(--pkw-mid-gray); margin-bottom: 28px; }

/* ── FAQ Page ──────────────────────────────────────────────────────────────── */

/* Category tab filter */
.pkw-v2 .pkw-faq-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.pkw-v2 .pkw-faq-tab {
  padding: 8px 18px; border-radius: 999px;
  border: 1.5px solid var(--pkw-gray-bg);
  background: #fff; color: var(--pkw-mid-gray);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  font-family: var(--pkw-font-body);
}
.pkw-v2 .pkw-faq-tab:hover {
  border-color: var(--pkw-green); color: var(--pkw-green);
}
.pkw-v2 .pkw-faq-tab.active {
  background: var(--pkw-green); border-color: var(--pkw-green);
  color: #fff;
}

/* Empty-state message when no results */
.pkw-v2 .pkw-faq-empty {
  display: none; padding: 40px 0; text-align: center;
  color: var(--pkw-mid-gray); font-size: 14px;
}
.pkw-v2 .pkw-faq-empty.visible { display: block; }

.pkw-v2 .pkw-faq-wrap { max-width: 760px; }
.pkw-v2 .pkw-faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.pkw-v2 .pkw-faq-item {
  border: 1.5px solid var(--pkw-gray-bg); border-radius: 12px;
  overflow: hidden; transition: border-color 0.2s;
}
.pkw-v2 .pkw-faq-item:has(.pkw-faq-q[aria-expanded="true"]) { border-color: var(--pkw-green); }
.pkw-v2 .pkw-faq-item.pkw-faq-open { border-color: var(--pkw-green); }
.pkw-v2 .pkw-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: #fff; border: none; outline: none; cursor: pointer;
  text-align: left; gap: 12px;
}
.pkw-v2 .pkw-faq-q:focus { outline: none; }
.pkw-v2 .pkw-faq-q-text { font-size: 15px; font-weight: 600; color: var(--pkw-deep-teal); line-height: 1.4; }
.pkw-v2 .pkw-faq-chevron {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--pkw-surface); display: flex; align-items: center; justify-content: center;
  color: var(--pkw-green); font-size: 11px;
  transition: transform 0.25s, background 0.2s;
}
.pkw-v2 .pkw-faq-q[aria-expanded="true"] .pkw-faq-chevron {
  transform: rotate(180deg); background: var(--pkw-green); color: #fff;
}
.pkw-v2 .pkw-faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}
.pkw-v2 .pkw-faq-panel.open {
  max-height: 600px; /* large enough for any answer */
}
.pkw-v2 .pkw-faq-a {
  padding: 14px 20px 18px 20px; font-size: 14px; color: var(--pkw-charcoal);
  line-height: 1.7; border-top: 1px solid var(--pkw-gray-bg);
}
.pkw-v2 .pkw-faq-cta {
  margin-top: 40px; max-width: 760px;
  background: linear-gradient(135deg, var(--pkw-surface) 0%, #EFFCF1 100%);
  border: 1.5px solid #d4f0d8; border-radius: 16px; padding: 24px 28px;
}
.pkw-v2 .pkw-faq-cta-inner { display: flex; align-items: center; gap: 20px; }
.pkw-v2 .pkw-faq-cta-icon { font-size: 32px; color: var(--pkw-green); flex-shrink: 0; }
.pkw-v2 .pkw-faq-cta-title { font-size: 16px; font-weight: 700; color: var(--pkw-deep-teal); }
.pkw-v2 .pkw-faq-cta-sub { font-size: 13px; color: var(--pkw-mid-gray); margin-top: 2px; }
.pkw-v2 .pkw-faq-cta-btn {
  margin-left: auto; flex-shrink: 0; padding: 11px 24px;
  background: linear-gradient(135deg, var(--pkw-green), var(--pkw-deep-teal));
  color: #fff; border-radius: 999px; text-decoration: none;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.pkw-v2 .pkw-faq-cta-btn:hover { opacity: 0.9; color: #fff; text-decoration: none; }
@media (max-width: 600px) {
  .pkw-v2 .pkw-faq-cta-inner { flex-wrap: wrap; }
  .pkw-v2 .pkw-faq-cta-btn { margin-left: 0; }
}

/* ── Contact Page ──────────────────────────────────────────────────────────── */
.pkw-v2 .pkw-sp-contact-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start;
}
@media (max-width: 991px) { .pkw-v2 .pkw-sp-contact-layout { grid-template-columns: 1fr; } }

.pkw-v2 .pkw-sp-contact-form .pkw-form-group { margin-bottom: 20px; }
.pkw-v2 .pkw-sp-contact-form label {
  font-size: 13px; font-weight: 600; color: var(--pkw-deep-teal);
  margin-bottom: 6px; display: block;
}
.pkw-v2 .pkw-required { color: #ef4444; margin-left: 2px; }
.pkw-v2 .pkw-optional { color: var(--pkw-mid-gray); font-weight: 400; }
.pkw-v2 .pkw-sp-contact-form input,
.pkw-v2 .pkw-sp-contact-form textarea,
.pkw-v2 .pkw-sp-contact-form select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--pkw-gray-bg); border-radius: 10px;
  font-size: 14px; font-family: 'Roboto', sans-serif; color: var(--pkw-charcoal);
  background: #fff; transition: border-color 0.2s; outline: none;
  appearance: auto;
}
.pkw-v2 .pkw-sp-contact-form input:focus,
.pkw-v2 .pkw-sp-contact-form textarea:focus,
.pkw-v2 .pkw-sp-contact-form select:focus { border-color: var(--pkw-green); }
.pkw-v2 .pkw-sp-contact-form input.is-invalid,
.pkw-v2 .pkw-sp-contact-form textarea.is-invalid,
.pkw-v2 .pkw-sp-contact-form select.is-invalid { border-color: #ef4444; }
.pkw-v2 .pkw-sp-contact-form textarea { min-height: 130px; resize: vertical; }
.pkw-v2 .pkw-field-error { font-size: 12px; color: #ef4444; margin-top: 5px; }
.pkw-v2 .pkw-btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--pkw-green), var(--pkw-deep-teal));
  color: #fff; border: none; border-radius: 999px;
  font-size: 15px; font-weight: 600; font-family: 'Roboto', sans-serif;
  cursor: pointer; transition: opacity 0.2s; letter-spacing: 0.2px;
}
.pkw-v2 .pkw-btn-submit:hover { opacity: 0.9; }

.pkw-v2 .pkw-sp-contact-sidebar {
  background: var(--pkw-surface); border: 1.5px solid #E8F8FA;
  border-radius: 16px; padding: 28px; position: sticky; top: 90px;
}
.pkw-v2 .pkw-sp-contact-sidebar h3 {
  font-size: 16px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 24px;
}
.pkw-v2 .pkw-sp-contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.pkw-v2 .pkw-sp-contact-info-item .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pkw-green), var(--pkw-deep-teal));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 15px;
}
.pkw-v2 .pkw-sp-contact-info-item .text .label {
  font-size: 11px; font-weight: 600; color: var(--pkw-mid-gray);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pkw-v2 .pkw-sp-contact-info-item .text .value {
  font-size: 13px; font-weight: 500; color: var(--pkw-deep-teal); margin-top: 3px; line-height: 1.6;
}
.pkw-v2 .pkw-sp-contact-info-item .text .value a {
  color: var(--pkw-deep-teal); text-decoration: none;
}
.pkw-v2 .pkw-sp-contact-info-item .text .value a:hover { color: var(--pkw-green); }
.pkw-v2 .pkw-sp-contact-divider { border-top: 1.5px solid var(--pkw-gray-bg); margin: 20px 0; }
.pkw-v2 .pkw-sp-contact-faq-link { display: flex; align-items: center; gap: 14px; }
.pkw-v2 .pkw-sp-contact-faq-link i { font-size: 22px; color: var(--pkw-teal); flex-shrink: 0; }
.pkw-v2 .pkw-sp-contact-faq-text { font-size: 13px; color: var(--pkw-mid-gray); margin-bottom: 4px; }
.pkw-v2 .pkw-sp-contact-faq-btn {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--pkw-green); text-decoration: none;
}
.pkw-v2 .pkw-sp-contact-faq-btn:hover { color: var(--pkw-deep-teal); text-decoration: underline; }

/* ── Alert variants for contact page ──────────────────────────────────────── */
.pkw-v2 .pkw-alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; }
.pkw-v2 .pkw-alert-success { background: #EFFCF1; border: 1px solid #a7f3be; color: #166534; }
.pkw-v2 .pkw-alert-danger  { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── Static Page Hero — enhanced visuals ──────────────────────────────────── */
.pkw-v2 .pkw-sp-hero {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, #0d2b38 100%);
  padding: 52px 0 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pkw-v2 .pkw-sp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(60,181,75,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.pkw-v2 .pkw-sp-hero .container { position: relative; }
.pkw-v2 .pkw-sp-hero-title {
  font-family: 'Roboto', sans-serif;
  font-size: 34px; font-weight: 800;
  color: #fff; margin: 12px 0 0;
  letter-spacing: -0.5px; line-height: 1.15;
}
.pkw-v2 .pkw-sp-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.78); margin-top: 8px;
}

/* ── Legal / generic content page (show.blade.php) ───────────────────────── */
.pkw-v2 .pkw-sp-legal-body { padding: 56px 0 80px; background: var(--pkw-gray-bg); }
.pkw-v2 .pkw-sp-legal-card {
  background: #fff; border-radius: var(--pkw-radius-lg);
  padding: 48px 52px; max-width: 840px;
  box-shadow: var(--pkw-shadow-sm);
}
.pkw-v2 .pkw-sp-legal-card h1,
.pkw-v2 .pkw-sp-legal-card h2,
.pkw-v2 .pkw-sp-legal-card h3 {
  font-family: 'Roboto', sans-serif; font-weight: 700;
  color: var(--pkw-deep-teal); margin-top: 36px; margin-bottom: 12px;
}
.pkw-v2 .pkw-sp-legal-card h1:first-child,
.pkw-v2 .pkw-sp-legal-card h2:first-child { margin-top: 0; }
.pkw-v2 .pkw-sp-legal-card h1 { font-size: 22px; }
.pkw-v2 .pkw-sp-legal-card h2 { font-size: 18px; }
.pkw-v2 .pkw-sp-legal-card h3 { font-size: 16px; }
.pkw-v2 .pkw-sp-legal-card p {
  font-size: 15px; color: var(--pkw-charcoal); line-height: 1.8; margin-bottom: 18px;
}
.pkw-v2 .pkw-sp-legal-card ul,
.pkw-v2 .pkw-sp-legal-card ol {
  font-size: 15px; color: var(--pkw-charcoal);
  line-height: 1.8; margin-bottom: 18px; padding-left: 24px;
}
.pkw-v2 .pkw-sp-legal-card li { margin-bottom: 8px; }
.pkw-v2 .pkw-sp-legal-card a { color: var(--pkw-green); }
.pkw-v2 .pkw-sp-legal-card a:hover { color: var(--pkw-deep-teal); }
.pkw-v2 .pkw-sp-legal-card hr {
  border: none; border-top: 1.5px solid var(--pkw-light-gray); margin: 32px 0;
}
.pkw-v2 .pkw-sp-legal-meta {
  font-size: 12px; color: var(--pkw-mid-gray);
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1.5px solid var(--pkw-light-gray);
}
@media (max-width: 768px) {
  .pkw-v2 .pkw-sp-legal-card { padding: 28px 20px; }
}

/* ── Error Pages (404 / 500) — pkw-err-* ─────────────────────────────────── */
.pkw-err-page {
  font-family: 'Roboto', -apple-system, sans-serif;
  background: linear-gradient(160deg, #F5FEFF 0%, #EFFCF1 100%);
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #1B4353; padding: 24px;
}
.pkw-err-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 40px; text-decoration: none;
}
.pkw-err-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #3CB54B, #1B4353);
  border-radius: 9px;
}
.pkw-err-logo-text {
  font-size: 21px; font-weight: 800; color: #1B4353; letter-spacing: -0.5px;
}
.pkw-err-wrap { text-align: center; max-width: 520px; width: 100%; }
.pkw-err-code {
  font-size: 100px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #3CB54B, #1B4353);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px; letter-spacing: -4px;
}
.pkw-err-accent {
  width: 48px; height: 4px; background: #3CB54B;
  border-radius: 4px; margin: 0 auto 24px;
}
.pkw-err-wrap h1 {
  font-size: 26px; font-weight: 700; color: #1B4353; margin-bottom: 12px;
}
.pkw-err-wrap p {
  font-size: 15px; color: #646C6C; line-height: 1.65;
  margin-bottom: 32px; max-width: 380px; margin-left: auto; margin-right: auto;
}
.pkw-err-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.pkw-err-btn-primary {
  display: inline-block; padding: 13px 28px;
  background: linear-gradient(135deg, #3CB54B, #1B4353);
  color: #fff; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: opacity 0.2s;
}
.pkw-err-btn-primary:hover { opacity: 0.9; color: #fff; text-decoration: none; }
.pkw-err-btn-secondary {
  display: inline-block; padding: 12px 28px;
  background: #fff; color: #1B4353;
  border: 1.5px solid #DCDCDC; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: border-color 0.2s;
}
.pkw-err-btn-secondary:hover { border-color: #3CB54B; color: #1B4353; text-decoration: none; }
.pkw-err-links { font-size: 13px; color: #646C6C; }
.pkw-err-links a {
  color: #3CB54B; text-decoration: none; margin: 0 8px; font-weight: 500;
}
.pkw-err-links a:hover { text-decoration: underline; }
@media (max-width: 480px) {
  .pkw-err-code { font-size: 72px; letter-spacing: -2px; }
  .pkw-err-wrap h1 { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — pkw-about-*
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── About Stats Strip ──────────────────────────────────────────────────── */
.pkw-v2 .pkw-about-stats {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, #0d2b38 100%);
  padding: 40px 0;
}
.pkw-v2 .pkw-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pkw-v2 .pkw-about-stat {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.pkw-v2 .pkw-about-stat:last-child { border-right: none; }
.pkw-v2 .pkw-about-stat-num {
  font-family: var(--pkw-font-heading);
  font-size: 38px; font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -1px;
}
.pkw-v2 .pkw-about-stat-num span { color: var(--pkw-green); }
.pkw-v2 .pkw-about-stat-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .pkw-v2 .pkw-about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .pkw-v2 .pkw-about-stat { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .pkw-v2 .pkw-about-stat:nth-child(2n) { border-right: none; }
  .pkw-v2 .pkw-about-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── About Section Base ─────────────────────────────────────────────────── */
.pkw-v2 .pkw-about-section {
  padding: 72px 0;
  background: #fff;
}
.pkw-v2 .pkw-about-section-alt {
  background: var(--pkw-surface);
}

/* ── Brand Story Grid (2-column) ────────────────────────────────────────── */
.pkw-v2 .pkw-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.pkw-v2 .pkw-about-story-text .pkw-section-label { margin-bottom: 10px; }
.pkw-v2 .pkw-about-story-text .pkw-section-title { font-size: 28px; margin-bottom: 20px; }
.pkw-v2 .pkw-about-story-text p {
  font-size: 15px; color: var(--pkw-mid-gray); line-height: 1.8;
  margin-bottom: 18px;
}
.pkw-v2 .pkw-about-story-text p:last-child { margin-bottom: 0; }
.pkw-v2 .pkw-about-story-card {
  background: linear-gradient(160deg, var(--pkw-teal) 0%, #0d2b38 100%);
  border-radius: var(--pkw-radius-lg);
  padding: 40px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pkw-v2 .pkw-about-story-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(60,181,75,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.pkw-v2 .pkw-about-story-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pkw-green); margin-bottom: 6px;
}
.pkw-v2 .pkw-about-story-card-title {
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 24px; line-height: 1.3;
}
.pkw-v2 .pkw-about-fact {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px; position: relative;
}
.pkw-v2 .pkw-about-fact:last-child { margin-bottom: 0; }
.pkw-v2 .pkw-about-fact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(60,181,75,0.18); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pkw-green); font-size: 14px;
}
.pkw-v2 .pkw-about-fact-title {
  font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.pkw-v2 .pkw-about-fact-desc {
  font-size: 12px; color: rgba(255,255,255,0.62); line-height: 1.5;
}
@media (max-width: 991px) {
  .pkw-v2 .pkw-about-story-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Values / Mission Pillars Grid ──────────────────────────────────────── */
.pkw-v2 .pkw-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pkw-v2 .pkw-about-value-card {
  background: #fff;
  border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left;
}
.pkw-v2 .pkw-about-value-card:hover {
  border-color: var(--pkw-green);
  box-shadow: var(--pkw-shadow-md);
  transform: translateY(-3px);
}
.pkw-v2 .pkw-about-value-icon {
  width: 48px; height: 48px;
  background: var(--pkw-green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pkw-green); font-size: 20px;
  margin-bottom: 16px;
}
.pkw-v2 .pkw-about-value-title {
  font-size: 15px; font-weight: 700; color: var(--pkw-deep-teal);
  margin-bottom: 8px;
}
.pkw-v2 .pkw-about-value-desc {
  font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.65;
}
@media (max-width: 991px) {
  .pkw-v2 .pkw-about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .pkw-v2 .pkw-about-values-grid { grid-template-columns: 1fr; }
}

/* ── Team / Milestones strip ────────────────────────────────────────────── */
.pkw-v2 .pkw-about-milestones {
  display: flex; gap: 0;
  border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg);
  overflow: hidden; margin-top: 48px;
}
.pkw-v2 .pkw-about-milestone {
  flex: 1; padding: 28px 24px; text-align: center;
  border-right: 1.5px solid var(--pkw-gray-bg);
}
.pkw-v2 .pkw-about-milestone:last-child { border-right: none; }
.pkw-v2 .pkw-about-milestone-year {
  font-size: 26px; font-weight: 800; color: var(--pkw-green);
  letter-spacing: -0.5px; line-height: 1;
}
.pkw-v2 .pkw-about-milestone-event {
  font-size: 13px; color: var(--pkw-deep-teal); font-weight: 600;
  margin-top: 8px; margin-bottom: 4px;
}
.pkw-v2 .pkw-about-milestone-desc {
  font-size: 12px; color: var(--pkw-mid-gray); line-height: 1.5;
}
@media (max-width: 767px) {
  .pkw-v2 .pkw-about-milestones { flex-direction: column; }
  .pkw-v2 .pkw-about-milestone { border-right: none; border-bottom: 1.5px solid var(--pkw-gray-bg); }
  .pkw-v2 .pkw-about-milestone:last-child { border-bottom: none; }
}

/* ── About CTA Banner ───────────────────────────────────────────────────── */
.pkw-v2 .pkw-about-cta {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, #0d2b38 100%);
  padding: 68px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.pkw-v2 .pkw-about-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(60,181,75,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.pkw-v2 .pkw-about-cta .container { position: relative; }
.pkw-v2 .pkw-about-cta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--pkw-green); margin-bottom: 12px;
}
.pkw-v2 .pkw-about-cta-title {
  font-size: 30px; font-weight: 800; color: #fff;
  letter-spacing: -0.4px; margin-bottom: 12px; line-height: 1.2;
}
.pkw-v2 .pkw-about-cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.72);
  max-width: 520px; margin: 0 auto 32px;
}
.pkw-v2 .pkw-about-cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
@media (max-width: 575px) {
  .pkw-v2 .pkw-about-cta-title { font-size: 22px; }
  .pkw-v2 .pkw-about-cta-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRESS PAGE — pkw-press-*
   ═══════════════════════════════════════════════════════════════════════════ */

.pkw-v2 .pkw-press-section { padding: 64px 0; background: #fff; }
.pkw-v2 .pkw-press-section-alt { background: var(--pkw-surface); }

/* Press contact card */
.pkw-v2 .pkw-press-contact-card {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, #0d2b38 100%);
  border-radius: var(--pkw-radius-lg);
  padding: 40px 48px;
  display: flex; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.pkw-v2 .pkw-press-contact-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(60,181,75,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.pkw-v2 .pkw-press-contact-card-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(60,181,75,0.18); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--pkw-green);
  position: relative;
}
.pkw-v2 .pkw-press-contact-card-body { position: relative; flex: 1; }
.pkw-v2 .pkw-press-contact-card-title {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px;
}
.pkw-v2 .pkw-press-contact-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 20px; line-height: 1.6;
}
.pkw-v2 .pkw-press-contact-card-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.pkw-v2 .pkw-press-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.pkw-v2 .pkw-press-contact-item i { color: var(--pkw-green); font-size: 14px; }
.pkw-v2 .pkw-press-contact-item a { color: rgba(255,255,255,0.85); }
.pkw-v2 .pkw-press-contact-item a:hover { color: #fff; }
@media (max-width: 767px) {
  .pkw-v2 .pkw-press-contact-card { flex-direction: column; align-items: flex-start; padding: 28px; gap: 20px; }
}

/* Press stats row */
.pkw-v2 .pkw-press-stats-row {
  display: flex; gap: 0;
  border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg); overflow: hidden;
  margin-top: 48px;
}
.pkw-v2 .pkw-press-stat {
  flex: 1; padding: 28px 24px; text-align: center;
  border-right: 1.5px solid var(--pkw-gray-bg);
}
.pkw-v2 .pkw-press-stat:last-child { border-right: none; }
.pkw-v2 .pkw-press-stat-num {
  font-size: 32px; font-weight: 800; color: var(--pkw-deep-teal);
  letter-spacing: -0.5px; line-height: 1;
}
.pkw-v2 .pkw-press-stat-num span { color: var(--pkw-green); }
.pkw-v2 .pkw-press-stat-label {
  font-size: 12px; color: var(--pkw-mid-gray); margin-top: 6px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .pkw-v2 .pkw-press-stats-row { flex-direction: column; }
  .pkw-v2 .pkw-press-stat { border-right: none; border-bottom: 1.5px solid var(--pkw-gray-bg); }
  .pkw-v2 .pkw-press-stat:last-child { border-bottom: none; }
}

/* Featured in / coverage */
.pkw-v2 .pkw-press-coverage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.pkw-v2 .pkw-press-coverage-card {
  background: #fff; border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg); padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pkw-v2 .pkw-press-coverage-card:hover {
  border-color: var(--pkw-teal-bright); box-shadow: var(--pkw-shadow-sm);
}
.pkw-v2 .pkw-press-coverage-source {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--pkw-green); margin-bottom: 10px;
}
.pkw-v2 .pkw-press-coverage-headline {
  font-size: 15px; font-weight: 700; color: var(--pkw-deep-teal);
  line-height: 1.4; margin-bottom: 12px;
}
.pkw-v2 .pkw-press-coverage-date {
  font-size: 12px; color: var(--pkw-mid-gray);
}
@media (max-width: 767px) {
  .pkw-v2 .pkw-press-coverage-grid { grid-template-columns: 1fr; }
}

/* Press kit download */
.pkw-v2 .pkw-press-kit {
  background: var(--pkw-green-light); border: 1.5px solid #a7f3be;
  border-radius: var(--pkw-radius-lg); padding: 32px 36px;
  display: flex; align-items: center; gap: 24px; margin-top: 48px;
}
.pkw-v2 .pkw-press-kit-icon {
  font-size: 40px; color: var(--pkw-green); flex-shrink: 0;
}
.pkw-v2 .pkw-press-kit-title {
  font-size: 17px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 4px;
}
.pkw-v2 .pkw-press-kit-desc {
  font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.5;
}
@media (max-width: 575px) {
  .pkw-v2 .pkw-press-kit { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CAREERS PAGE — pkw-careers-*
   ═══════════════════════════════════════════════════════════════════════════ */

.pkw-v2 .pkw-careers-section { padding: 64px 0; background: #fff; }
.pkw-v2 .pkw-careers-section-alt { background: var(--pkw-surface); }

/* Culture pillars (why join) */
.pkw-v2 .pkw-careers-culture-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.pkw-v2 .pkw-careers-culture-card {
  background: #fff; border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg); padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.pkw-v2 .pkw-careers-culture-card:hover {
  border-color: var(--pkw-green); transform: translateY(-3px);
}
.pkw-v2 .pkw-careers-culture-icon {
  width: 48px; height: 48px; background: var(--pkw-green-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--pkw-green); font-size: 20px;
  margin-bottom: 16px;
}
.pkw-v2 .pkw-careers-culture-title {
  font-size: 15px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 8px;
}
.pkw-v2 .pkw-careers-culture-desc {
  font-size: 13px; color: var(--pkw-mid-gray); line-height: 1.65;
}
@media (max-width: 767px) {
  .pkw-v2 .pkw-careers-culture-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pkw-v2 .pkw-careers-culture-grid { grid-template-columns: 1fr; }
}

/* Open positions */
.pkw-v2 .pkw-careers-positions { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.pkw-v2 .pkw-careers-position {
  background: #fff; border: 1.5px solid var(--pkw-gray-bg);
  border-radius: var(--pkw-radius-lg); padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pkw-v2 .pkw-careers-position:hover {
  border-color: var(--pkw-green); box-shadow: var(--pkw-shadow-sm);
}
.pkw-v2 .pkw-careers-position-dept {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--pkw-green-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pkw-green); font-size: 18px;
}
.pkw-v2 .pkw-careers-position-body { flex: 1; }
.pkw-v2 .pkw-careers-position-title {
  font-size: 15px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 4px;
}
.pkw-v2 .pkw-careers-position-meta {
  font-size: 12px; color: var(--pkw-mid-gray); display: flex; gap: 16px; flex-wrap: wrap;
}
.pkw-v2 .pkw-careers-position-meta span { display: flex; align-items: center; gap: 4px; }
.pkw-v2 .pkw-careers-position-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--pkw-green-light); color: var(--pkw-green);
  border-radius: 999px; font-size: 11px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
@media (max-width: 575px) {
  .pkw-v2 .pkw-careers-position { flex-wrap: wrap; }
  .pkw-v2 .pkw-careers-position-tag { align-self: flex-start; }
}

/* Benefits grid */
.pkw-v2 .pkw-careers-benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px;
}
.pkw-v2 .pkw-careers-benefit {
  text-align: center; padding: 24px 16px;
  background: #fff; border: 1.5px solid var(--pkw-gray-bg); border-radius: var(--pkw-radius-lg);
}
.pkw-v2 .pkw-careers-benefit-icon {
  font-size: 28px; color: var(--pkw-teal); margin-bottom: 12px;
}
.pkw-v2 .pkw-careers-benefit-title {
  font-size: 13px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 4px;
}
.pkw-v2 .pkw-careers-benefit-desc {
  font-size: 12px; color: var(--pkw-mid-gray); line-height: 1.5;
}
@media (max-width: 767px) {
  .pkw-v2 .pkw-careers-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Careers CTA */
.pkw-v2 .pkw-careers-cta {
  background: linear-gradient(135deg, var(--pkw-teal) 0%, #0d2b38 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.pkw-v2 .pkw-careers-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(60,181,75,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.pkw-v2 .pkw-careers-cta .container { position: relative; }
.pkw-v2 .pkw-careers-cta-title {
  font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.3px;
}
.pkw-v2 .pkw-careers-cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 28px;
}
.pkw-v2 .pkw-careers-cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   PROVINCE LANDING PAGE  -- pkw-plp-*   (v2 redesign)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* -- Hero -- base (gradient mode, default when no image uploaded) ---------- */
.pkw-v2 .pkw-plp-hero {
  min-height: 440px;
  background: linear-gradient(135deg, #0d2b38 0%, #1B4353 45%, #1a5c45 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
/* Radial glows shown in gradient mode only */
.pkw-v2 .pkw-plp-hero:not(.pkw-plp-hero--img)::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(60,181,75,0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(81,186,192,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(27,67,83,0.4) 0%, transparent 70%);
  pointer-events: none;
}
/* Dot pattern shown in gradient mode only */
.pkw-v2 .pkw-plp-hero:not(.pkw-plp-hero--img)::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* -- Hero IMAGE mode (.pkw-plp-hero--img) ---------------------------------- */
/* When a province banner photo is uploaded, this class is added by Blade.
   The gradient background is removed; the full-bleed photo takes over.
   onerror on the <img> strips the class back to gradient gracefully.        */
.pkw-v2 .pkw-plp-hero--img {
  background: #0d2b38; /* dark base while image loads */
  min-height: 500px;   /* slightly taller when showing a real photo */
}

/* Full-bleed background layer */
.pkw-v2 .pkw-plp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pkw-v2 .pkw-plp-hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%; /* keep sky/mountains in view */
  display: block;
}
/* Dark overlay — bottom-heavy so stats bar remains readable */
.pkw-v2 .pkw-plp-hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,20,28,0.45)  0%,
    rgba(8,20,28,0.30)  30%,
    rgba(8,20,28,0.55)  65%,
    rgba(8,20,28,0.82) 100%
  );
}
/* Green tint glow at bottom-left — keeps brand feel on photo too */
.pkw-v2 .pkw-plp-hero--img::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 0% 100%, rgba(60,181,75,0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* FUTURE SLIDER: when banner_mode = 'slider', wrap multiple .pkw-plp-hero-bg
   divs in a carousel. Each slide keeps the same .pkw-plp-hero-bg-img and
   .pkw-plp-hero-img-overlay structure. The .pkw-plp-hero-inner and
   .pkw-plp-stats-bar layers sit above at z-index: 2 and never move. */
.pkw-v2 .pkw-plp-hero-inner {
  position: relative;
  z-index: 2;   /* above .pkw-plp-hero-bg (z:0) and ::before glow (z:1) */
  padding: 52px 0 0;
}
.pkw-v2 .pkw-plp-breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 24px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.pkw-v2 .pkw-plp-breadcrumb a {
  color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
}
.pkw-v2 .pkw-plp-breadcrumb a:hover { color: #fff; }
.pkw-v2 .pkw-plp-breadcrumb span { color: rgba(255,255,255,0.3); }
.pkw-v2 .pkw-plp-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(60,181,75,0.18); border: 1px solid rgba(60,181,75,0.45);
  color: #6ee87c; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}
.pkw-v2 .pkw-plp-hero-title {
  font-size: 54px; font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 14px;
  font-family: 'Roboto', sans-serif;
}
.pkw-v2 .pkw-plp-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.68);
  max-width: 520px; line-height: 1.65; margin-bottom: 0;
}

/* -- Glassmorphism stats bar (bottom of hero) ------------------------------ */
.pkw-v2 .pkw-plp-stats-bar {
  position: relative; z-index: 2;
  margin-top: 40px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
}
.pkw-v2 .pkw-plp-stats-row {
  display: flex; align-items: center;
}
.pkw-v2 .pkw-plp-stat-item {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 4px 20px;
}
.pkw-v2 .pkw-plp-stat-item:last-child { border-right: none; }
.pkw-v2 .pkw-plp-stat-num {
  font-size: 30px; font-weight: 900; color: #fff;
  display: block; line-height: 1; letter-spacing: -0.5px;
}
.pkw-v2 .pkw-plp-stat-lbl {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-top: 5px; display: block;
}

/* -- City discovery section ------------------------------------------------ */
.pkw-v2 .pkw-plp-cities {
  background: #f2f6f8;
  padding: 60px 0 80px;
}
.pkw-v2 .pkw-plp-section-hd {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.pkw-v2 .pkw-plp-section-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--pkw-green); margin-bottom: 6px;
}
.pkw-v2 .pkw-plp-section-title {
  font-size: 24px; font-weight: 800; color: var(--pkw-deep-teal);
  font-family: 'Roboto', sans-serif; letter-spacing: -0.3px; margin: 0;
}
.pkw-v2 .pkw-plp-section-count {
  font-size: 13px; color: var(--pkw-mid-gray); font-weight: 500;
  white-space: nowrap; padding-bottom: 4px;
}

/* -- Search bar ------------------------------------------------------------ */
.pkw-v2 .pkw-plp-search-wrap {
  margin-bottom: 32px; position: relative;
}
.pkw-v2 .pkw-plp-search-icon {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: #a8b8c0; font-size: 15px; pointer-events: none;
  transition: color 0.2s;
}
.pkw-v2 .pkw-plp-search-input {
  width: 100%;
  padding: 15px 52px 15px 50px;
  border: 2px solid #dce8ed;
  border-radius: 14px;
  font-size: 15px; font-family: 'Roboto', sans-serif;
  color: var(--pkw-charcoal);
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,67,83,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.pkw-v2 .pkw-plp-search-input::placeholder { color: #a8b8c0; }
.pkw-v2 .pkw-plp-search-input:focus {
  border-color: var(--pkw-green);
  box-shadow: 0 0 0 4px rgba(60,181,75,0.1);
}
.pkw-v2 .pkw-plp-search-wrap:focus-within .pkw-plp-search-icon { color: var(--pkw-green); }
.pkw-v2 .pkw-plp-search-clear {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  background: #e8eff2; border: none; border-radius: 50%;
  color: var(--pkw-mid-gray); font-size: 11px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.pkw-v2 .pkw-plp-search-clear:hover { background: var(--pkw-teal); color: #fff; }
.pkw-v2 .pkw-plp-search-wrap.has-value .pkw-plp-search-clear { display: flex; }
.pkw-v2 .pkw-plp-search-hint {
  font-size: 12px; color: var(--pkw-mid-gray); margin-top: 8px; padding-left: 4px;
}

/* -- City grid ------------------------------------------------------------- */
.pkw-v2 .pkw-plp-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pkw-v2 .pkw-plp-city-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(27,67,83,0.1);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  background: #1B4353;
}
.pkw-v2 .pkw-plp-city-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 44px rgba(27,67,83,0.22);
  text-decoration: none;
}
.pkw-v2 .pkw-plp-city-card.pkw-plp-hidden { display: none; }
.pkw-v2 .pkw-plp-city-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: absolute; inset: 0;
}
.pkw-v2 .pkw-plp-city-card:hover .pkw-plp-city-img { transform: scale(1.07); }
.pkw-v2 .pkw-plp-city-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: absolute; inset: 0;
}
.pkw-v2 .pkw-plp-city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(13,43,56,0.88) 100%
  );
}
/* Hotel count badge -- top right */
.pkw-v2 .pkw-plp-city-count {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 4px 10px;
  letter-spacing: 0.3px;
}
.pkw-v2 .pkw-plp-city-count.is-live {
  background: rgba(60,181,75,0.85);
  border-color: rgba(60,181,75,1);
}
/* Card body text */
.pkw-v2 .pkw-plp-city-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; z-index: 2;
}
.pkw-v2 .pkw-plp-city-name {
  font-size: 17px; font-weight: 800; color: #fff;
  display: block; line-height: 1.2; margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.pkw-v2 .pkw-plp-city-sub {
  font-size: 11px; color: rgba(255,255,255,0.6); display: block;
}

/* -- Expand / collapse row ------------------------------------------------- */
.pkw-v2 .pkw-plp-expand-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
}
.pkw-v2 .pkw-plp-expand-row::before,
.pkw-v2 .pkw-plp-expand-row::after {
  content: ''; flex: 1; height: 1px; background: #cddde3;
}
.pkw-v2 .pkw-plp-expand-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--pkw-teal);
  cursor: pointer; background: #fff; border: 1.5px solid #cddde3;
  border-radius: 999px; padding: 10px 24px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Roboto', sans-serif; white-space: nowrap;
}
.pkw-v2 .pkw-plp-expand-btn:hover {
  background: var(--pkw-teal); color: #fff; border-color: var(--pkw-teal);
}

/* -- No-results ------------------------------------------------------------ */
.pkw-v2 .pkw-plp-no-results {
  display: none;
  text-align: center; padding: 56px 24px;
  background: #fff; border-radius: 16px;
  border: 1.5px dashed #cddde3;
}
.pkw-v2 .pkw-plp-no-results-icon { font-size: 44px; margin-bottom: 12px; }
.pkw-v2 .pkw-plp-no-results-msg {
  font-size: 16px; font-weight: 700; color: var(--pkw-deep-teal); margin-bottom: 6px;
}
.pkw-v2 .pkw-plp-no-results-sub { font-size: 13px; color: var(--pkw-mid-gray); }

/* -- Empty state (zero cities) --------------------------------------------- */
.pkw-v2 .pkw-plp-empty {
  text-align: center; padding: 72px 24px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 2px 16px rgba(27,67,83,0.06);
}
.pkw-v2 .pkw-plp-empty-icon { font-size: 60px; margin-bottom: 20px; }
.pkw-v2 .pkw-plp-empty-title {
  font-size: 22px; font-weight: 800; color: var(--pkw-deep-teal); margin-bottom: 10px;
}
.pkw-v2 .pkw-plp-empty-sub {
  font-size: 15px; color: var(--pkw-mid-gray); margin-bottom: 28px; line-height: 1.6;
}

/* -- Bottom CTA strip ------------------------------------------------------ */
.pkw-v2 .pkw-plp-cta {
  background: linear-gradient(135deg, #0d2b38 0%, #1B4353 50%, #1a5c45 100%);
  padding: 64px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.pkw-v2 .pkw-plp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(60,181,75,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.pkw-v2 .pkw-plp-cta .container { position: relative; }
.pkw-v2 .pkw-plp-cta-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pkw-green); margin-bottom: 12px;
}
.pkw-v2 .pkw-plp-cta-title {
  font-size: 30px; font-weight: 800; color: #fff;
  margin-bottom: 10px; letter-spacing: -0.4px; line-height: 1.2;
}
.pkw-v2 .pkw-plp-cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.62);
  margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.pkw-v2 .pkw-plp-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* -- Province gradient palette (8 variants) -------------------------------- */
.pkw-v2 .pkw-plp-grad-0 { background: linear-gradient(160deg, #0f2a35 0%, #216E85 100%); }
.pkw-v2 .pkw-plp-grad-1 { background: linear-gradient(160deg, #1B4353 0%, #3a8f96 100%); }
.pkw-v2 .pkw-plp-grad-2 { background: linear-gradient(160deg, #0d3341 0%, #2a6b6e 100%); }
.pkw-v2 .pkw-plp-grad-3 { background: linear-gradient(160deg, #143829 0%, #1e6b4a 100%); }
.pkw-v2 .pkw-plp-grad-4 { background: linear-gradient(160deg, #1a3d5c 0%, #2d6fa8 100%); }
.pkw-v2 .pkw-plp-grad-5 { background: linear-gradient(160deg, #2c1b47 0%, #6c3da6 100%); }
.pkw-v2 .pkw-plp-grad-6 { background: linear-gradient(160deg, #3d1f0f 0%, #a0522d 100%); }
.pkw-v2 .pkw-plp-grad-7 { background: linear-gradient(160deg, #1f3a1a 0%, #4a7c3f 100%); }

/* -- Responsive ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .pkw-v2 .pkw-plp-city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pkw-v2 .pkw-plp-hero-title { font-size: 36px; }
  .pkw-v2 .pkw-plp-city-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pkw-v2 .pkw-plp-stats-row { flex-wrap: wrap; }
  .pkw-v2 .pkw-plp-stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pkw-v2 .pkw-plp-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .pkw-v2 .pkw-plp-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .pkw-v2 .pkw-plp-section-hd { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pkw-v2 .pkw-plp-hero-title { font-size: 28px; letter-spacing: -0.5px; }
  .pkw-v2 .pkw-plp-hero-sub { font-size: 14px; }
  .pkw-v2 .pkw-plp-city-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pkw-v2 .pkw-plp-cities { padding: 40px 0 56px; }
  .pkw-v2 .pkw-plp-cta-title { font-size: 22px; }
  .pkw-v2 .pkw-plp-cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================================================
   P9-T2: CITY LANDING PAGE  —  pkw-city-*
   /v2/hotels-in-{city}
   Design: Pakistani brand WOW factor — immersive, modern, conversion-focused
   ============================================================================ */

/* ── City Hero — pure visual strip (text lives below in pkw-city-page-header) ── */
.pkw-v2 .pkw-city-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, #071921 0%, #0d3347 40%, #1B4353 70%, #1a4535 100%);
}
.pkw-v2 .pkw-city-hero--img {
  min-height: 300px;
}

/* ── City Page Header — breadcrumb + badge + H1 + meta count ── */
.pkw-v2 .pkw-city-page-header {
  background: #fff;
  padding: 28px 0 24px;
  border-bottom: 1px solid #e8f0f2;
}

/* Breadcrumb inside page header */
.pkw-v2 .pkw-city-page-breadcrumb { margin-bottom: 14px; }
.pkw-v2 .pkw-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.pkw-v2 .pkw-breadcrumb-link {
  color: var(--pkw-teal, #1b6a7b);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.pkw-v2 .pkw-breadcrumb-link:hover { color: var(--pkw-green, #3cb54b); text-decoration: underline; }
.pkw-v2 .pkw-breadcrumb-sep { color: #b8cdd2; font-size: 12px; margin: 0 2px; }
.pkw-v2 .pkw-breadcrumb-item--current { color: #6b8a92; font-weight: 400; }

/* Province badge */
.pkw-v2 .pkw-city-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #b9e9c2;
  color: #2a7a3b;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.pkw-v2 .pkw-city-page-badge i { font-size: 10px; color: #3cb54b; }

/* H1 */
.pkw-v2 .pkw-city-page-h1 {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: var(--pkw-charcoal, #1b4353);
  line-height: 1.15;
  margin: 0 0 8px;
  font-family: 'Roboto', sans-serif;
}

/* Meta: hotel count + trust signals */
.pkw-v2 .pkw-city-page-meta {
  font-size: 14px;
  color: #6b8a92;
  font-weight: 400;
  margin: 0;
}
.pkw-v2 .pkw-city-page-count {
  font-weight: 700;
  color: var(--pkw-teal, #1b6a7b);
}

/* ── Legacy breadcrumb (kept for other pages) ── */
.pkw-v2 .pkw-city-breadcrumb {
  background: #f5feff;
  border-bottom: 1px solid #e2eff1;
  padding: 10px 0;
}

/* Animated geometric overlay — unique Pakistani texture */
.pkw-v2 .pkw-city-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(60,181,75,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(27,67,83,0.6) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric diamond pattern — Pakistani craft motif */
.pkw-v2 .pkw-city-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Full-bleed background image */
.pkw-v2 .pkw-city-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.pkw-v2 .pkw-city-hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.pkw-v2 .pkw-city-hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,25,33,0.35) 0%,
    rgba(7,25,33,0.55) 40%,
    rgba(7,25,33,0.82) 100%
  );
}

/* Hero inner content */
.pkw-v2 .pkw-city-hero-inner {
  position: relative; z-index: 3;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.pkw-v2 .pkw-city-hero-inner .container {
  padding-bottom: 96px; /* clear the floating search widget overlap */
}

/* Breadcrumb */
.pkw-v2 .pkw-city-breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 20px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.pkw-v2 .pkw-city-breadcrumb a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s;
}
.pkw-v2 .pkw-city-breadcrumb a:hover { color: var(--pkw-green); }

/* Province badge */
.pkw-v2 .pkw-city-province-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(60,181,75,0.18);
  border: 1px solid rgba(60,181,75,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: #6de882;
  margin-bottom: 16px;
}

/* City name — massive impact */
.pkw-v2 .pkw-city-hero-title {
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.pkw-v2 .pkw-city-hero-title span {
  color: var(--pkw-green);
}

/* Sub-line */
.pkw-v2 .pkw-city-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0;
  max-width: 560px;
  line-height: 1.55;
}

/* ── Floating Stats Bar ── */
.pkw-v2 .pkw-city-stats {
  position: relative; z-index: 4;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  margin-top: 28px;
}
.pkw-v2 .pkw-city-stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.pkw-v2 .pkw-city-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  min-width: 110px;
  flex: 1;
  max-width: 160px;
}
.pkw-v2 .pkw-city-stat-item:last-child { border-right: none; }
.pkw-v2 .pkw-city-stat-num {
  font-size: 22px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 3px;
  letter-spacing: -0.5px;
}
.pkw-v2 .pkw-city-stat-lbl {
  font-size: 9px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ── Embedded Search Widget ── */
.pkw-v2 .pkw-city-search-section {
  background: #fff;
  box-shadow: 0 4px 40px rgba(27,67,83,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(27,67,83,0.08);
}
.pkw-v2 .pkw-city-search-inner {
  padding: 16px 0;
}
.pkw-v2 .pkw-city-search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f5feff;
  border: 1.5px solid #c8e8ef;
  border-radius: 14px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pkw-v2 .pkw-city-search-bar:focus-within {
  border-color: var(--pkw-teal);
  box-shadow: 0 0 0 3px rgba(27,67,83,0.1);
}

/* Search field groups */
.pkw-v2 .pkw-csb-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-right: 1.5px solid #c8e8ef;
  flex: 1;
  cursor: pointer;
  min-width: 0;
  position: relative;
}
.pkw-v2 .pkw-csb-field:last-of-type { border-right: none; }
.pkw-v2 .pkw-csb-field-icon {
  color: var(--pkw-teal);
  font-size: 15px;
  flex-shrink: 0;
}
.pkw-v2 .pkw-csb-field-body { display: flex; flex-direction: column; min-width: 0; }
.pkw-v2 .pkw-csb-field-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--pkw-mid-gray);
  line-height: 1; margin-bottom: 3px;
}
.pkw-v2 .pkw-csb-field-val {
  font-size: 13px; font-weight: 600; color: var(--pkw-deep-teal);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pkw-v2 .pkw-csb-field-val.is-placeholder {
  color: var(--pkw-mid-gray);
  font-weight: 400;
}
.pkw-v2 .pkw-csb-field-val.is-locked {
  color: var(--pkw-deep-teal);
  font-weight: 700;
}

/* Area chip with clear ✕ */
.pkw-v2 .pkw-csb-area-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(27,67,83,0.08);
  border-radius: 20px;
  padding: 2px 10px 2px 10px;
  font-size: 12px; font-weight: 600; color: var(--pkw-deep-teal);
}
.pkw-v2 .pkw-csb-area-clear {
  background: none; border: none; cursor: pointer;
  color: var(--pkw-mid-gray); padding: 0; line-height: 1;
  font-size: 12px;
  transition: color 0.15s;
}
.pkw-v2 .pkw-csb-area-clear:hover { color: var(--pkw-teal); }

/* Search button */
.pkw-v2 .pkw-csb-btn {
  background: var(--pkw-green);
  color: #fff;
  border: none;
  padding: 0 24px;
  height: 100%;
  min-height: 56px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0 12px 12px 0;
}
.pkw-v2 .pkw-csb-btn:hover { background: #2da33e; }
.pkw-v2 .pkw-csb-btn:active { transform: scale(0.98); }

/* Area dropdown panel */
.pkw-v2 .pkw-csb-area-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff;
  border: 1px solid #dde9ee;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(27,67,83,0.15);
  padding: 12px 0;
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 200;
  display: none;
}
.pkw-v2 .pkw-csb-area-panel.is-open { display: block; }
.pkw-v2 .pkw-csb-area-item {
  padding: 10px 18px;
  font-size: 13px; color: #2a4a56;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.pkw-v2 .pkw-csb-area-item:hover { background: #f5feff; color: var(--pkw-teal); }
.pkw-v2 .pkw-csb-area-item.is-active {
  color: var(--pkw-green); font-weight: 600;
}
.pkw-v2 .pkw-csb-area-item.is-all {
  font-weight: 700; border-bottom: 1px solid #eef5f8; margin-bottom: 4px; padding-bottom: 14px;
}

/* Date picker panel */
.pkw-v2 .pkw-csb-date-panel {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: #fff;
  border: 1px solid #dde9ee;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(27,67,83,0.15);
  padding: 16px;
  z-index: 200;
  display: none;
}
.pkw-v2 .pkw-csb-date-panel.is-open { display: block; }

/* Guest panel */
.pkw-v2 .pkw-csb-guest-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff;
  border: 1px solid #dde9ee;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(27,67,83,0.15);
  padding: 20px;
  min-width: 240px;
  z-index: 200;
  display: none;
}
.pkw-v2 .pkw-csb-guest-panel.is-open { display: block; }
.pkw-v2 .pkw-csb-guest-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.pkw-v2 .pkw-csb-guest-row:last-child { margin-bottom: 0; }
.pkw-v2 .pkw-csb-guest-label { font-size: 13px; font-weight: 600; color: var(--pkw-deep-teal); }
.pkw-v2 .pkw-csb-guest-sub { font-size: 11px; color: var(--pkw-mid-gray); }
.pkw-v2 .pkw-csb-counter {
  display: flex; align-items: center; gap: 12px;
}
.pkw-v2 .pkw-csb-counter-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--pkw-teal);
  background: none; color: var(--pkw-teal);
  font-size: 16px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.pkw-v2 .pkw-csb-counter-btn:hover { background: var(--pkw-teal); color: #fff; }
.pkw-v2 .pkw-csb-counter-val {
  font-size: 16px; font-weight: 700; color: var(--pkw-deep-teal); min-width: 20px; text-align: center;
}

/* ── Price Context Bar ── */
.pkw-v2 .pkw-city-price-bar {
  background: var(--pkw-charcoal, #1b4353);
  padding: 0;
  border-top: 1px solid #0d2a36;
}
.pkw-v2 .pkw-city-price-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pkw-v2 .pkw-city-price-bar-inner::-webkit-scrollbar { display: none; }

.pkw-v2 .pkw-cpb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pkw-v2 .pkw-cpb-icon {
  color: var(--pkw-green, #3cb54b);
  font-size: 13px;
  flex-shrink: 0;
}
.pkw-v2 .pkw-cpb-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.pkw-v2 .pkw-cpb-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.pkw-v2 .pkw-cpb-unit {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-left: 1px;
}
.pkw-v2 .pkw-cpb-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .pkw-v2 .pkw-cpb-item { padding: 12px 16px; }
}

/* ── Featured Hotels Section ── */
.pkw-v2 .pkw-city-featured {
  background: #f7fffe;
  padding: 56px 0 60px;
  border-top: 1px solid #e8f0f2;
}

/* "See all" link header row */
.pkw-v2 .pkw-city-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pkw-teal, #1b6a7b);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.pkw-v2 .pkw-city-see-all:hover { color: var(--pkw-green, #3cb54b); }
.pkw-v2 .pkw-city-see-all i { font-size: 12px; }

/* Card grid — 3 cols desktop, 2 tablet, 1 mobile */
.pkw-v2 .pkw-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

/* Individual hotel card */
.pkw-v2 .pkw-fh-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2eff1;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.pkw-v2 .pkw-fh-card:hover {
  box-shadow: 0 8px 32px rgba(27,67,83,0.13);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}

/* Photo */
.pkw-v2 .pkw-fh-img-wrap {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, #e0eff3 0%, #c8dde3 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.pkw-v2 .pkw-fh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.pkw-v2 .pkw-fh-card:hover .pkw-fh-img { transform: scale(1.05); }
.pkw-v2 .pkw-fh-img-wrap.pkw-fh-img-err::after {
  content: '\f594'; /* fa-image */
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #9ab0b8;
}

/* Badges on image */
.pkw-v2 .pkw-fh-verified-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(60,181,75,0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: .2px;
}
.pkw-v2 .pkw-fh-star-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(7,25,33,0.65);
  color: #f5c518;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* Card body */
.pkw-v2 .pkw-fh-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
}
.pkw-v2 .pkw-fh-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pkw-charcoal, #1b4353);
  margin: 0 0 5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkw-v2 .pkw-fh-address {
  font-size: 12px;
  color: #7a9da7;
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.4;
}
.pkw-v2 .pkw-fh-address i { margin-top: 2px; font-size: 10px; flex-shrink: 0; }

/* Footer: rating + price */
.pkw-v2 .pkw-fh-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eef3f4;
}
.pkw-v2 .pkw-fh-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.pkw-v2 .pkw-fh-rating-score {
  background: var(--pkw-teal, #1b6a7b);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  line-height: 1.4;
}
.pkw-v2 .pkw-fh-rating-label { font-size: 12px; font-weight: 600; color: #1b4353; }
.pkw-v2 .pkw-fh-review-cnt   { font-size: 11px; color: #9ab0b8; }

/* Price */
.pkw-v2 .pkw-fh-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-align: right;
  flex-shrink: 0;
}
.pkw-v2 .pkw-fh-price-from { font-size: 10px; color: #9ab0b8; }
.pkw-v2 .pkw-fh-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--pkw-green, #3cb54b);
  line-height: 1;
}
.pkw-v2 .pkw-fh-price--cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--pkw-teal, #1b6a7b);
}
.pkw-v2 .pkw-fh-price-per { font-size: 10px; color: #9ab0b8; }

/* Responsive */
@media (max-width: 900px) {
  .pkw-v2 .pkw-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pkw-v2 .pkw-featured-grid { grid-template-columns: 1fr; }
  .pkw-v2 .pkw-fh-img-wrap   { height: 220px; }
}

/* ── Top Landmarks / Things To Do ── */
.pkw-v2 .pkw-city-landmarks {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid #e8f0f2;
}
.pkw-v2 .pkw-landmarks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.pkw-v2 .pkw-lm-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f7fffe;
  border: 1.5px solid #e2eff1;
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow .2s, border-color .2s;
}
.pkw-v2 .pkw-lm-card:hover {
  box-shadow: 0 4px 20px rgba(27,67,83,0.09);
  border-color: var(--pkw-teal, #1b6a7b);
}
.pkw-v2 .pkw-lm-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #e2eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pkw-v2 .pkw-lm-icon { font-size: 22px; line-height: 1; }
.pkw-v2 .pkw-lm-body { flex: 1; min-width: 0; }
.pkw-v2 .pkw-lm-top { margin-bottom: 5px; }
.pkw-v2 .pkw-lm-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--pkw-teal, #1b6a7b);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
}
.pkw-v2 .pkw-lm-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--pkw-charcoal, #1b4353);
  margin: 0;
  line-height: 1.3;
}
.pkw-v2 .pkw-lm-desc {
  font-size: 12px;
  color: #6b8a92;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .pkw-v2 .pkw-landmarks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pkw-v2 .pkw-landmarks-grid { grid-template-columns: 1fr; }
}

/* ── Best Time to Visit ── */
.pkw-v2 .pkw-city-besttime {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid #e8f0f2;
}
.pkw-v2 .pkw-besttime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.pkw-v2 .pkw-besttime-card {
  border: 1.5px solid;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s;
}
.pkw-v2 .pkw-besttime-card:hover {
  box-shadow: 0 4px 20px rgba(27,67,83,0.1);
}
.pkw-v2 .pkw-bt-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkw-v2 .pkw-bt-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.pkw-v2 .pkw-bt-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.pkw-v2 .pkw-bt-season {
  font-size: 15px;
  font-weight: 700;
  color: var(--pkw-charcoal, #1b4353);
  line-height: 1.2;
}
.pkw-v2 .pkw-bt-months {
  font-size: 11px;
  font-weight: 500;
  color: #7a9da7;
}
.pkw-v2 .pkw-bt-tag {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .3px;
  flex-shrink: 0;
  align-self: flex-start;
}
.pkw-v2 .pkw-bt-tip {
  font-size: 13px;
  color: #4a6b76;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .pkw-v2 .pkw-besttime-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pkw-v2 .pkw-besttime-grid { grid-template-columns: 1fr; }
}

/* ── City FAQ Section ── */
.pkw-v2 .pkw-city-faq {
  background: #f7fffe;
  padding: 60px 0;
  border-top: 1px solid #e8f0f2;
}
.pkw-v2 .pkw-city-faq-wrap {
  max-width: 760px;
  margin-top: 28px;
}

/* ── City Story Section ── */
.pkw-v2 .pkw-city-story {
  background: #fff;
  padding: 64px 0 56px;
}
.pkw-v2 .pkw-city-story-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.pkw-v2 .pkw-city-story-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pkw-green);
  margin-bottom: 12px;
}
.pkw-v2 .pkw-city-story-title {
  font-size: 30px; font-weight: 900; color: var(--pkw-deep-teal);
  line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px;
}
.pkw-v2 .pkw-city-story-body {
  font-size: 15px; color: #4a6470; line-height: 1.7; margin-bottom: 0;
}

/* Quick facts card */
.pkw-v2 .pkw-city-facts-card {
  background: #f5feff;
  border: 1px solid #d0e8ef;
  border-radius: 18px;
  padding: 28px 24px;
}
.pkw-v2 .pkw-city-facts-title {
  font-size: 13px; font-weight: 800; color: var(--pkw-deep-teal);
  margin-bottom: 18px; letter-spacing: 0.3px;
}
.pkw-v2 .pkw-city-fact-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dceef4;
}
.pkw-v2 .pkw-city-fact-row:last-child {
  margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.pkw-v2 .pkw-city-fact-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(27,67,83,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pkw-v2 .pkw-city-fact-body { flex: 1; min-width: 0; }
.pkw-v2 .pkw-city-fact-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--pkw-mid-gray);
  margin-bottom: 2px;
}
.pkw-v2 .pkw-city-fact-val {
  font-size: 14px; font-weight: 700; color: var(--pkw-deep-teal); line-height: 1.3;
}

/* ── Top Hotels Grid ── */
.pkw-v2 .pkw-city-hotels {
  background: var(--pkw-surface);
  padding: 64px 0;
}
.pkw-v2 .pkw-city-section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.pkw-v2 .pkw-city-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pkw-green);
  margin-bottom: 6px; display: block;
}
.pkw-v2 .pkw-city-section-title {
  font-size: 26px; font-weight: 900; color: var(--pkw-deep-teal);
  letter-spacing: -0.3px; line-height: 1.2; margin-bottom: 0;
}
.pkw-v2 .pkw-city-section-link {
  font-size: 13px; font-weight: 700; color: var(--pkw-teal);
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.pkw-v2 .pkw-city-section-link:hover { color: var(--pkw-green); }

/* Hotel card grid */
.pkw-v2 .pkw-city-hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pkw-v2 .pkw-city-hotel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(27,67,83,0.07);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  border: 1px solid rgba(27,67,83,0.06);
}
.pkw-v2 .pkw-city-hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,67,83,0.16);
}

/* Hotel image */
.pkw-v2 .pkw-city-hotel-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b38, #1B4353);
}
.pkw-v2 .pkw-city-hotel-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pkw-v2 .pkw-city-hotel-card:hover .pkw-city-hotel-img { transform: scale(1.05); }
.pkw-v2 .pkw-city-hotel-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; opacity: 0.3;
}

/* Verified badge */
.pkw-v2 .pkw-city-hotel-verified {
  position: absolute; top: 10px; left: 10px;
  background: var(--pkw-green);
  color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px;
}
/* Star rating badge */
.pkw-v2 .pkw-city-hotel-stars {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #FFD700; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 5px;
  letter-spacing: 1px;
}

/* Hotel card body */
.pkw-v2 .pkw-city-hotel-body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; flex: 1;
}
.pkw-v2 .pkw-city-hotel-name {
  font-size: 14px; font-weight: 800; color: var(--pkw-deep-teal);
  line-height: 1.3; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.pkw-v2 .pkw-city-hotel-addr {
  font-size: 11px; color: var(--pkw-mid-gray);
  margin-bottom: 10px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Rating pill */
.pkw-v2 .pkw-city-hotel-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
}
.pkw-v2 .pkw-city-hotel-score {
  background: var(--pkw-teal);
  color: #fff; font-size: 12px; font-weight: 800;
  padding: 2px 8px; border-radius: 6px;
}
.pkw-v2 .pkw-city-hotel-reviews {
  font-size: 11px; color: var(--pkw-mid-gray);
}

/* Price row */
.pkw-v2 .pkw-city-hotel-price-row {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #eef5f8;
}
.pkw-v2 .pkw-city-hotel-from {
  font-size: 9px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--pkw-mid-gray);
}
.pkw-v2 .pkw-city-hotel-price {
  font-size: 18px; font-weight: 900; color: var(--pkw-green);
  line-height: 1;
}
.pkw-v2 .pkw-city-hotel-price-sub {
  font-size: 10px; color: var(--pkw-mid-gray); font-weight: 400;
}

/* ── Popular Areas Section ── */
.pkw-v2 .pkw-city-areas {
  background: #fff;
  padding: 64px 0;
}
.pkw-v2 .pkw-city-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.pkw-v2 .pkw-city-area-pill {
  display: flex; align-items: center; gap: 10px;
  background: #f5feff;
  border: 1.5px solid #d0e8ef;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--pkw-deep-teal);
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.pkw-v2 .pkw-city-area-pill:hover {
  background: var(--pkw-teal); color: #fff;
  border-color: var(--pkw-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,67,83,0.18);
}
.pkw-v2 .pkw-city-area-pill-icon {
  font-size: 18px; flex-shrink: 0;
}

/* ── Nearby Cities ── */
.pkw-v2 .pkw-city-nearby {
  background: var(--pkw-surface);
  padding: 64px 0;
}
.pkw-v2 .pkw-city-nearby-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.pkw-v2 .pkw-city-nearby-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  background: linear-gradient(160deg, #0d2b38, #1B4353);
  box-shadow: 0 2px 10px rgba(27,67,83,0.1);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.pkw-v2 .pkw-city-nearby-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(27,67,83,0.2);
}
.pkw-v2 .pkw-city-nearby-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pkw-v2 .pkw-city-nearby-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,25,33,0.85) 0%, rgba(7,25,33,0.1) 60%);
}
.pkw-v2 .pkw-city-nearby-body {
  position: relative; z-index: 1;
  padding: 10px 12px;
}
.pkw-v2 .pkw-city-nearby-name {
  font-size: 13px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 2px;
}
.pkw-v2 .pkw-city-nearby-count {
  font-size: 10px; color: rgba(255,255,255,0.6);
}

/* Nearby gradient placeholder */
.pkw-v2 .pkw-city-nearby-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; opacity: 0.25;
}

/* ── Bottom CTA ── */
.pkw-v2 .pkw-city-cta {
  background: linear-gradient(135deg, #071921 0%, #0d3347 50%, #0e2817 100%);
  padding: 72px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.pkw-v2 .pkw-city-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(60,181,75,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(27,67,83,0.5) 0%, transparent 55%);
  pointer-events: none;
}
/* Diagonal band accent */
.pkw-v2 .pkw-city-cta::after {
  content: '';
  position: absolute; top: -60px; left: -10%;
  width: 120%; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(60,181,75,0.4), transparent);
  transform: rotate(-1.5deg);
}
.pkw-v2 .pkw-city-cta .container { position: relative; z-index: 1; }
.pkw-v2 .pkw-city-cta-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pkw-green); margin-bottom: 14px;
}
.pkw-v2 .pkw-city-cta-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  color: #fff; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 14px;
}
.pkw-v2 .pkw-city-cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-bottom: 36px; max-width: 500px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
.pkw-v2 .pkw-city-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ── Trust Strip ── */
.pkw-v2 .pkw-city-trust {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.pkw-v2 .pkw-city-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.pkw-v2 .pkw-city-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45);
}

/* ============================================================================
   P9-T2 — CITY PAGE SEARCH WIDGET OVERRIDES
   Locked destination + Area picker field
   ============================================================================ */

/* ── Locked destination field (city is pre-set, not editable) ── */
.pkw-v2 .pkw-sf-field--locked {
  cursor: default;
  background: rgba(27,67,83,0.03);
}
.pkw-v2 .pkw-sf-field--locked:hover {
  background: rgba(27,67,83,0.03); /* no hover change */
}
.pkw-v2 .pkw-sf-field--locked .pkw-dest-input {
  cursor: default;
  pointer-events: none;
  font-weight: 600;
  color: var(--pkw-charcoal);
}
.pkw-v2 .pkw-sf-field--locked .pkw-autocomplete-dropdown {
  display: none !important;
}
/* Lock icon replacing the map-pin so user understands it's fixed */
.pkw-v2 .pkw-sf-field--locked .pkw-sf-icon i {
  color: var(--pkw-green);
}

/* ── Area field — takes full left width (replaces destination on city page) ── */
.pkw-v2 .pkw-city-area-field {
  position: relative;
  flex: 1;           /* grows to fill available space, just like the home destination field */
  min-width: 0;      /* prevent flex overflow */
  cursor: pointer;
  user-select: none;
  border-radius: 18px 0 0 18px; /* leftmost visible field gets left corners */
}
/* The hidden city inputs sit before it in DOM — they're display:none so no flex impact,
   but the :first-child rule won't match area-field. Override explicitly: */
.pkw-v2 .pkw-search-row .pkw-city-area-field {
  border-radius: 18px 0 0 18px;
}
.pkw-v2 .pkw-city-area-field:hover {
  background: var(--pkw-ice);
}
/* Two-line layout inside area field */
.pkw-v2 .pkw-city-area-field .pkw-sf-two-line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.pkw-v2 .pkw-city-area-val {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pkw-charcoal);
  white-space: nowrap;
  overflow: hidden;
}
/* Default state: city name + caret */
.pkw-v2 .pkw-city-area-default {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pkw-charcoal);
  font-weight: 600;
  font-size: 14px;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pkw-v2 .pkw-city-area-caret {
  color: var(--pkw-mid-gray);
  font-size: 9px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.pkw-v2 .pkw-city-area-field.is-open .pkw-city-area-caret {
  transform: rotate(180deg);
}
/* Selected state: green chip with ✕ */
.pkw-v2 .pkw-city-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pkw-green);
  color: #fff;
  border-radius: 20px;
  padding: 3px 8px 3px 9px;
  font-size: 12px;
  font-weight: 700;
  max-width: 145px;
  overflow: hidden;
}
.pkw-v2 .pkw-city-area-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pkw-v2 .pkw-city-area-chip-clear {
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  padding: 0;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.15s;
}
.pkw-v2 .pkw-city-area-chip-clear:hover { color: #fff; }

/* ── Area dropdown panel ── */
.pkw-v2 .pkw-city-area-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(27,67,83,0.18);
  z-index: 9999;
  padding: 6px 0;
}
.pkw-v2 .pkw-city-area-panel.is-open {
  display: block;
}
.pkw-v2 .pkw-city-area-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 13px;
  color: var(--pkw-charcoal);
  transition: background 0.15s;
  white-space: nowrap;
}
.pkw-v2 .pkw-city-area-option:hover {
  background: var(--pkw-ice);
}
.pkw-v2 .pkw-city-area-option.is-all {
  font-weight: 700;
  color: var(--pkw-teal);
  border-bottom: 1px solid var(--pkw-light-gray);
  margin-bottom: 4px;
  padding-bottom: 12px;
}
.pkw-v2 .pkw-city-area-option.is-active {
  color: var(--pkw-green);
  font-weight: 700;
}
.pkw-v2 .pkw-city-area-option .pkw-area-opt-icon {
  font-size: 11px;
  width: 14px;
  flex-shrink: 0;
  color: var(--pkw-mid-gray);
}
.pkw-v2 .pkw-city-area-option.is-all .pkw-area-opt-icon {
  color: var(--pkw-green);
  font-size: 12px;
}

/* ── Scrollbar styling for area panel ── */
.pkw-v2 .pkw-city-area-panel::-webkit-scrollbar { width: 4px; }
.pkw-v2 .pkw-city-area-panel::-webkit-scrollbar-track { background: transparent; }
.pkw-v2 .pkw-city-area-panel::-webkit-scrollbar-thumb {
  background: var(--pkw-light-gray);
  border-radius: 2px;
}

/* ── Mobile: area field full-width in stacked layout ── */
@media (max-width: 767px) {
  .pkw-v2 .pkw-city-area-field {
    flex: 0 0 auto;
    min-height: 60px;
    border-radius: 0;
  }
  .pkw-v2 .pkw-city-area-panel {
    l
/* ============================================================================
   P9-T2 — CITY HERO 2-COLUMN + QUICK FACTS DARK CARD
   ============================================================================ */

/* Hero inner: row layout on desktop */
.pkw-v2 .pkw-city-hero-cols {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
}
.pkw-v2 .pkw-city-hero-left  { flex: 1; min-width: 0; }
.pkw-v2 .pkw-city-hero-right { flex: 0 0 280px; padding-bottom: 8px; }

/* Quick Facts card — dark glassmorphism for hero */
.pkw-v2 .pkw-city-hero-facts {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 22px 24px;
}
.pkw-v2 .pkw-city-hero-facts-title {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.8px;
  margin-bottom: 14px;
}
.pkw-v2 .pkw-city-hero-fact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pkw-v2 .pkw-city-hero-fact-row:last-child { border-bottom: none; padding-bottom: 0; }
.pkw-v2 .pkw-city-hero-fact-icon {
  font-size: 17px; width: 28px; text-align: center; flex-shrink: 0;
}
.pkw-v2 .pkw-city-hero-fact-body { display: flex; flex-direction: column; gap: 1px; }
.pkw-v2 .pkw-city-hero-fact-label {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.pkw-v2 .pkw-city-hero-fact-val {
  font-size: 13px; font-weight: 700; color: #fff; line-height: 1.25;
}
.pkw-v2 .pkw-city-hero-fact-val .pkw-fact-accent { color: var(--pkw-green); }

/* Mobile: stack to single column */
@media (max-width: 900px) {
  .pkw-v2 .pkw-city-hero-cols  { flex-direction: column; gap: 28px; }
  .pkw-v2 .pkw-city-hero-right { flex: none; width: 100%; }
}

/* ============================================================================
   P9-T2 — INLINE HOTEL RESULTS
   Shown directly on city page after search widget
   ============================================================================ */

.pkw-v2 .pkw-city-results {
  padding: 36px 0 60px;
  background: var(--pkw-surface, #F5FEFF);
}

/* Results header */
.pkw-v2 .pkw-city-results-hd {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.pkw-v2 .pkw-city-results-hd-left {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.pkw-v2 .pkw-city-results-count {
  font-size: 26px; font-weight: 800;
  color: var(--pkw-teal); line-height: 1;
}
.pkw-v2 .pkw-city-results-label {
  font-size: 14px; color: var(--pkw-mid-gray); font-weight: 500;
}
.pkw-v2 .pkw-city-results-city-name {
  font-size: 16px; font-weight: 700; color: var(--pkw-teal);
}
.pkw-v2 .pkw-city-results-show-all {
  font-size: 13px; font-weight: 600; color: var(--pkw-green);
  text-decoration: none; white-space: nowrap;
  border-bottom: 1px solid rgba(60,181,75,0.35);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.pkw-v2 .pkw-city-results-show-all:hover { color: #2fa040; }
.pkw-v2 .pkw-city-results-area-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pkw-green); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.3px;
}
.pkw-v2 .pkw-city-results-area-clear {
  background: none; border: none; color: rgba(255,255,255,0.85);
  cursor: pointer; font-size: 13px; padding: 0; line-height: 1;
  display: flex; align-items: center;
}
.pkw-v2 .pkw-city-results-area-clear:hover { color: #fff; }

/* ── Hotel result card (horizontal) — scoped to city results only ── */
.pkw-v2 .pkw-city-results .pkw-hotel-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(27,67,83,0.08);
  overflow: hidden;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card:hover {
  box-shadow: 0 8px 36px rgba(27,67,83,0.13);
  transform: translateY(-2px);
  border-color: rgba(27,67,83,0.13);
}

/* Image column */
.pkw-v2 .pkw-city-results .pkw-hotel-card-img {
  flex: 0 0 220px; position: relative; overflow: hidden;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card:hover .pkw-hotel-card-img img { transform: scale(1.04); }
.pkw-v2 .pkw-city-results .pkw-hotel-card-img-placeholder {
  width: 100%; min-height: 180px; display: flex;
  align-items: center; justify-content: center;
  font-size: 44px;
  background: linear-gradient(135deg, #f0f7f9 0%, #daedf3 100%);
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-verified {
  position: absolute; top: 12px; left: 12px;
  background: var(--pkw-green); color: #fff;
  font-size: 9px; font-weight: 700; padding: 3px 8px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-stars-badge {
  position: absolute; bottom: 10px; left: 12px;
  background: rgba(0,0,0,0.45); color: #f4c542;
  font-size: 11px; padding: 2px 8px; border-radius: 20px;
  letter-spacing: 1px;
}

/* Info column */
.pkw-v2 .pkw-city-results .pkw-hotel-card-body {
  flex: 1; padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px; min-width: 0;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-name {
  font-size: 17px; font-weight: 800;
  color: var(--pkw-teal); line-height: 1.25;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-addr {
  font-size: 12px; color: var(--pkw-mid-gray);
  display: flex; align-items: center; gap: 4px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-score {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--pkw-teal); color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 3px 9px; border-radius: 8px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-reviews {
  font-size: 12px; color: var(--pkw-mid-gray);
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-amenity-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 8px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-amenity {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--pkw-mid-gray);
  background: var(--pkw-surface); border-radius: 6px; padding: 3px 8px;
}

/* Price + CTA column */
.pkw-v2 .pkw-city-results .pkw-hotel-card-price-col {
  flex: 0 0 180px;
  border-left: 1px solid rgba(27,67,83,0.07);
  padding: 20px 18px;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center; gap: 10px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-from {
  font-size: 10px; color: var(--pkw-mid-gray); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-price {
  font-size: 22px; font-weight: 900; color: var(--pkw-teal);
  line-height: 1; text-align: right;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-per-night {
  font-size: 11px; color: var(--pkw-mid-gray); text-align: right;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--pkw-green); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 11px 18px; border-radius: 10px; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.pkw-v2 .pkw-city-results .pkw-hotel-card-cta:hover { background: #2fa040; transform: scale(1.02); }

/* ── Empty state ── */
.pkw-v2 .pkw-city-no-results {
  text-align: center; padding: 64px 24px;
}
.pkw-v2 .pkw-city-no-results-icon { font-size: 56px; margin-bottom: 16px; }
.pkw-v2 .pkw-city-no-results-title {
  font-size: 22px; font-weight: 800; color: var(--pkw-teal); margin-bottom: 10px;
}
.pkw-v2 .pkw-city-no-results-sub {
  font-size: 14px; color: var(--pkw-mid-gray); line-height: 1.6;
}

/* ── Area pill active state ── */
.pkw-v2 .pkw-city-area-pill.is-active {
  background: var(--pkw-teal);
  color: #fff;
  border-color: var(--pkw-teal);
  box-shadow: 0 4px 14px rgba(27,67,83,0.22);
}
.pkw-v2 .pkw-city-area-pill.is-active:hover {
  background: var(--pkw-teal-mid, #1b4353);
  transform: translateY(-2px);
}

/* ── City results — mobile responsive ── */
@media (max-width: 767px) {
  .pkw-v2 .pkw-city-results .pkw-hotel-card {
    flex-direction: column;
  }
  .pkw-v2 .pkw-city-results .pkw-hotel-card-img {
    flex: none;
    width: 100%;
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
  .pkw-v2 .pkw-city-results .pkw-hotel-card-price-col {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 16px;
    border-top: 1px solid #f0f4f5;
    border-left: none;
  }
  .pkw-v2 .pkw-city-results-hd {
    flex-wrap: wrap;
    gap: 8px;
  }
}
