/* ============================================================
   KASHI TRAVELS — Public Frontend CSS (Redesigned)
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --ink: #1a0505;
  --ink-80: rgba(26, 5, 5, .8);
  --red: #b83232;
  --red-dk: #8c1e1e;
  --red-lt: #f9f0ef;
  --gold: #c9952a;
  --gold-lt: #fdf6e8;
  --cream: #fdf7f5;
  --stone: #e8e0db;
  --muted: #7a6868;
  --green: #2d6a35;
  --white: #fff;
  --nav-h: 72px;
  --r: 12px;
  --r-sm: 8px;
  --r-xl: 20px;
  --ease: .28s cubic-bezier(.4, 0, .2, 1);
  --shadow-xs: 0 1px 4px rgba(26, 5, 5, .07);
  --shadow-sm: 0 3px 14px rgba(26, 5, 5, .09);
  --shadow-md: 0 8px 32px rgba(26, 5, 5, .14);
  --shadow-lg: 0 18px 56px rgba(26, 5, 5, .20);

  /* legacy compat aliases */
  --bg: var(--cream);
  --border: var(--ink);
  --dark: var(--ink);
  --card-bg: var(--white);
  --section-alt: #fff;
  --text: var(--ink);
  --radius: var(--r);
  --radius-sm: var(--r-sm);
  --transition: var(--ease);
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
  line-height: 1.22;
  color: var(--ink);
}

em {
  font-style: italic;
  color: var(--red);
}

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253, 247, 245, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 5, 5, .07);
  transition: var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(184, 50, 50, .35);
}

.brand-text {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.brand-text span {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Nav links */
.navbar-collapse {
  flex: 1;
  justify-content: center;
}

.navbar-collapse-mobile {
  display: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: var(--ease);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(184, 50, 50, .07);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--red);
}

/* Navbar actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.navbar-toggler:hover {
  background: var(--red-lt);
  color: var(--red);
}

/* Mobile drawer */
.navbar-collapse-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(253, 247, 245, .98);
  border-top: 1px solid rgba(26, 5, 5, .07);
  padding: 12px 24px 20px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.navbar-collapse-mobile.show {
  display: block;
}

.navbar-collapse-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.navbar-collapse-mobile ul a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--ink);
  transition: var(--ease);
}

.navbar-collapse-mobile ul a:hover {
  color: var(--red);
  background: var(--red-lt);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: var(--ease);
  box-shadow: 0 6px 22px rgba(184, 50, 50, .4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 50, 50, .5);
  color: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(6px);
  transition: var(--ease);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  transition: var(--ease);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
}

.new-btn-card{  
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: var(--ease);
}

.btn-card {
    display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: var(--ease);
}

.btn-card:hover ,
.new-btn-card:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  transition: var(--ease);
}

.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
}

.btn-submit-form {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 6px 20px rgba(184, 50, 50, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 50, 50, .4);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 9s ease;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.2) 75%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(201, 149, 42, .14);
  border: 1px solid rgba(201, 149, 42, .45);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: #fff;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-content h1 em {
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .78);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-stat .num {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 5px;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: 50px 0;
}

.section-alt {
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.overline {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(184, 50, 50, .08);
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ── SPECIAL OFFERS STRIP ────────────────────────────────── */
.offers-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #3a0c0c 60%, rgba(184, 50, 50, .7) 100%);
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}

.offers-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.offers-left .badge-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 149, 42, .18);
  border: 1px solid rgba(201, 149, 42, .4);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.offers-left h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.offers-left h2 span {
  color: var(--gold);
}

.offers-left p {
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.offer-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--ease);
}

.offer-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.offer-img-wrap {
  position: relative;
}

.offer-img {
  width: 70px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-pct {
  position: absolute;
  top: -4px;
  left: -4px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
}

.offer-info {
  flex: 1;
}

.offer-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.3;
}

.offer-dur {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.offer-price .cur {
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
  font-family: 'Lora', serif;
}

.offer-price .old {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}

.offer-valid {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── CATEGORY GRID ───────────────────────────────────────── */
.cat-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}

.cat-left h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}

.cat-left p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cat-item {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  aspect-ratio: 1;
  cursor: pointer;
}

.cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cat-item:hover img {
  transform: scale(1.09);
}

.cat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 3, 3, .78) 0%, rgba(18, 3, 3, .12) 55%, transparent 100%);
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 10px 10px 11px;
}

.cat-info .cat-name {
  font-family: 'Lora', serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  display: block;
}

.cat-info .cat-count {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  margin-top: 2px;
}

.cat-item.span2 {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.cat-item.span2 .cat-info .cat-name {
  font-size: 15px;
}

/* ── PACKAGE / DESTINATION / VEHICLE / BIKE CARDS ───────── */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pkg-card,
.dest-card,
.vehicle-card,
.bike-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 11px solid #000;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(26, 5, 5, .06);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.pkg-card:hover,
.dest-card:hover,
.vehicle-card:hover,
.bike-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.pkg-card:hover .card-img img,
.dest-card:hover .card-img img,
.vehicle-card:hover .card-img img,
.bike-card:hover .card-img img {
  transform: scale(1.07);
}

.duration-badge,
.featured-badge,
.price-badge,
.type-badge {
  position: absolute;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
}

.duration-badge {
  top: 12px;
  left: 12px;
  background: rgba(18, 3, 3, .72);
  color: #fff;
  backdrop-filter: blur(4px);
}

.featured-badge {
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--ink);
}

.price-badge {
  bottom: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
}

.type-badge {
  top: 12px;
  left: 12px;
  background: rgba(18, 3, 3, .72);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars-filled {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.rating-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.rating-cnt {
  font-size: 11.5px;
  color: var(--muted);
}

.card-title {
  font-family: 'Lora', serif;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.card-dest,
.card-state {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
}

.card-dest i,
.card-state i {
  color: var(--red);
  font-size: 11px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}

.tag i {
  color: var(--red);
  font-size: 10px;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--stone);
  margin-top: auto;
}

.price-from {
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.price {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.15;
}

.price small {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Roboto', sans-serif;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 13.5px;
  transition: var(--ease);
}

.card-link:hover {
  gap: 10px;
}

/* vehicle / bike meta tags */
.vehicle-meta,
.bike-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 5, 5, .05);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}

.meta-tag i {
  color: var(--red);
  font-size: 10px;
}

/* ── CAROUSEL ────────────────────────────────────────────── */
.carousel-wrapper {
  position: relative;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.carousel-track .pkg-card,
.carousel-track .dest-card,
.carousel-track .vehicle-card,
.carousel-track .bike-card,
.carousel-track .review-card {
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--stone);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 15px;
  transition: var(--ease);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stone);
  cursor: pointer;
  transition: var(--ease);
  border: none;
}

.carousel-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 34px 28px;
  border: 1px solid rgba(26, 5, 5, .06);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: var(--ease);
  transform-origin: left;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fi-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(184, 50, 50, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--ease);
}

.feature-item:hover .fi-icon {
  background: var(--red);
  color: #fff;
}

.feature-item h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.review-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid rgba(26, 5, 5, .06);
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer .name {
  font-weight: 700;
  font-size: 14px;
}

.reviewer .date {
  font-size: 12px;
  color: var(--muted);
}

.reviewer .pkg {
  font-size: 11.5px;
  color: var(--red);
  font-weight: 600;
  margin-top: 2px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid rgba(26, 5, 5, .07);
  overflow: hidden;
  transition: var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;
  transition: var(--ease);
  user-select: none;
}

.faq-q:hover {
  background: var(--red-lt);
}

.faq-q .q-text {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  flex: 1;
  line-height: 1.4;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  transition: transform .3s ease, background .2s ease, color .2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 22px;
  background: #fff;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-item.open .faq-q {
  background: var(--red-lt);
}

.faq-item.open .q-text {
  color: var(--red);
}

.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  position: relative;
  padding-bottom: 44px;
}

.about-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 46%;
  border-radius: var(--r);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 28px;
  left: -22px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-float .num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: 10.5px;
  opacity: .85;
  margin-top: 4px;
  line-height: 1.4;
}

.about-content .overline {
  display: block;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.about-content p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 15px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(184, 50, 50, .09);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 17px;
}

