/* PorbandarOnline — components.css
   All reusable UI components. Zero hardcoded hex values — uses CSS custom properties only.
   ─────────────────────────────────────────────────────────────── */

/* ════════════════════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 12px;
  padding: 6px 0;
  position: relative;
  z-index: 100;
}
.tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.tb-left,
.tb-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tb-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.tb a {
  color: rgba(255,255,255,.7);
  transition: color var(--t);
}
.tb a:hover {
  color: var(--yellow);
}
.since-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .3px;
}
.weather-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.8);
}
.w-temp { font-weight: 600; color: var(--white); }
.w-cond { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(4,24,36,.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.4px;
  line-height: 1;
}
.logo-text span { color: var(--blue); }
.logo-since {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .4px;
  font-weight: 400;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  background: var(--blue-l);
  color: var(--blue-d);
}
.nav-caret {
  font-size: 9px;
  opacity: .5;
  transition: transform var(--t);
}
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-search-expand {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--white);
  box-shadow: var(--sh-lg);
  border-radius: var(--r);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  transform: translateY(8px);
  z-index: 300;
}
.nav-search-expand.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   MEGA MENU
   ════════════════════════════════════════════════════════════════ */
.mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 620px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border-l);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 300;
}
/* bridge prevents hover gap */
.mega::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 14px;
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mega-col-hd {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.mega-lnk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: background var(--t), color var(--t), transform var(--t);
  margin-bottom: 2px;
}
.mega-lnk i {
  width: 16px;
  text-align: center;
  color: var(--blue);
  font-size: 12px;
}
.mega-lnk:hover {
  background: var(--blue-l);
  color: var(--blue-d);
  transform: translateX(3px);
}
/* Mega preview panel */
.mega-preview {
  background: var(--dark);
  border-radius: var(--r);
  padding: 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
}
.mp-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.mp-meta {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mp-stars { color: var(--yellow); font-size: 10px; }
.mp-btn {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* DROPDOWN (simple) */
.drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border-l);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 300;
}
.drop a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: background var(--t), color var(--t);
}
.drop a:hover {
  background: var(--blue-l);
  color: var(--blue-d);
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-d); border-color: var(--blue-d); color: var(--white); }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-d); border-color: var(--yellow-d); color: var(--dark); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-l); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--sand); border-color: var(--border); }

.btn-sm {
  padding: 7px 16px;
  font-size: 12px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ════════════════════════════════════════════════════════════════
   TAGS / BADGES
   ════════════════════════════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: var(--sand);
  color: var(--muted);
}
.tag-blue   { background: var(--blue-l);   color: var(--blue-d); }
.tag-yellow { background: var(--yellow-l); color: var(--yellow-d); }
.tag-green  { background: var(--green-l);  color: var(--green); }
.tag-red    { background: var(--red-l);    color: var(--red); }
.tag-teal   { background: var(--teal-l);   color: var(--teal); }
.tag-purple { background: var(--purple-l); color: var(--purple); }

