/* HOMEPAGE CSS */

/* Force light mode regardless of OS/device dark mode setting */
:root {
  color-scheme: only light;
}
.hero-slide,
.bg-card-img img,
.dm-tile img,
.intl-card-img img,
.pkg-card-img img,
.offer-card-img img {
  will-change: transform;
  transform: translateZ(0);
}

.bg-card,
.dm-tile,
.intl-card,
.pkg-card,
.offer-card,
.why-card {
  contain: layout style paint;
}

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .38) 55%, rgba(0, 0, 0, .18) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
  max-width: 780px;
  text-align: center;
  width: 90%;
  transition: opacity 0.6s ease;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber-light);
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(0, 0, 0, .45);
  padding: 5px 18px;
  border-left: 3px solid var(--amber);
  border-radius: 0 3px 3px 0;
  font-family: var(--font-body);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.12;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, .65);
  margin-bottom: 26px;
  font-family: var(--font-display);
}

.hero-content.transitioning {
  opacity: 0;
}

.btn-book-now {
  background: var(--amber);
  color: white;
  border: none;
  padding: 14px 38px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background .2s ease, transform .15s ease;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .45);
  font-family: var(--font-display);
}

.btn-book-now:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

.hero-brush {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-brush svg {
  display: block;
  width: 100%;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 220px;
  justify-content: flex-end;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: all .2s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.25);
}

.bg-cards-section {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 0 32px;
}

.bg-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bg-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  transition: box-shadow .3s ease, transform .3s ease;
}

.bg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .28);
}

.bg-card-img {
  position: absolute;
  inset: 0;
}

.bg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.bg-card:hover .bg-card-img img {
  transform: scale(1.06);
}

.bg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 4, 2, .92) 0%, rgba(10, 4, 2, .52) 38%, rgba(10, 4, 2, .10) 70%, transparent 100%);
  transition: background .3s ease;
}

.bg-card:hover .bg-card-overlay {
  background: linear-gradient(to top, rgba(78, 11, 21, .96) 0%, rgba(78, 11, 21, .58) 42%, rgba(0, 0, 0, .08) 76%, transparent 100%);
}

.bg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--amber), var(--amber-light));
  z-index: 6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.bg-card:hover::before {
  transform: scaleX(1);
}

.bg-card-content {
  position: relative;
  z-index: 5;
  padding: 32px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amber);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 5px 15px;
  border-radius: 20px;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(176, 125, 40, .45);
}

.bg-card-title {
  font-size: 26px;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
  max-width: 400px;
}

.bg-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bg-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 500;
}

.bg-card-meta-item i {
  color: var(--amber-light);
  font-size: 11px;
}

.bg-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  color: var(--crimson);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 12px 26px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .22);
  width: fit-content;
}

.bg-card-btn:hover {
  background: var(--amber);
  color: white;
  transform: translateX(4px);
}

.bg-card-btn i {
  font-size: 11px;
  transition: transform .2s ease;
}

.bg-card-btn:hover i {
  transform: translateX(3px);
}

.video-section {
  background: var(--beige-light);
  padding: 44px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.video-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  align-items: center;
}

.video-content-left {
  padding-right: 20px;
}

.video-content-left h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: var(--font-display);
}

.video-content-left h2 span {
  color: var(--crimson);
}

.video-content-left p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-feature i {
  width: 38px;
  height: 38px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  flex-shrink: 0;
}

.video-feature span {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

.video-cta-btn {
  background: var(--amber);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all .2s ease;
  box-shadow: 0 4px 12px rgba(201, 146, 58, .3);
  font-family: var(--font-display);
}

.video-cta-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

/* Outer container: video on top, controls bar below */
.video-outer {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  background: #000;
  display: flex;
  flex-direction: column;
}

/* Inner video box only — no controls inside */
.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── Fake fullscreen — works on iOS Safari + all browsers ── */
body.video-fake-fs-active {
  overflow: hidden;
}

#videoWrapper.fake-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
}

#videoWrapper.fake-fullscreen .video-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

#videoWrapper.fake-fullscreen .video-wrapper video {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: calc(100vh - 60px); /* leave room for controls bar */
  aspect-ratio: unset;
  object-fit: contain;
}