.about-feature-text h5 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.about-feature-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: 50px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(184, 50, 50, .09);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
}

.ci-text h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ci-text p,
.ci-text a {
  font-size: 13.5px;
  color: var(--muted);
  transition: var(--ease);
  margin: 0;
}

.ci-text a:hover {
  color: var(--red);
}

.contact-form-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 38px;
  border: 1px solid rgba(26, 5, 5, .07);
  box-shadow: var(--shadow-xs);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--stone);
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: var(--ease);
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 50, 50, .1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 6px 20px rgba(184, 50, 50, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 50, 50, .4);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 50px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, #4a0d0d 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 14px;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
  padding: 72px 0 0;
}

.footer h5 {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: var(--ease);
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  transition: var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, .08);
  margin: 48px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .5);
  transition: var(--ease);
  animation: waPulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.12) rotate(-5deg);
  color: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 26px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 8px 34px rgba(37, 211, 102, .7), 0 0 0 13px rgba(37, 211, 102, .08);
  }
}

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── BREADCRUMB / PAGE HERO / FILTER / DETAIL (list pages) ── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(26, 5, 5, .07);
  padding: 13px 0;
  margin-top: var(--nav-h);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  margin-right: 6px;
  color: var(--stone);
}

.breadcrumb-item a {
  color: var(--muted);
  transition: var(--ease);
}

.breadcrumb-item a:hover {
  color: var(--red);
}

.breadcrumb-item.active {
  color: var(--red);
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #4a1010 60%, rgba(184, 50, 50, .8) 100%);
  padding: 60px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.filter-section {
  background: var(--white);
  border-bottom: 1px solid rgba(26, 5, 5, .07);
  padding: 18px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

.filter-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.form-select {
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--stone);
  background: var(--cream);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--ease);
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 50, 50, .1);
}

.btn-filter {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-filter:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}

.btn-clear {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--stone);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: var(--ease);
  white-space: nowrap;
  background: none;
  cursor: pointer;
}

.btn-clear:hover {
  border-color: var(--red);
  color: var(--red);
}

.results-bar {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Detail pages */
.detail-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  /* margin-top: var(--nav-h); */
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.detail-hero:hover img {
  transform: scale(1.04);
}

.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 5, 5, .85) 0%, rgba(26, 5, 5, .3) 50%, transparent 100%);
}

.detail-title-block {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 24px;
  max-width: 1248px;
  margin: 0 auto;
}

.detail-title-block h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.detail-content {
  padding: 48px 0 80px;
}

.detail-main {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 32px;
  border: 1px solid rgba(26, 5, 5, .06);
  box-shadow: var(--shadow-xs);
}

.pkg-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.pkg-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(26, 5, 5, .08);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  box-shadow: var(--shadow-xs);
}

.pkg-meta-item i {
  color: var(--red);
  font-size: 12px;
}

/* Itinerary */
.itinerary-item {
  border: 1px solid rgba(26, 5, 5, .08);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 10px;
  transition: var(--ease);
}

.itinerary-item:hover {
  border-color: rgba(184, 50, 50, .3);
}

.item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--cream);
  transition: var(--ease);
  user-select: none;
}

.item-header:hover,
.item-header.open {
  background: var(--white);
}

.day-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.day-title {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}

.chevron {
  font-size: 12px;
  color: var(--muted);
  transition: transform .3s ease;
}

.item-header.open .chevron {
  transform: rotate(180deg);
}

.item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 20px;
}

.item-body.open {
  max-height: 600px;
  padding: 18px 20px;
}

.meal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.meal-tag {
  background: rgba(45, 106, 53, .08);
  color: var(--green);
  border: 1px solid rgba(45, 106, 53, .2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 500;
}

.overnight-tag {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.overnight-tag i {
  color: var(--red);
}

/* Checklist */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.checklist.incl li::before {
  content: '✓';
  background: rgba(45, 106, 53, .12);
  color: var(--green);
  line-height: 16px;
  text-align: center;
}

.checklist.excl li::before {
  content: '✕';
  background: rgba(184, 50, 50, .1);
  color: var(--red);
  line-height: 16px;
  text-align: center;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid rgba(26, 5, 5, .07);
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
}

.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone);
}