/* ════════════════════════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--sand);
  border-bottom: 1px solid var(--border-l);
  padding: 10px 0;
}
.bc-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  list-style: none;
}
.bc-list a {
  color: var(--blue);
  transition: color var(--t);
}
.bc-list a:hover { color: var(--blue-d); }
.bc-list i {
  font-size: 8px;
  opacity: .5;
}
.bc-list li:last-child { color: var(--text); font-weight: 500; }

/* ════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════════════════════════ */
.sec-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 8px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.2;
}
.sec-title em {
  font-style: italic;
  color: var(--blue);
}
.sec-divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 12px;
  margin-bottom: 0;
}
.sec-sub {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  max-width: 600px;
}
.sec-head {
  margin-bottom: 36px;
}
.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════════════════════════
   CATEGORY CARDS
   ════════════════════════════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  cursor: pointer;
}
.cat-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-4px);
  border-color: var(--blue-m);
}
.cat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  background: var(--dark);
  transition: transform var(--t);
  flex-shrink: 0;
}
.cat-card:hover .cat-ico { transform: scale(1.08); }
.cat-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}
.cat-count {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   LISTING CARDS (generic)
   ════════════════════════════════════════════════════════════════ */
.lc {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.lc:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.lc-head {
  height: 160px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.lc-body { padding: 16px; }
.lc-name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.lc-addr {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lc-dist {
  font-size: 11px;
  color: var(--blue);
  font-weight: 600;
}
.lc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0;
}
.lc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--border-l);
  gap: 8px;
}
.lc-phone,
.lc-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.lc-phone {
  background: var(--blue-l);
  color: var(--blue-d);
}
.lc-phone:hover { background: var(--blue); color: var(--white); }
.lc-wa {
  background: var(--green-l);
  color: var(--green);
}
.lc-wa:hover { background: var(--green); color: var(--white); }
.status-open {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

/* ════════════════════════════════════════════════════════════════
   HOTEL CARDS
   ════════════════════════════════════════════════════════════════ */
.hotel-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: box-shadow var(--t), transform var(--t);
}
.hotel-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.hc-left {
  width: 240px;
  flex-shrink: 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hc-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity var(--t), transform var(--t);
}
.hotel-card:hover .hc-left img { opacity: 1; transform: scale(1.04); }
.hc-star-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}
.hc-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.hc-name {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hc-stars { display: flex; align-items: center; gap: 2px; color: var(--yellow); font-size: 12px; }
.hc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.hc-meta i { color: var(--blue); }
.hc-price {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-d);
}
.hc-amenities { display: flex; flex-wrap: wrap; gap: 5px; }
.hc-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--blue-l);
  color: var(--blue-d);
}
.hc-actions { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.hc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.hc-rating strong { color: var(--text); font-size: 14px; }

/* ════════════════════════════════════════════════════════════════
   HOSPITAL CARDS
   ════════════════════════════════════════════════════════════════ */
.hosp-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--t), transform var(--t);
  margin-bottom: 16px;
}
.hosp-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.hosp-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hosp-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.hosp-ico.gov { background: var(--blue); }
.hosp-ico.pvt { background: var(--dark-2); }
.hosp-name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.hosp-type { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px; }
.hosp-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 100px;
}
.hosp-badge.gov  { background: var(--blue-l);   color: var(--blue-d); }
.hosp-badge.pvt  { background: var(--sand);     color: var(--muted); }
.hosp-badge.emrg { background: var(--red-l);    color: var(--red); }
.hosp-badge.mat  { background: var(--purple-l); color: var(--purple); }
.hosp-badge.spec { background: var(--teal-l);   color: var(--teal); }
.hosp-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.hosp-addr {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hosp-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hosp-spec span {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.hosp-spec i { color: var(--green); font-size: 9px; }
.hosp-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.hosp-foot { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════
   BLOG CARDS
   ════════════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.blog-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.blog-img {
  height: 180px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 18px; }
.blog-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-exc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--light);
  flex-wrap: wrap;
}
.blog-meta i { color: var(--blue); }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 12px;
  transition: gap var(--t), color var(--t);
}
.blog-link:hover { gap: 8px; color: var(--blue-d); }

/* ════════════════════════════════════════════════════════════════
   CLASSIFIED CARDS
   ════════════════════════════════════════════════════════════════ */
