/* =========================================================
   MODERN THEME WITH MOTION
   ========================================================= */

:root {
  --text-primary: #173F35;
  --text-secondary: #53615B;
  --text-muted: #6C756F;
  --text-on-dark: #FFFFFF;
  --text-on-accent: #173F35;

  --surface: #F8F4EA;
  --surface-white: #FFFFFF;
  --surface-beige: #F1E8D5;
  --surface-sand: #E9DFC8;

  --dark-surface: #173F35;
  --dark-surface-alt: #245548;

  --accent: #D6A84F;
  --accent-hover: #A94F2C;

  --border: rgba(38, 51, 43, 0.16);

  --transition-fast: 0.2s cubic-bezier(0.16, 0.8, 0.3, 1);
  --transition-medium: 0.4s cubic-bezier(0.16, 0.8, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}

/* =========================================================
   LOADING SCREEN
   ========================================================= */

#page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #0F2A24 0%, #173F35 40%, #1E4D42 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

#page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(214,168,79,0.08) 0%, transparent 60%);
  pointer-events: none;
}

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.loader-logo {
  width: 300px;
  height: auto;
  margin: 0 auto 20px;
}

.loader-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.loader-brand {
  margin-bottom: 15px;
}

.loader-brand-main {
  color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.loader-brand-sub {
  color: var(--accent);
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.loader-track {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.loader-bar {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  animation: loaderSlide 1.4s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.loader-text {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   BASE
   ========================================================= */

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

p {
  margin: 0;
  line-height: 1.65;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   UTILITIES
   ========================================================= */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 22px;
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.27s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.33s; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  display: block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

#nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(248, 244, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-medium), background var(--transition-medium);
}

#nav.scrolled {
  box-shadow: 0 8px 24px rgba(23, 63, 53, 0.08);
  background: rgba(248, 244, 234, 0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1 !important;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-size: 25px;
  line-height: 1.1;
  color: var(--text-primary);
}

.brand-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.75;
  position: relative;
  padding: 4px 0;
  cursor: pointer;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover {
  opacity: 1;
  color: var(--text-primary);
}

.nav-link.active {
  opacity: 1;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

#mobile-menu .btn-amber {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 18px 22px;
  border-top: 1px solid var(--border);
  background: rgba(248, 244, 234, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#mobile-menu.open {
  display: flex;
  animation: slideDown 0.3s ease;
}

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

#mobile-menu a {
  padding: 13px 4px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--transition-fast), color var(--transition-fast);
}

#mobile-menu a:hover {
  padding-left: 8px;
  color: var(--accent);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .brand-logo {
    width: 90px;
  }
  .brand-text {
    font-size: 20px;
  }
  .brand-text span {
    font-size: 7px;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), 
              background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 63, 53, 0.18);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--dark-surface);
  color: #FFFFFF !important;
}

.btn-primary:hover {
  background: var(--dark-surface-alt);
  color: #FFFFFF !important;
}

.btn-amber {
  background: var(--accent);
  color: var(--text-on-accent) !important;
}

.btn-amber:hover {
  background: var(--accent-hover);
  color: #FFFFFF !important;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #FFFFFF !important;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
}

.btn-outline-dark {
  border-color: var(--dark-surface);
  color: var(--dark-surface) !important;
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--dark-surface);
  color: #FFFFFF !important;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 12px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  background: var(--dark-surface);
  color: #fff;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 0 104px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(36px, 6.5vw, 84px);
  color: #fff;
  letter-spacing: -0.01em;
  max-width: 840px;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-ctas {
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 0.9s cubic-bezier(0.16, 0.8, 0.3, 1) forwards;
}

.hero-content .eyebrow { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.22s; }
.hero-content .hero-sub { animation-delay: 0.4s; }
.hero-content .hero-ctas { animation-delay: 0.55s; }

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes driftGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-14px, 10px) scale(1.08); opacity: 0.75; }
}

