/* ============================================================
   B1: Homepage Stylesheet
   Baan Khanitha Thai Cuisine Redesign (V2026)
   ============================================================ */

/* ------------------------------------------------------------
   1. HERO VIDEO BACKGROUND SECTION
   ------------------------------------------------------------ */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #0b111e;
  color: #ffffff;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.hero-video-desktop {
  display: block;
}
.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }
  .hero-video-mobile {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 30, 0.1) 30%,
    rgba(18, 28, 46, 0.5) 60%,
    rgba(11, 17, 30, 0.5) 70%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 100px 24px 80px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 140, 43, 0.18);
  border: 1px solid rgba(212, 140, 43, 0.45);
  color: #F7D59A;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(39, 43, 100, 0.4);
  transition: all var(--transition-smooth);
}

.btn-hero-primary:hover {
  background-color: #353b85;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 43, 100, 0.6);
  color: #ffffff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  transition: all var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   1.5 BRAND STORY INTRO SECTION (B1 First Page Design)
   ------------------------------------------------------------ */
.story-intro-section {
  position: relative;
  background-color: #ffffff;
  padding: 80px 24px 70px;
  z-index: 5;
}

/* Decorative Flower Motifs matching Illustrator design */
.story-intro-flower-topleft {
  position: absolute;
  top: -65px;
  left: clamp(10px, 3.5vw, 50px);
  width: clamp(210px, 20vw, 320px);
  pointer-events: none;
  z-index: 6;
}

.story-intro-flower-topleft img {
  width: 100%;
  height: auto;
  display: block;
}

.story-intro-flower-bottomright {
  position: absolute;
  bottom: -75px;
  right: clamp(10px, 3.5vw, 50px);
  width: clamp(180px, 17vw, 260px);
  pointer-events: none;
  z-index: 6;
}

.story-intro-flower-bottomright img {
  width: 100%;
  height: auto;
  display: block;
}

/* Central Story Content */
.story-intro-container {
  position: relative;
  z-index: 7;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.story-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
  color: #272B64;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 820px;
}

/* Action Group: Button + Mini Blue Flower */
.story-intro-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-story-intro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #272B64;
  color: #ffffff !important;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 44px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(39, 43, 100, 0.32);
  transition: all var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.btn-story-intro:hover {
  background-color: #1a1e48;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(39, 43, 100, 0.48);
}

.story-intro-mini-flower {
  margin-top: 20px;
  width: clamp(115px, 11vw, 140px);
  display: flex;
  justify-content: center;
}

.story-intro-mini-flower img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .story-intro-flower-topleft {
    top: -40px;
    left: 10px;
    width: 180px;
    opacity: 0.85;
  }

  .story-intro-flower-bottomright {
    bottom: -45px;
    right: 10px;
    width: 150px;
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  .story-intro-section {
    padding: 60px 20px 50px;
  }

  .story-intro-flower-topleft {
    top: -25px;
    left: 5px;
    width: 120px;
    opacity: 0.6;
  }

  .story-intro-flower-bottomright {
    bottom: -25px;
    right: 5px;
    width: 105px;
    opacity: 0.6;
  }

  .story-intro-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .btn-story-intro {
    font-size: 0.95rem;
    padding: 11px 32px;
  }

  .story-intro-mini-flower {
    margin-top: 16px;
    width: 95px;
  }
}

/* ------------------------------------------------------------
   2. HERITAGE & BAAN PANALAI FARM SECTION
   ------------------------------------------------------------ */
.panalai-section {
  padding: 90px 20px;
  background-color: var(--color-bg-white);
  position: relative;
}

.panalai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.panalai-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.panalai-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.panalai-image-wrapper:hover img {
  transform: scale(1.03);
}

.panalai-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(18, 28, 46, 0.88);
  border: 1px solid var(--color-gold);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.panalai-badge-overlay span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.panalai-badge-overlay strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 20px;
}