#videoWrapper.fake-fullscreen .video-controls {
  flex-shrink: 0;
  width: 100%;
}

#videoWrapper.fake-fullscreen .video-play-overlay {
  pointer-events: all;
}

/* Keep the old native fullscreen rules as a fallback for desktop */
.video-wrapper:fullscreen,
.video-wrapper:-webkit-full-screen,
.video-wrapper:-moz-full-screen,
.video-wrapper:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.video-wrapper:fullscreen video,
.video-wrapper:-webkit-full-screen video,
.video-wrapper:-moz-full-screen video,
.video-wrapper:-ms-fullscreen video {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  aspect-ratio: unset;
  object-fit: contain;
  margin: auto;
}

/* === Exit Fullscreen Button (visible inside fullscreen) === */
.btn-exit-fullscreen {
  display: none; /* hidden by default */
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  background: rgba(20, 20, 20, 0.78);
  color: white;
  border: 1.5px solid var(--amber);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 18px rgba(0,0,0,.45);
  transition: background .2s ease, transform .15s ease;
}

.btn-exit-fullscreen.visible {
  display: flex;
}

.btn-exit-fullscreen:hover {
  background: var(--crimson);
  transform: scale(1.04);
}

.btn-exit-fullscreen i {
  font-size: 13px;
  color: var(--amber-light);
}

/* Hover X close icon on the video wrapper in fullscreen */
.video-wrapper:fullscreen .video-play-overlay,
.video-wrapper:-webkit-full-screen .video-play-overlay {
  pointer-events: all;
}



.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  transition: opacity .3s ease;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.btn-play-video {
  background: rgba(78, 11, 21, .82);
  color: white;
  border: 2px solid var(--amber);
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  pointer-events: all;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 3px 16px rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
}

.btn-play-video:hover {
  background: var(--crimson);
  transform: scale(1.04);
}

.btn-play-video i {
  font-size: 14px;
  color: var(--amber-light);
}

/* Controls bar — sits permanently BELOW the video, never overlaps it */
.video-controls {
  width: 100%;
  background: #1a1a1a;
  padding: 8px 14px 10px;
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

.video-progress-wrap {
  width: calc(100% - 4px);
  height: 4px;
  background: rgba(255, 255, 255, .25);
  border-radius: 4px;
  margin-bottom: 10px;
  margin-left: 2px;
  margin-right: 2px;
  cursor: pointer;
  position: relative;
  transition: height .15s ease;
  user-select: none;
}

.video-progress-wrap:hover {
  overflow: visible;
}

.video-progress-wrap:hover {
  height: 6px;
}

.video-progress-wrap.dragging {
  height: 6px;
}

.video-progress-wrap.dragging .video-progress-thumb {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.25);
}

.video-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--amber), var(--amber-light));
  border-radius: 4px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}

.video-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: var(--amber);
  border-radius: 50%;
  left: 0%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, .4);
}

.video-progress-wrap:hover .video-progress-thumb {
  opacity: 1;
}

.video-controls-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 17px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background .15s ease;
  flex-shrink: 0;
}

.vc-btn:hover {
  background: rgba(255, 255, 255, .15);
}

.vc-btn-fs {
  width: auto;
  gap: 6px;
  padding: 0 10px;
}

.vc-time {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.vc-volume-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, .3);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  /* filled portion (before thumb) will be set via JS */
}

.vc-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.vc-volume-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: none;
}

.vc-volume-slider::-moz-range-progress {
  background: var(--amber);
  border-radius: 4px;
  height: 4px;
}

.vc-spacer {
  flex: 1;
}