@keyframes driftLayer {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

.hero-glow {
  animation: driftGlow 9s ease-in-out infinite;
  transform-origin: center;
}

.hero-layer-back {
  animation: driftLayer 16s ease-in-out infinite;
}

.hero-layer-mid {
  animation: driftLayer 12s ease-in-out infinite reverse;
}

.hero-sub {
  font-size: 17px;
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.1s ease-out;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  top: 40px;
  right: clamp(24px, 5vw, 56px);
  z-index: 3;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 0.6s both;
}

.hero-badge b {
  display: block;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
   margin-top: 4px;
 }

 .hero-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin: 18px 18px 18px -30px;
  display: block;
  animation: fadeIn 1s ease 0.3s both;
}

  @media (max-width: 640px) {
  .hero-logo {
    width: 220px;
    margin: 18px 18px 18px -40px;
  }
 }

 @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero .wrap {
  padding: 0 clamp(28px, 7vw, 90px);
}

@media (max-width: 640px) {
  .hero-badge {
    display: none;
  }
  .hero-content {
    padding: 64px 0 72px;
  }
  .hero .wrap {
    padding: 0 26px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */

section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 12px;
}

.section-head p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-secondary);
}

/* Grid with centered alignment */
.grid-center {
  align-items: center;
}

/* Button with top margin */
.btn-mt {
  margin-top: 22px;
}

/* Card art with custom height */
.card-art-large {
  height: 280px;
}

.card-art-xlarge {
  height: 320px;
}

/* Empty block with max width */
.empty-block-centered {
  max-width: 560px;
  margin: 0 auto;
}

/* Hero CTAs centered */
.hero-ctas-centered {
  justify-content: center;
  margin-top: 24px;
}

.hero-ctas-mt {
  margin-top: 26px;
}

/* Card with max width */
.card-max {
  max-width: 640px;
}

/* Map block text */
.map-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* Form row with top margin */
.form-row-mt {
  margin-top: 20px;
}

/* Step title centered */
.step-title-centered {
  text-align: center;
}

/* Ref box label */
.ref-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.bg-forest {
  background: var(--dark-surface);
  color: #fff;
}

.bg-forest h2,
.bg-forest h3,
.bg-forest h4 {
  color: #fff;
}

.bg-beige {
  background: var(--surface-beige);
}

.bg-sand {
  background: var(--surface-sand);
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  flex: 1 1 220px;
  padding: 26px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.trust-item:hover {
  background: rgba(214, 168, 79, 0.05);
  transform: translateY(-2px);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================================================
   CARDS
   ========================================================= */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), 
              border-color var(--transition-medium);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 32px rgba(23, 63, 53, 0.14);
  border-color: rgba(36, 85, 72, 0.28);
}

.card-art {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E3D34 0%, #41695B 100%);
  background-size: cover;
  background-position: center;
}