.cls-box {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.cls-box:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.cls-hd {
  height: 130px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255,255,255,.15);
}
.cls-item { padding: 14px; }
.cls-thumb {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.cls-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--blue);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cls-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cls-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-d);
  margin-bottom: 6px;
}
.cls-meta {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.cls-detail {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cls-loc {
  font-size: 11px;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIAL CARDS
   ════════════════════════════════════════════════════════════════ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-stars { color: var(--yellow); font-size: 12px; display: flex; gap: 2px; }
.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue-d);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  flex-shrink: 0;
}
.testi-name  { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-from  { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════
   FEATURED HOTEL (homepage)
   ════════════════════════════════════════════════════════════════ */
.featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--sh-xl);
}
.fw-left {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}
.fw-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .8px;
  width: fit-content;
}
.fw-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.fw-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.fw-meta i { color: var(--yellow); }
.fw-stars { display: flex; align-items: center; gap: 2px; color: var(--yellow); font-size: 12px; }
.fw-rating-n {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.fw-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fw-amenities { display: flex; flex-wrap: wrap; gap: 6px; }
.fw-btns { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fw-right {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.fw-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}
.fw-dist {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(4,24,36,.8);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* ════════════════════════════════════════════════════════════════
   EMERGENCY GRID
   ════════════════════════════════════════════════════════════════ */
.emrg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border-radius: var(--r-lg);
  text-decoration: none;
  font-family: var(--font-ui);
  transition: transform var(--t), box-shadow var(--t);
  text-align: center;
}
.ec:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.ec-red    { background: var(--red);   color: var(--white); }
.ec-orange { background: #E05000;      color: var(--white); }
.ec-blue   { background: var(--blue);  color: var(--white); }
.ec-green  { background: var(--green); color: var(--white); }
.ec-ico { font-size: 22px; }
.ec-num  { font-size: 22px; font-weight: 800; line-height: 1; }
.ec-name { font-size: 11px; font-weight: 600; opacity: .85; }

/* GOVT GRID */
.govt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.govt-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--t);
}
.govt-card:hover { box-shadow: var(--sh); }
.govt-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-l);
  color: var(--blue-d);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.govt-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
}
.govt-addr  { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════════ */
.cta-inner {
  border-radius: var(--r-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content { max-width: 560px; }
.cta-lbl {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 10px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.cta-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════
   WEATHER BAND
   ════════════════════════════════════════════════════════════════ */
.weather-band {
  background: var(--dark);
  padding: 48px 0;
}
.wb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wb-left { color: var(--white); }
.wb-right { display: flex; flex-direction: column; gap: 16px; }
.wb-main {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 8px;
}
.wb-icon { font-size: 48px; color: var(--yellow); }
.wb-temp-big {
  font-family: var(--font-ui);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.wb-cond-text {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.wb-location {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.wb-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.wb-stat {
  background: rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wb-stat-ico {
  font-size: 18px;
  color: var(--yellow);
  width: 24px;
  text-align: center;
}
.wb-stat-label { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.wb-stat-val { font-size: 14px; font-weight: 600; color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════ */
.mq-wrap {
  overflow: hidden;
  background: var(--yellow);
  padding: 10px 0;
  position: relative;
}
.mq-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: mq 32s linear infinite;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.mq-item i { color: var(--dark); opacity: .5; }
.mq-dot {
  width: 4px;
  height: 4px;
  background: var(--dark);
  border-radius: 50%;
  opacity: .3;
  flex-shrink: 0;
}
@keyframes mq {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   TOURISM MOSAIC
   ════════════════════════════════════════════════════════════════ */
.tour-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tour-mosaic .place-card:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
.tour-mosaic .place-card:nth-child(2) { grid-column: 7 / 10; grid-row: 1; }
.tour-mosaic .place-card:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.tour-mosaic .place-card:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }
.tour-mosaic .place-card:nth-child(5) { grid-column: 5 / 13; grid-row: 2; }

.place-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
}
.place-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.place-card:hover .place-bg { transform: scale(1.06); }
.place-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,24,36,.9) 0%, rgba(4,24,36,.2) 60%, transparent 100%);
}
.place-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  color: var(--white);
}
.place-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.place-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.place-desc {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.place-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.place-dist { display: flex; align-items: center; gap: 3px; }

/* ════════════════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .2px;
}
.form-label .req { color: var(--red); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,130,200,.08);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 11px; color: var(--muted); margin-top: 8px; }
.form-submit { margin-top: 8px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}
.form-check input { margin-top: 2px; }

/* Search wrap */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}
.search-cat {
  padding: 10px 14px;
  border-right: 1.5px solid var(--border);
  font-size: 13px;
  color: var(--text);
  background: var(--sand);
  flex-shrink: 0;
}
.search-field {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
}
.search-btn {
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--t);
  flex-shrink: 0;
}
.search-btn:hover { background: var(--blue-d); }

/* ════════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}
.pg-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  text-decoration: none;
}
.pg-btn:hover  { background: var(--blue-l); border-color: var(--blue-m); color: var(--blue-d); }
.pg-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   RATING STARS
   ════════════════════════════════════════════════════════════════ */
.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--yellow); font-size: 12px; }
.stars .empty { color: var(--border); }
.rn { font-size: 13px; font-weight: 700; color: var(--text); margin-left: 4px; }
.rc { font-size: 11px; color: var(--muted); margin-left: 2px; }

/* ════════════════════════════════════════════════════════════════
   SCROLL-TO-TOP & WA FLOAT
   ════════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), background var(--t);
  box-shadow: var(--sh);
  z-index: 400;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-d); transform: translateY(-3px); }

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
  z-index: 400;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.foot-logo {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.foot-logo span { color: var(--blue); }
.foot-since {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.foot-tag {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.foot-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--t), color var(--t), transform var(--t);
}
.soc:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.foot-col-hd {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 16px;
}
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t), gap var(--t);
}
.foot-links a i { font-size: 8px; opacity: .4; }
.foot-links a:hover { color: var(--white); gap: 9px; }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  flex-wrap: wrap;
}
.foot-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.foot-legal { display: flex; align-items: center; gap: 16px; }
.foot-legal a { font-size: 12px; color: rgba(255,255,255,.35); transition: color var(--t); }
.foot-legal a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   FILTER BAR / TABS
   ════════════════════════════════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-l);
  padding: 10px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}
.filter-inner::-webkit-scrollbar { height: 0; }
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.filter-tab:hover  { background: var(--blue-l); color: var(--blue-d); }
.filter-tab.active { background: var(--blue);   color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   ACCORDION
   ════════════════════════════════════════════════════════════════ */
.accordion { border: 1px solid var(--border-l); border-radius: var(--r-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border-l); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background var(--t);
}
.accordion-header:hover { background: var(--sand); }
.accordion-header i { font-size: 11px; color: var(--blue); transition: transform var(--t); }
.accordion-item.open .accordion-header i { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  background: var(--white);
}
.accordion-item.open .accordion-body { padding: 4px 20px 16px; }

/* ════════════════════════════════════════════════════════════════
   GALLERY LIGHTBOX (tourism.js creates this)
   ════════════════════════════════════════════════════════════════ */
.gallery-lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,24,36,.95);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.gallery-lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: var(--sh-xl);
}