.panalai-lead {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.panalai-body {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.panalai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.panalai-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.panalai-feat-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.panalai-feat-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: #222222;
}

/* ------------------------------------------------------------
   3. AWARDS & MILESTONES TIMELINE SECTION (B1 First Page.ai)
   ------------------------------------------------------------ */
.awards-section {
  position: relative;
  background-color: #E6E0D5;
  padding: 80px 20px 90px;
  overflow: hidden;
  z-index: 1;
}

/* Decorative Blue Rice Bowl on the left */
.awards-rice-bowl-decor {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: clamp(240px, 28vw, 420px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.awards-rice-bowl-decor img {
  width: 100%;
  height: auto;
  display: block;
}

.awards-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.awards-content-area {
  width: 100%;
  max-width: 760px;
  padding-left: 20px;
}

.awards-heading-wrap {
  margin-bottom: 36px;
  text-align: left;
}

.awards-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #272B64;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.awards-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #4A4E69;
  line-height: 1.6;
  max-width: 600px;
}

/* Five circular award badges */
.awards-badges-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: 36px;
}

.award-circle-badge {
  width: clamp(80px, 9vw, 115px);
  height: clamp(80px, 9vw, 115px);
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden;
}

.award-circle-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.award-badge-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
}

.award-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Horizontal Timeline Bar */
.awards-timeline-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-top: 15px;
  padding: 30px 0;
}

.awards-timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #272B64;
  transform: translateY(-50%);
  z-index: 1;
}

.awards-timeline-points {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.awards-timeline-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #272B64;
}

.timeline-year-label {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #272B64;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.timeline-label-top {
  bottom: 16px;
}

.timeline-label-bottom {
  top: 16px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .awards-section {
    padding: 70px 20px 80px;
  }

  .awards-rice-bowl-decor {
    left: -40px;
    width: 220px;
    opacity: 0.45;
  }

  .awards-content-area {
    max-width: 100%;
    padding-left: 0;
  }

  .awards-badges-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .awards-timeline-wrap {
    margin: 20px auto 0;
  }
}

@media (max-width: 600px) {
  .awards-rice-bowl-decor {
    display: none;
  }

  .awards-heading-wrap {
    text-align: center;
  }

  .awards-subtitle {
    margin: 0 auto;
  }

  .award-circle-badge {
    width: 72px;
    height: 72px;
    padding: 6px;
  }

  .awards-timeline-points {
    font-size: 0.75rem;
  }
}

/* ------------------------------------------------------------
   4. OFFERS & SEASONAL PROMOTIONS CAROUSEL
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   4. OFFERS SECTION – square image carousel
   ------------------------------------------------------------ */
.offers-section {
  padding: 70px 0 80px;
  background-color: var(--color-bg-white);
  overflow: hidden;
}

/* Header row: title + flower + "View All" button */
.offers-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: 40px;
}

.offers-heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offers-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
}

.offers-mini-flower {
  width: clamp(28px, 3vw, 42px);
  height: auto;
  flex-shrink: 0;
}

.btn-offers-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-offers-all:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* Carousel wrapper – full bleed, with arrow buttons */
.offers-carousel-wrapper {
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
}

.offers-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(24px, 5vw, 80px) 16px;
  /* hide scrollbar */
  scrollbar-width: none;
}

.offers-carousel::-webkit-scrollbar {
  display: none;
}