.card-art > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.card:hover .card-art > div {
  transform: scale(1.06);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-body h3 {
  font-size: 21px;
}

.card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.status-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.status-available {
  background: #E5F0EA;
  color: #285D45;
}

.status-soon {
  background: #F5E8C8;
  color: #73520F;
}

.status-hidden {
  background: #EEEEEE;
  color: #888888;
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-item {
  background: var(--surface);
  padding: 32px 22px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.why-item:hover {
  background: var(--surface-white);
  transform: translateY(-2px);
}

.why-item .num {
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.why-item h4 {
  font-size: 18px;
  margin: 14px 0 8px;
  color: var(--text-primary);
}

.why-item p {
  font-size: 13.5px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PACKAGE CARDS
   ========================================================= */

.pkg-card {
  background: var(--surface-white);
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-radius: 14px;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), 
              border-color var(--transition-medium);
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(23, 63, 53, 0.14);
  border-color: rgba(36, 85, 72, 0.28);
}

.pkg-route {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--text-primary);
}

.pkg-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.pkg-meta b {
  color: var(--text-primary);
  font-weight: 500;
}

.pkg-note {
  font-size: 12px;
  color: #73520F;
  background: #F5E8C8;
  padding: 6px 10px;
  border-radius: 10px;
}

.pkg-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.diff-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--surface-sand);
  color: var(--text-primary);
  align-self: flex-start;
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-chip {
  padding: 9px 18px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  background: var(--surface-white);
  transition: all var(--transition-fast);
}

.gallery-chip:hover {
  background: var(--surface-beige);
  transform: translateY(-1px);
}

.gallery-chip.active {
  background: var(--dark-surface);
  color: #FFFFFF;
  border-color: var(--dark-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gallery-tile {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1E3D34 0%, #41695B 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  cursor: pointer;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.gallery-tile > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-medium);
}

.gallery-tile:hover > div {
  transform: scale(1.06);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TESTIMONIALS / EMPTY
   ========================================================= */

.empty-block {
  border: 1px dashed var(--border);
  padding: 56px 30px;
  text-align: center;
  border-radius: 10px;
  background: var(--surface-white);
  max-width: 560px;
  margin: 0 auto;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.empty-block:hover {
  border-color: var(--accent);
  background: var(--surface-white);
}

.empty-block h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.empty-block p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.testimonial-card {
  background: var(--surface-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 20px 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8B5E3C);
  color: var(--text-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-heading);
}

.testimonial-trip {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  background: var(--accent);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(23, 63, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

.cta-band p {
  margin-top: 12px;
  font-size: 15px;
  color: #263A32;
  position: relative;
  z-index: 1;
}

.cta-band .hero-ctas {
  justify-content: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition-fast);
}

.contact-row:hover {
  transform: translateX(4px);
}

.contact-row .ic {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dark-surface);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.contact-row:hover .ic {
  transform: scale(1.1);
  background: var(--dark-surface-alt);
}

.contact-row b {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-row span {
  font-size: 16px;
  font-weight: 600;
}

.contact-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(23, 63, 53, 0.06);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-block {
  background: var(--dark-surface);
  color: #fff;
  padding: 34px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(214, 168, 79, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 26px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, 0.3), transparent);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-grid h4 {
  color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.foot-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.foot-grid h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.foot-grid:hover h4::after {
  width: 40px;
}

.foot-grid a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.foot-grid a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.foot-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  position: relative;
  z-index: 1;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: #fff;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */

#wa-float {
  position: fixed;
  bottom: 26px;
  right: 20px;
  z-index: 600;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  border: none;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

#wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

#wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.6s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

#wa-float svg {
  width: 26px;
  height: 26px;
  transition: transform var(--transition-fast);
}

#wa-float:hover svg {
  transform: scale(1.1);
}

#scroll-top {
  position: fixed;
  bottom: -30%;
  right: 26px;
  z-index: 600;
  width: 42px;
  height: 42px;
  font-size: 20px;
  border-radius: 50%;
  color: var(--text-on-accent);
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom var(--transition-medium);
  text-decoration: none;
}

#scroll-top.scrollUpBtn-active {
  bottom: 26px;
}

#scroll-top .scrollUp-icon {
  opacity: 0.95;
  transition: opacity var(--transition-fast);
}

#scroll-top:hover .scrollUp-icon {
  opacity: 1;
}

#scroll-top:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

/* =========================================================
   PAGES
   ========================================================= */

.page {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page.active {
  display: block;
  opacity: 1;
}

/* =========================================================
   BOOKING MODAL
   ========================================================= */

#booking-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#booking-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

#booking-modal {
  background: #FFFFFF;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  padding: 0;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(23, 63, 53, 0.25);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 0.8, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 0;
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-surface-alt) 100%);
  z-index: 10;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, 0.3), transparent);
}

#booking-close {
  position: relative;
  top: auto;
  right: auto;
  background: var(--accent);
  border: none;
  font-size: 18px;
  color: var(--text-on-accent) !important;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

#booking-close:hover {
  background: var(--accent-hover);
  color: #FFFFFF !important;
  transform: scale(1.1);
}

.steps-bar {
  display: flex;
  gap: 6px;
  flex: 1;
  margin-right: 12px;
}

.step-dot {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.step-dot.done {
  background: var(--accent);
}

.step-dot.active {
  background: rgba(255, 255, 255, 0.4);
}

.step-dot.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  animation: stepProgress 1.5s ease-in-out infinite;
}

@keyframes stepProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  background: #FFFFFF;
}

.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: #FFFFFF;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.modal-footer .btn-outline-dark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent) !important;
}

.modal-footer .btn-outline-dark:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #FFFFFF !important;
}