/* ════════════════════════════════════════════════════════════════
   DIRECTORY LAYOUT
   ════════════════════════════════════════════════════════════════ */
.dir-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 60px;
}
.dir-sidebar { position: sticky; top: 120px; }
.dir-main { min-width: 0; }
.dir-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.dir-count { font-size: 13px; color: var(--muted); }
.dir-count strong { color: var(--text); }
.dir-sort select {
  font-size: 12px;
  padding: 5px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

/* Sidebar cards */
.ds-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 18px;
  margin-bottom: 16px;
}
.ds-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--blue-d);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ds-group { margin-bottom: 16px; }
.ds-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.ds-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  padding: 4px 0;
}
.ds-check input { accent-color: var(--blue); }

/* DIR CTA card */
.dir-cta-card {
  background: var(--blue-l);
  border: 1px solid var(--blue-m);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.dc-ico {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dc-title { font-weight: 700; font-size: 14px; color: var(--blue-d); margin-bottom: 3px; }
.dc-sub   { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════
   EMERGENCY BANNER (hospitals page)
   ════════════════════════════════════════════════════════════════ */
.emergency-banner {
  background: var(--red);
  padding: 18px 0;
}
.eb-inner { display: flex; flex-direction: column; gap: 14px; }
.eb-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.eb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.eb-item {
  background: rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: background var(--t);
}
.eb-item:hover { background: rgba(255,255,255,.22); }
.eb-ico { font-size: 20px; color: var(--white); flex-shrink: 0; }
.eb-num {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.eb-label { font-size: 11px; color: rgba(255,255,255,.75); }

/* PAGE HERO (non-tourism pages) */
.page-hero {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.ph-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, rgba(255,184,0,.06) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}
.ph-content { position: relative; z-index: 1; max-width: 680px; }
.ph-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ph-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.ph-title em { font-style: italic; color: var(--yellow); }
.ph-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 560px;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num  { font-family: var(--font-ui); font-size: 28px; font-weight: 800; color: var(--dark); }
.stat-label { font-size: 12px; color: var(--dark); opacity: .7; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cat-grid    { grid-template-columns: repeat(4, 1fr); }
  .emrg-grid   { grid-template-columns: repeat(2, 1fr); }
  .eb-grid     { grid-template-columns: repeat(2, 1fr); }
  .govt-grid   { grid-template-columns: repeat(2, 1fr); }
  .wb-inner    { grid-template-columns: 1fr; }
  .featured-wrap { grid-template-columns: 1fr; }
  .hotel-card  { flex-direction: column; }
  .hc-left     { width: 100%; height: 200px; }
  .dir-layout  { grid-template-columns: 1fr; }
  .dir-sidebar { position: static; }
  .tour-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tour-mosaic .place-card { grid-column: auto !important; grid-row: auto !important; height: 200px; }
  .foot-grid   { grid-template-columns: 1fr 1fr; }
  .mega-inner  { grid-template-columns: repeat(2, 1fr); }
  .cta-inner   { padding: 36px 24px; }
  .form-row    { grid-template-columns: 1fr; }
  .wb-stats    { grid-template-columns: 1fr; }
  .nav-list    { display: none; }
  .nav-list.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--sh-lg);
    padding: 12px;
    z-index: 200;
  }
}

@media (max-width: 600px) {
  .cat-grid    { grid-template-columns: repeat(3, 1fr); }
  .emrg-grid   { grid-template-columns: repeat(2, 1fr); }
  .eb-grid     { grid-template-columns: 1fr 1fr; }
  .foot-grid   { grid-template-columns: 1fr; }
  .mega { min-width: 100vw; left: 0; transform: none; }
  .mega-inner  { grid-template-columns: 1fr; }
  .stats-bar   { gap: 16px; }
  .cta-inner   { padding: 28px 20px; }
  .filter-inner { gap: 4px; }
}
