:root {
  --ink: #18231c;
  --muted: #647067;
  --paper: #fbfaf5;
  --line: #e1dfd6;
  --leaf: #2f6b46;
  --leaf-dark: #1f4f35;
  --sun: #f4b942;
  --coral: #d96142;
  --sky: #dfeff3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 35, 27, .16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

/* ===== HEADER & NAV ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px clamp(16px, 4vw, 54px);
}

.nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 62px;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(21, 35, 26, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 12px 13px;
  color: #26342b;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--leaf);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--leaf);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-content: end;
  padding: 130px clamp(16px, 5vw, 68px) 34px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/bg1.png?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 25, 18, .76), rgba(15, 25, 18, .34) 48%, rgba(15, 25, 18, .10)),
    linear-gradient(0deg, rgba(251, 250, 245, 1), rgba(251, 250, 245, 0) 36%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  color: var(--white);
  margin-bottom: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.7;
}

/* ===== BOOKING PANEL ===== */
.booking-panel {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel label {
  display: grid;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fdfcf8;
}

.booking-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-panel input,
.booking-panel select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 750;
}

/* ===== BUTTONS ===== */
.booking-panel button,
.cta-panel a,
.package-card a,
.detail-button,
.modal-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  color: var(--white);
  background: var(--leaf);
  font-weight: 850;
  cursor: pointer;
  padding: 0 22px;
  white-space: nowrap;
}

.detail-button {
  width: 100%;
  border-radius: 0;
}

/* ===== QUICK CATEGORIES ===== */
.quick-cats {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.quick-cats::-webkit-scrollbar {
  height: 4px;
}

.quick-cats::-webkit-scrollbar-track {
  background: transparent;
}

.quick-cats::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.cat {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.cat.active {
  color: var(--white);
  border-color: var(--leaf);
  background: var(--leaf);
}

/* ===== SECTIONS ===== */
.section,
.package-grid,
.testimonial-band,
.cta-panel,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* ===== INTRO SECTION ===== */
.intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: end;
  padding: 72px 0 28px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro > p,
.rules > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ===== PACKAGE GRID ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}

.package-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(27, 39, 31, .08);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.package-card:hover,
.package-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(27, 39, 31, .14);
  outline: 2px solid rgba(47, 107, 70, .22);
  outline-offset: 2px;
}

.package-card.is-hidden {
  display: none;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  flex-wrap: wrap;
}

.card-top strong {
  color: var(--coral);
  white-space: nowrap;
}

.price-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.price-tags strong {
  color: var(--coral);
  white-space: nowrap;
  font-size: 13px;
}

.price-weekday {
  color: var(--leaf) !important;
}

.price-weekend {
  color: var(--coral);
}

.package-card h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.2;
}

.package-card ul {
  min-height: 96px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.package-card a,
.detail-button {
  width: 100%;
}

/* ===== MODAL ===== */
body.modal-is-open {
  overflow: hidden;
}

.villa-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 26px;
  align-items: center;
  justify-content: center;
}

.villa-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 25, 20, .72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 52px);
  display: flex;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(24, 35, 28, .84);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(24, 35, 28, 1);
}

.modal-gallery {
  flex: 0 0 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #111a15;
  max-height: calc(100vh - 52px);
}

.modal-main-image {
  flex: 1;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  flex-shrink: 0;
  max-height: 100px;
  background: #0a100d;
}

.modal-thumbs::-webkit-scrollbar {
  height: 4px;
}

.modal-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.modal-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
}

.modal-thumbs button {
  flex: 0 0 86px;
  width: 86px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.modal-thumbs button.active {
  border-color: var(--sun);
}

.modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 34px;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.modal-copy::-webkit-scrollbar {
  width: 6px;
}

.modal-copy::-webkit-scrollbar-track {
  background: transparent;
}

.modal-copy::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.modal-copy h2 {
  font-size: clamp(24px, 3vw, 44px);
  margin-bottom: 14px;
}

.modal-description {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
}

.modal-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.modal-info span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  background: var(--sky);
  border: 1px solid #c8dfe5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.modal-facilities {
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-facilities h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.modal-facilities ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.75;
}