.step-label {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.step-title {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
  font-family: 'Fraunces', serif;
}

.step-header {
  margin-bottom: 14px;
}

.form-row {
  margin-bottom: 14px;
  position: relative;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #FFFFFF;
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 520px) {
  .form-2col {
    grid-template-columns: 1fr;
  }
}

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

.option-item {
  border: 2px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--surface-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.option-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--transition-fast);
}

.option-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 63, 53, 0.1);
}

.option-item:hover::before {
  transform: scaleY(1);
}

.option-item.selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, #FBF4E3 0%, #F1E8D5 100%);
  box-shadow: 0 8px 20px rgba(214, 168, 79, 0.18);
  transform: translateY(-1px);
}

.option-item.selected::before {
  transform: scaleY(1);
}

.option-item .option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  background: #FFFFFF;
}

.option-item.selected .option-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1;
}

.option-item b {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.modal-nav .btn {
  flex: 1;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 12px;
}

.summary-row span {
  color: var(--text-secondary);
  font-weight: 500;
}

.summary-row b {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.error-text {
  color: #A34732;
  font-size: 13px;
  margin-top: 8px;
  padding: 10px 14px;
  background: #FEF2F2;
  border-radius: 8px;
  border-left: 3px solid #A34732;
  line-height: 1.5;
}

.step-helper {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.55;
  padding: 12px;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5F0EA 0%, #D4E5D9 100%);
  color: #285D45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  animation: scaleIn 0.5s cubic-bezier(0.16, 0.8, 0.3, 1);
  box-shadow: 0 4px 12px rgba(40, 93, 69, 0.15);
}

.empty-block {
  text-align: center;
  padding: 24px 20px;
  background: var(--surface);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px dashed var(--border);
}

.empty-block h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.empty-block p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ref-box {
  background: linear-gradient(135deg, var(--surface-beige) 0%, var(--surface-sand) 100%);
  padding: 16px;
  text-align: center;
  border-radius: 10px;
  margin: 16px 0;
  border: 1px solid rgba(214, 168, 79, 0.2);
}

.ref-box b {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

@media (max-width: 640px) {
  #booking-modal {
    max-height: 95vh;
    border-radius: 12px;
  }
  
  .modal-header {
    padding: 8px 14px;
  }
  
  .steps-bar {
    gap: 6px;
    margin-right: 12px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-footer {
    padding: 16px 20px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .option-item {
    padding: 14px;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-text + .about-text {
  margin-top: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Smooth scroll offset for sticky nav */
section[id] {
  scroll-margin-top: 80px;
}

/* Selection color */
::selection {
  background: var(--accent);
  color: var(--text-on-accent);
}

/* Focus visible */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(193, 102, 58, 0.55);
  outline-offset: 3px;
}

/* =========================================================
   ANIMATED ELEMENTS
   ========================================================= */

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse 3s ease-in-out infinite;
}

/* Stagger animation for grid items */
.stagger-fade-in > * {
  opacity: 0;
  animation: staggerIn 0.6s cubic-bezier(0.16, 0.8, 0.3, 1) forwards;
}

.stagger-fade-in.in-view > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-fade-in.in-view > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-fade-in.in-view > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-fade-in.in-view > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-fade-in.in-view > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-fade-in.in-view > *:nth-child(6) { animation-delay: 0.3s; }

@keyframes staggerIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax effect for hero */
.hero-scene {
  will-change: transform;
}

/* Smooth image loading */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded {
  opacity: 1;
}

/* Loading shimmer for cards */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.card:hover::before {
  left: 100%;
}

/* =========================================================
   LIGHTBOX / IMAGE VIEWER
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
}
.lightbox.open {
  display: flex;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  padding: 8px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.lightbox-close:hover {
  opacity: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  padding: 16px 12px;
  border-radius: 4px;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.lightbox-prev {
  left: 18px;
}
.lightbox-next {
  right: 18px;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
}
.lightbox-content:active {
  cursor: grabbing;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transition: transform 0.15s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10001;
}
.lightbox-zoom {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 4px;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
}
.lightbox-zoom:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.lightbox-counter {
  color: #fff;
  font-size: 14px;
  opacity: 0.85;
  min-width: 60px;
  text-align: center;
}

#lightbox-img {
  opacity: 1 !important;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}