.price-box {
  text-align: center;
}

.price-amount {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 6px 20px rgba(184, 50, 50, .3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 50, 50, .4);
  color: #fff;
}

/* Specs / Status / Gallery / Lightbox — vehicle & bike detail */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--cream);
  border: 1px solid rgba(26, 5, 5, .06);
}

.spec-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(184, 50, 50, .09);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 15px;
}

.spec-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.status-available {
  background: rgba(45, 106, 53, .1);
  color: var(--green);
  border: 1px solid rgba(45, 106, 53, .2);
}

.status-unavailable {
  background: rgba(184, 50, 50, .1);
  color: var(--red);
  border: 1px solid rgba(184, 50, 50, .2);
}

.status-maintenance {
  background: rgba(201, 149, 42, .1);
  color: #b7860b;
  border: 1px solid rgba(201, 149, 42, .3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 5, 5, .4);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: var(--ease);
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: var(--ease);
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.empty-state {
  text-align: center;
  padding: 72px 20px;
}

.empty-state i {
  font-size: 52px;
  color: var(--stone);
  display: block;
  margin-bottom: 18px;
}

.empty-state h3 {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--muted);
  font-size: 14px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1024px) {

  .card-grid-3,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid,
  .cat-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    padding-bottom: 50px;
  }
}

@media (max-width:992px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    height: 320px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  .navbar-collapse {
    display: none;
  }

  .navbar-actions .btn-whatsapp span {
    display: none;
  }

  .navbar-toggler {
    display: flex;
  }

  .card-grid-3,
  .card-grid-2,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-item.span2 {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-img-accent,
  .about-badge-float {
    display: none;
  }

  .carousel-btn {
    display: none;
  }

  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-hero {
    height: 260px;
  }

  .detail-main {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width:480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .num {
    font-size: 1.6rem;
  }
}


/* ── NAVBAR BASE ─────────────────────────────────────────── */
.navbar {
  height: var(--nav-h);
  background: var(--cream) !important;
  border-bottom: 1px solid var(--stone);
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
  z-index: 1000;
}

/* Sticky effect (optional if you add position:sticky in HTML) */
.navbar.scrolled {
  background: rgba(253, 247, 245, 0.95) !important;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

/* ── BRAND ──────────────────────────────────────────────── */
.navbar-brand {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink) !important;
  letter-spacing: 0.5px;
}

.navbar-brand i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── NAV LINKS ───────────────────────────────────────────── */
.navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--ink-80) !important;
  padding: 10px 14px;
  position: relative;
  transition: var(--ease);
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: var(--red) !important;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: var(--red) !important;
  font-weight: 600;
}

/* Underline animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: var(--ease);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* ── WHATSAPP BUTTON ────────────────────────────────────── */
.btn-success {
  background: var(--green) !important;
  border: none;
  border-radius: var(--r-sm);
  font-weight: 500;
  padding: 8px 16px;
  transition: var(--ease);
  box-shadow: var(--shadow-xs);
}

.btn-success:hover {
  background: #24572b !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── TOGGLER ────────────────────────────────────────────── */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: contrast(0.3);
}

/* ── MOBILE DRAWER ───────────────────────────────────────── */
.navbar-collapse-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 80px 20px 20px;
  transition: var(--ease);
  z-index: 1050;
}

/* Open state (toggle with JS) */
.navbar-collapse-mobile.open {
  right: 0;
}

/* Drawer links */
.navbar-collapse-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-collapse-mobile li {
  margin-bottom: 12px;
}

.navbar-collapse-mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  text-decoration: none;
  transition: var(--ease);
}

/* Hover */
.navbar-collapse-mobile a:hover {
  background: var(--red-lt);
  color: var(--red);
}

/* Active */
/*.navbar-collapse-mobile a.active {*/
/*  background: var(--gold-lt);*/
/*  color: var(--gold);*/
/*  font-weight: 600;*/
/*}*/

/* WhatsApp button inside drawer */
.btn-whatsapp {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  padding: 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ease);
}

.btn-whatsapp:hover {
  background: #24572b;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-nav {
    display: none; /* hide desktop menu */
  }
}