.section {
  padding: 60px 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.section-divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(to right, var(--crimson), var(--amber));
  border-radius: 2px;
  margin: 0 auto 12px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.section-title span {
  color: var(--crimson);
}

.section-title .gold {
  color: var(--amber);
}

.section-desc {
  text-align: center;
  font-size: 17px;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.dest-section {
  padding: 70px 0 80px;
  background: var(--beige-light);
  position: relative;
  overflow: hidden;
}

.dest-section-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.dest-header {
  text-align: center;
  margin-bottom: 52px;
}

.dest-header .section-divider {
  background: linear-gradient(to right, var(--crimson), var(--amber));
}

.dest-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.dest-header h2 span {
  color: var(--crimson);
}

.dest-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.dest-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.dest-mosaic .dm-1 { grid-column: 1 / 5;  grid-row: 1 / 3; }
.dest-mosaic .dm-2 { grid-column: 5 / 9;  grid-row: 1; }
.dest-mosaic .dm-3 { grid-column: 9 / 13; grid-row: 1; }
.dest-mosaic .dm-4 { grid-column: 5 / 7;  grid-row: 2; }
.dest-mosaic .dm-5 { grid-column: 7 / 9;  grid-row: 2; }
.dest-mosaic .dm-6 { grid-column: 9 / 11; grid-row: 2; }
.dest-mosaic .dm-7 { grid-column: 11 / 13; grid-row: 2; }

.dm-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.dm-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.dm-tile:hover img {
  transform: scale(1.08);
}

.dm-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .3) 45%, transparent 100%);
  transition: background .3s ease;
}

.dm-tile:hover::after {
  background: linear-gradient(to top, rgba(107, 15, 30, .92) 0%, rgba(107, 15, 30, .5) 50%, rgba(0, 0, 0, .1) 100%);
}

.dm-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 20px 18px 16px;
}

.dm-tag {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 7px;
}

.dm-name {
  font-size: 16px;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  margin-bottom: 6px;
}

.dm-1 .dm-name {
  font-size: 24px;
}

.dm-pkg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  transition: background .2s ease;
}

.dm-tile:hover .dm-pkg {
  background: rgba(176, 125, 40, .7);
}

.dm-pkg i {
  font-size: 9px;
}

.dm-hot-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(176, 125, 40, .45);
}

.dm-hot-badge i {
  font-size: 10px;
}

.dest-view-all {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.btn-view-all {
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
  padding: 14px 42px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
}

.btn-view-all:hover {
  background: var(--amber);
  color: white;
  transform: translateY(-2px);
}

.btn-view-all i {
  font-size: 13px;
}

.intl-section {
  background: var(--white);
}

.intl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.intl-card {
  background: white;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(78, 11, 21, .09);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.intl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 34px rgba(78, 11, 21, .18);
}

.intl-card-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.intl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.intl-card:hover .intl-card-img img {
  transform: scale(1.05);
}

.intl-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--crimson);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intl-card-body {
  padding: 12px 14px 14px;
}

.intl-card-body .intl-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
  font-family: var(--font-display);
}

.intl-card-body .intl-sub {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 6px;
}

.stars {
  color: var(--amber);
  font-size: 13px;
}

.star-empty {
  color: #ddd;
}

.themed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pkg-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(78, 11, 21, .08);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(78, 11, 21, .17);
}

.pkg-card-img {
  height: 152px;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}

.pkg-card-body {
  padding: 14px;
}

.pkg-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 5px;
}

.pkg-duration {
  font-size: 13px;
  color: var(--crimson);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 11px;
}

.btn-more-info {
  background: var(--crimson);
  color: white;
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s ease;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-more-info:hover {
  background: var(--crimson-dark);
}

.btn-more-info i {
  font-size: 11px;
}

.offers-section {
  background: linear-gradient(160deg, var(--beige-light) 0%, var(--white) 100%);
  padding: 60px 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.offer-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(78, 11, 21, .09);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(78, 11, 21, .18);
}

.offer-card-img {
  height: 168px;
  overflow: hidden;
  position: relative;
}

.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.offer-card:hover .offer-card-img img {
  transform: scale(1.05);
}

.offer-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--amber);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-card-body {
  padding: 14px;
}

.offer-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.offer-category {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 7px;
}

.offer-stars {
  color: var(--amber);
  font-size: 14px;
}

.offer-card {
  text-decoration: none;
  color: inherit;
  display: block;
}