.modal-price-section {
  margin-bottom: 22px;
  padding: 18px;
  background: var(--sky);
  border-radius: 8px;
}

.modal-price-section h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.price-value {
  font-size: 16px;
  font-weight: 850;
  color: var(--ink);
}

.price-value.price-weekday {
  color: var(--leaf);
}

.price-value.price-weekend {
  color: var(--coral);
}

.modal-booking {
  width: 100%;
  min-height: 52px;
}

/* ===== RULES SECTION ===== */
.rules {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 36px;
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.rule-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--sky);
  border: 1px solid #c8dfe5;
  border-radius: 8px;
}

.rule-grid span {
  color: var(--leaf);
  font-weight: 900;
}

.rule-grid h3 {
  margin: 22px 0 8px;
  font-size: 21px;
}

.rule-grid p {
  margin: 0;
  color: #526067;
  line-height: 1.65;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-band {
  padding: 64px 0;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

figure {
  margin: 0;
  padding: 24px;
  min-height: 210px;
  display: grid;
  align-content: space-between;
  background: #fff7e6;
  border: 1px solid #eadab3;
  border-radius: 8px;
}

blockquote {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

/* ===== CTA PANEL ===== */
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: 34px;
  color: var(--white);
  background: var(--leaf-dark);
  border-radius: 8px;
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel a {
  flex: 0 0 auto;
  min-width: 170px;
  padding-inline: 22px;
  background: var(--coral);
}

/* ===== FOOTER ===== */
.footer {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap: 28px;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 450px;
  color: var(--muted);
  line-height: 1.7;
}

.footer h2 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 750;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 40;
  transform: translate(-50%, 18px);
  opacity: 0;
  max-width: min(520px, calc(100% - 24px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===== FLOATING WHATSAPP WIDGET ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}

.wa-float-icon {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 0 72px;
  flex-wrap: wrap;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .18s ease;
  cursor: pointer;
}

.pagination-btn:hover {
  color: var(--white);
  background: var(--leaf);
  border-color: var(--leaf);
}

.pagination-btn.active {
  color: var(--white);
  background: var(--leaf);
  border-color: var(--leaf);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn:disabled:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.pagination-btn svg {
  flex-shrink: 0;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  color: var(--muted);
  font-weight: 700;
}

/* ===== RESPONSIVE - TABLET (920px and below) ===== */
@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(330px, calc(100vw - 32px));
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  /* Booking panel - 2 columns on tablet */
  .booking-panel {
    grid-template-columns: 1fr 1fr;
  }

  .booking-panel button {
    grid-column: 1 / -1;
  }

  /* Intro section - single column */
  .intro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 48px 0 24px;
  }

  /* Package grid - 2 columns on tablet */
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Rules section - single column */
  .rules {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }

  .rule-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonial - 2 columns on tablet */
  .testimonial-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer - 2 columns on tablet */
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  /* Modal - stacked layout on tablet */
  .villa-modal {
    padding: 16px;
  }

  .modal-panel {
    flex-direction: column;
    max-height: calc(100vh - 32px);
  }

  .modal-gallery {
    flex: 0 0 auto;
    flex-direction: row;
    max-height: 240px;
    overflow: hidden;
  }

  .modal-main-image {
    flex: 1;
    min-height: 240px;
  }

  .modal-thumbs {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100px;
    max-height: 240px;
    gap: 6px;
    padding: 8px;
  }

  .modal-thumbs button {
    flex: 0 0 auto;
    width: 100%;
    height: 56px;
  }

  .modal-copy {
    flex: 1;
    padding: 20px;
  }
}

/* ===== RESPONSIVE - MOBILE (640px and below) ===== */
@media (max-width: 640px) {
  .site-header {
    padding: 12px;
  }

  .nav {
    min-height: 58px;
    padding: 6px 8px 6px 12px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 92vh;
    padding: 100px 16px 20px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 43px);
  }

  .hero-copy {
    font-size: 15px;
  }

  /* Booking panel - single column on mobile */
  .booking-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .booking-panel label {
    padding: 8px 12px;
  }

  .booking-panel button {
    grid-column: auto;
    min-height: 52px;
  }

  /* Package grid - single column on mobile */
  .package-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 48px;
  }

  .package-card {
    grid-template-rows: 200px 1fr;
  }

  .card-body {
    padding: 14px;
    gap: 12px;
  }

  /* Rules - single column grid on mobile */
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .rule-grid article {
    min-height: auto;
    padding: 18px;
  }

  .rule-grid h3 {
    margin: 14px 0 6px;
  }

  /* Testimonial - single column on mobile */
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  figure {
    padding: 18px;
    min-height: auto;
  }

  blockquote {
    font-size: 16px;
  }

  /* Modal - full screen on mobile */
  .villa-modal {
    padding: 0;
    align-items: stretch;
  }

  .modal-panel {
    flex-direction: column;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-gallery {
    flex: 0 0 auto;
    flex-direction: row;
    max-height: 260px;
    overflow: hidden;
  }

  .modal-main-image {
    flex: 1;
    min-height: 260px;
  }

  .modal-thumbs {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 80px;
    max-height: 260px;
    gap: 4px;
    padding: 6px;
  }

  .modal-thumbs button {
    flex: 0 0 auto;
    width: 100%;
    height: 50px;
  }

  .modal-copy {
    flex: 1;
    padding: 16px;
  }

  .modal-copy h2 {
    font-size: 22px;
  }

  .modal-booking {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding: 12px;
    background: var(--leaf);
    border-top: 1px solid var(--line);
  }

  /* Rules and testimonial padding */
  .rules,
  .testimonial-band {
    padding-block: 36px;
  }

  /* CTA panel - stacked on mobile */
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    margin-bottom: 48px;
  }

  .cta-panel h2 {
    font-size: 22px;
  }

  .cta-panel a {
    width: 100%;
    padding: 16px;
  }

  /* Footer - single column on mobile */
  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 36px;
  }

  .footer > div {
    text-align: center;
  }

  .footer p {
    max-width: none;
  }

  .footer h2 {
    margin-bottom: 10px;
  }

  .footer a:not(.brand) {
    margin: 6px 0;
  }

  /* Floating WhatsApp - smaller on mobile */
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float-icon {
    width: 28px;
    height: 28px;
  }

  /* Pagination - smaller on mobile */
  .pagination {
    padding-bottom: 48px;
    gap: 6px;
  }

  .pagination-btn {
    min-width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .pagination-ellipsis {
    min-width: 40px;
    height: 40px;
  }
}

/* ===== EXTRA SMALL SCREENS (380px and below) ===== */
@media (max-width: 380px) {
  .hero {
    padding: 90px 12px 16px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 14px;
    margin: 16px 0 0;
  }

  .eyebrow {
    font-size: 11px;
  }

  .package-card h3 {
    font-size: 18px;
  }

  .package-card ul {
    font-size: 13px;
  }

  .modal-copy {
    padding: 14px;
  }

  .modal-copy h2 {
    font-size: 20px;
  }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 16px 20px;
  }

  .hero-content {
    margin-bottom: 20px;
  }

  .hero-copy {
    display: none;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .site-header,
  .quick-cats,
  .booking-panel,
  .nav-toggle,
  .detail-button,
  .modal-booking,
  .cta-panel,
  .toast,
  .wa-float,
  .pagination {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px;
  }

  .hero-shade {
    display: none;
  }

  .package-card {
    break-inside: avoid;
  }

  .modal-panel {
    max-height: none;
    box-shadow: none;
  }
}