/* Each offer card – square 1:1 ratio */
.offer-slide-card {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

.offer-slide-img-wrap {
  width: 100%;
  height: 100%;
}

.offer-slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.offer-slide-card:hover .offer-slide-img-wrap img {
  transform: scale(1.04);
}

/* Navigation arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  line-height: 1;
  padding: 0;
}

.carousel-arrow:hover {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(39,43,100,0.22);
}

.carousel-arrow-prev {
  left: clamp(4px, 1.5vw, 22px);
}

.carousel-arrow-next {
  right: clamp(4px, 1.5vw, 22px);
}



/* ------------------------------------------------------------
   5. 7-BRANCH RESTAURANT DIRECTORY GRID
   ------------------------------------------------------------ */
.branches-section {
  padding: 90px 20px;
  background-color: var(--color-bg-light);
}

.branches-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.branches-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.branch-card {
  flex: 1 1 340px;
  max-width: 380px;
  width: 100%;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(39, 43, 100, 0.25);
}

.branch-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.branch-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.branch-card:hover .branch-img-container img {
  transform: scale(1.05);
}

.branch-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(18, 28, 46, 0.85);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.branch-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.branch-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.branch-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.branch-location svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.branch-summary {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.branch-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-branch-detail {
  flex: 1;
  text-align: center;
  padding: 9px 14px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-branch-detail:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-branch-reserve {
  flex: 1;
  text-align: center;
  padding: 9px 14px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-branch-reserve:hover {
  background-color: var(--color-gold);
}

/* ------------------------------------------------------------
   6. BAAN KHANITHA CRUISE SHOWCASE SECTION
   ------------------------------------------------------------ */
.cruise-showcase-section {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* Background Pattern SVG */
.cruise-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.cruise-bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cruise-container {
  position: relative;
  z-index: 2;
}

/* Top Header Area */
.cruise-top-header {
  margin-bottom: 40px;
  max-width: 900px;
}

.cruise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  border: 1px solid var(--color-gold);
  color: #F7D59A;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(39, 43, 100, 0.22);
}

.cruise-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.15;
}

.cruise-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: #4A4E69;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cruise-intro {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 780px;
}

/* Main 2-Column Grid */
.cruise-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/* Left Column: Video Showcase Player Frame */
.cruise-video-col {
  width: 100%;
}

.cruise-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(39, 43, 100, 0.18);
  background-color: #000;
}

.cruise-vdo-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cruise-vdo-desktop {
  display: block;
}

.cruise-vdo-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cruise-vdo-desktop {
    display: none;
  }
  .cruise-vdo-mobile {
    display: block;
  }
}

/* Right Column: Content + Flower + Buttons */
.cruise-info-col {
  display: flex;
  flex-direction: column;
}

.cruise-right-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.cruise-right-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cruise-right-title span {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  text-transform: none;
  display: block;
  margin-top: 4px;
}

.cruise-flower-icon {
  width: clamp(68px, 8vw, 110px);
  height: auto;
  flex-shrink: 0;
}

.cruise-body-p {
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  color: #4A4E69;
  line-height: 1.65;
  margin-bottom: 16px;
}

.cruise-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.cruise-actions .btn-hero-secondary {
  background: var(--color-gold); /* #D48C2B Rich Gold Accent */
  color: #ffffff;
  border: 1px solid #B3721E;
  padding: 12px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 140, 43, 0.3);
}

.cruise-actions .btn-hero-secondary:hover {
  background: #B3721E;
  border-color: #985E14;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 140, 43, 0.45);
}

@media (max-width: 900px) {
  .cruise-grid {
    grid-template-columns: 1fr;
  }
  .cruise-top-header {
    margin-bottom: 28px;
  }
}

/* Cruise Schedule Trigger Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.is-active {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 620px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-dropdown);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  line-height: 1;
  color: #888888;
  cursor: pointer;
  border: none;
  background: none;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: #111111;
}

.cruise-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cruise-schedule-table th {
  background: var(--color-primary);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.9rem;
  text-align: left;
}

.cruise-schedule-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
  color: #333333;
}

.cruise-schedule-table tr:nth-child(even) td {
  background-color: #faf8f5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .panalai-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .panalai-image-wrapper img {
    height: 380px;
  }
  .offers-carousel-wrapper{
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 640px) {
  .hero-video-section {
    min-height: 75vh;
  }
  .cruise-video-section {
    min-height: 70vh;
  }
  .hero-content, .cruise-content {
    padding: 70px 16px 50px;
  }
  .panalai-features {
    grid-template-columns: 1fr;
  }
  .offers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .offers-carousel-wrapper{
    padding-left: 30px;
    padding-right: 30px;
  }
}