.why-section {
  background: var(--crimson-dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.why-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.why-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-header .section-divider {
  background: linear-gradient(to right, var(--amber), var(--amber-light));
}

.why-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.why-header h2 span {
  color: var(--amber-light);
}

.why-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: background .3s ease, transform .3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-5px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(176, 125, 40, .35);
}

.why-icon i {
  font-size: 26px;
  color: white;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

@media (max-width: 1200px) {
  .dest-mosaic {
    grid-template-rows: 200px 200px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .video-section-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-content-left {
    padding-right: 0;
  }

  .video-features {
    align-items: flex-start;
  }

  .intl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .dest-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 175px 175px;
  }

  .dest-mosaic .dm-1 { grid-column: 1 / 4; grid-row: 1 / 3; }
  .dest-mosaic .dm-2 { grid-column: 4 / 7; grid-row: 1; }
  .dest-mosaic .dm-3 { grid-column: 4 / 7; grid-row: 2; }
  .dest-mosaic .dm-4 { grid-column: 1 / 3; grid-row: 3; }
  .dest-mosaic .dm-5 { grid-column: 3 / 5; grid-row: 3; }
  .dest-mosaic .dm-6 { grid-column: 5 / 7; grid-row: 3; }
  .dest-mosaic .dm-7 { display: none; }
}

@media (max-width: 852px) {
  .bg-cards-grid {
    grid-template-columns: 1fr;
  }

  .themed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    height: 420px;
  }

  .hero-title {
    font-size: 38px;
  }

  .bg-card {
    min-height: 260px;
  }

  .bg-card-title {
    font-size: 22px;
  }

  .dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 165px 165px 165px;
  }

  .dest-mosaic .dm-1 { grid-column: 1 / 3; grid-row: 1; }
  .dest-mosaic .dm-2 { grid-column: 1; grid-row: 2; }
  .dest-mosaic .dm-3 { grid-column: 2; grid-row: 2; }
  .dest-mosaic .dm-4 { grid-column: 1; grid-row: 3; }
  .dest-mosaic .dm-5 { grid-column: 2; grid-row: 3; }
  .dest-mosaic .dm-6 { grid-column: 1; grid-row: 4; }
  .dest-mosaic .dm-7 { grid-column: 2; grid-row: 4; display: block; }

  .dm-1 .dm-name {
    font-size: 20px;
  }

  .dest-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .bg-cards-section,
  .video-section-inner,
  .section-inner,
  .dest-section-inner,
  .offers-section .section-inner,
  .why-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ── Video section mobile fix ── */
  .video-section {
    margin-top: 32px;
    padding: 32px 0;
  }

  .video-section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-content-left h2 {
    font-size: 26px;
  }

  .video-content-left p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .video-features {
    gap: 10px;
    margin-bottom: 20px;
  }

  .video-feature i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .video-feature span {
    font-size: 14px;
  }

  .video-cta-btn {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }

  /* Video player: full width, proper aspect ratio, no clipping */
  .video-outer {
    border-radius: 10px;
    width: 100%;
  }

  .video-wrapper video {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
  }

  /* Controls bar: tighter, no overflow */
  .video-controls {
    padding: 6px 10px 8px;
  }

  .video-controls-row {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .vc-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .vc-time {
    font-size: 10px;
  }

  /* Hide volume slider on small phones — mute button stays */
  .vc-volume-slider {
    display: none;
  }

  /* Shrink fullscreen button — icon only, hide label */
  .vc-btn-fs {
    padding: 0 8px;
    gap: 4px;
  }

  #fsLabel {
    display: none;
  }

  .vc-spacer {
    flex: 1;
  }

  .intl-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .themed-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero {
    height: 360px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-content {
    max-width: 90%;
  }

  .bg-card {
    min-height: 220px;
  }

  .bg-card-title {
    font-size: 18px;
  }

  .bg-card-content {
    padding: 22px 20px 20px;
  }

  .dest-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .dest-mosaic .dm-1,
  .dest-mosaic .dm-2,
  .dest-mosaic .dm-3,
  .dest-mosaic .dm-4,
  .dest-mosaic .dm-5,
  .dest-mosaic .dm-6,
  .dest-mosaic .dm-7 {
    grid-column: 1;
    grid-row: auto;
    height: 180px;
  }

  .dm-1 .dm-name {
    font-size: 18px;
  }
}
/* HOMEPAGE CSS END */