:root {
  --pri: #065f2c;
  /* Forest Green from image */
  --cream: #fefbea;
  /* Warm Cream from image */
  --cyan: #cbed85;
  /* Pale Lime from image */
  --lime: #cbed85;
  --gold: #f7941d;
  /* Vibrant Mango from image */
  --white: #ffffff;
  --txt: #1b3022;
  --txt-light: #4b6354;
  --font-main: "Outfit", sans-serif;
  --font-heading: "Playfair Display", serif;
  --dark: #000;
}

* {
  box-sizing: border-box;
}

body.bali-premium {
  font-family: var(--font-main);
  color: var(--txt);
  background-color: var(--cream);
  overflow-x: hidden;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
.premium-h {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Navigation */
.p-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--pri);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.p-logo img {
  height: 40px;
}

.p-nav-links {
  display: flex;
  gap: 30px;
}

.p-nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.p-nav-links a:hover {
  color: var(--lime);
}

.p-nav-cta {
  background: linear-gradient(135deg, #f7941d 0%, #ffbd1c 50%, #f7941d 100%);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.2);
  text-decoration: none;
  display: inline-block;
}

.p-nav-cta:hover {
  background: linear-gradient(135deg, #ffbd1c 0%, #ffe066 50%, #ffbd1c 100%);
  transform: scale(1.05);
  color: var(--white) !important;
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.3);
}

.p-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.p-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.p-nav-toggle span:nth-child(1) {
  top: 0;
}

.p-nav-toggle span:nth-child(2) {
  top: 9px;
}

.p-nav-toggle span:nth-child(3) {
  top: 18px;
}

.p-nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.p-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.p-nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.p-hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  background: var(--cream);
}

.p-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: calc(40% - 2px);
  /* Overlap to prevent sub-pixel gaps */
  z-index: 1;
}

.p-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.p-hero-overlay {
  position: absolute;
  inset: 0;
  /* Darker teal-tinted gradient on left to make white text pop, blending into cream on right */
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    var(--cream) 60%,
    var(--cream) 100%
  ),
  linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 30%
  ); */
  z-index: 2;
}

.p-hero-content {
  position: relative;
  z-index: 10;
  flex: 0 0 60%;
  padding: 150px 80px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-hero-tag {
  background: var(--pri);
  color: var(--white);
  padding: 5px 15px;
  display: inline-block;
  width: fit-content;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.p-hero-eyebrow {
  color: var(--gold);
  /* Changed from lime to gold */
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--pri);
  /* White text for contrast on dark overlay */
  /* text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.p-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  /* Changed from lime to gold */
  position: relative;
  top: 0;
}

.p-hero-content h1 em::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 12%;
  background: var(--gold);
  border-radius: 6px;
  z-index: -1;
  background-color: #ffffff;
  bottom: 10px;
}

.p-hero-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.p-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pri);
}

.p-hero-price-box {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 40px;
  background: #f8ffe999;
  width: fit-content;
  padding: 10px 10px 0;
  backdrop-filter: blur(18px);
  border-radius: 10px;
  flex-direction: column;
}

.p-price-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--pri);
  opacity: 0.8;
  margin-bottom: -25px;
}

.p-price-main {
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  /* Changed from lime to gold */
  font-family: var(--font-heading);
  /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

.p-price-details {
  display: flex;
  flex-direction: column;
}

.p-price-note {
  font-size: 14px;
  color: var(--dark);
  opacity: 0.9;
}

.p-price-was {
  font-size: 18px;
  /* text-decoration: line-through; */
  color: #424242;
  opacity: 0.7;
}

/* Features Strip - Bottom Left */
.p-features-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: calc(40% - 2px);
  /* Overlap to prevent sub-pixel gaps */
  background: var(--pri);
  display: flex;
  padding: 20px 50px;
  z-index: 20;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.p-feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.p-feat-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.p-feat-text h5 {
  font-size: 15px;
  margin: 0;
  color: var(--white);
}

.p-feat-text p {
  font-size: 12px;
  margin: 0;
  opacity: 0.7;
}

/* Form Panel - Right Side */
.p-form-panel {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  flex: 0 0 40%;
  background: var(--cream);
  border-left: 1px solid rgba(0, 106, 113, 0.1);
  z-index: 50;
  padding: 100px 40px 120px;
  /* Increased bottom padding to clear border */
}

/* Decorative Top Border on Panel */
.p-form-panel::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
  height: 115px;
  background: url("assets/images/border-top.png") no-repeat center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
  background-size: cover;
}

/* Decorative Bottom Border on Panel */
.p-form-panel::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 115px;
  background: url("assets/images/border-bottom.png") no-repeat center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

#fbform {
  position: relative;
  padding: 20px 0;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 20px; */
}

.p-form-head {
  margin: 10px 0;
  text-align: center;
}

.p-form-head h3 {
  font-size: 1.7rem;
  /* Smaller */
  color: var(--pri);
  margin-bottom: 5px;
}

.p-form-head p {
  color: var(--txt-light);
  font-size: 14px;
}

.p-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  /* Reduced gap */
}

.p-form-full {
  grid-column: span 2;
}

.p-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* Reduced gap */
}

.p-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pri);
}

.p-input,
.p-select,
.nice-select.p-select {
  background: rgba(255, 255, 255, 0.8);
  /* Slightly more solid */
  border: 1px solid rgba(0, 106, 113, 0.3);
  padding: 0 12px;
  /* Horizontal padding only, height handles vertical */
  height: 40px;
  /* Fixed height for consistency */
  line-height: 38px;
  /* Align text vertically */
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.nice-select.p-select .current {
  line-height: 38px;
}

.p-input:focus,
.p-select:focus,
.nice-select.p-select:active,
.nice-select.p-select.open {
  outline: none;
  background: var(--white);
  border-color: var(--pri);
  box-shadow: 0 0 0 4px rgba(0, 106, 113, 0.1);
}

.p-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Reduced gap */
  margin-top: 5px;
}

.p-checkbox-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.p-checkbox-item input {
  margin-top: 4px;
  accent-color: var(--pri);
}

.p-checkbox-item label {
  font-size: 12px;
  color: var(--txt-light);
  line-height: 1.5;
}

.p-submit-btn {
  margin-top: 20px;
  background: linear-gradient(135deg, #f7941d 0%, #ffbd1c 50%, #f7941d 100%);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.p-submit-btn:hover {
  background: linear-gradient(135deg, #ffbd1c 0%, #ffe066 50%, #ffbd1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
}

/* Spacing for JS control */

.p-form-err {
  display: none;
  margin-bottom: 10px;
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* ===== PACKAGE SECTION — FULL WIDTH SPLIT ===== */
.p-package-section {
  display: flex;
  padding: 100px 0 0 0 !important;
  margin: 0;
  background: var(--cream);
  min-height: 700px;
}

/* LEFT — Info Panel */
.p-package-info {
  flex: 1;
  background: var(--cream);
  /* padding: 80px 60px 80px 8%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: flex-end; */
}

.p-package-info-inner {
  /* max-width: 520px; */
  width: 100%;
  padding: 0 50px;
}

.p-tag-dark {
  display: inline-block;
  background: #0d1b13;
  color: #d4a762;
  border: 1px solid #d4a762;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.p-package-info h2 {
  font-size: 3.8rem;
  line-height: 1.08;
  margin: 15px 0 20px;
  color: var(--pri);
}

.p-package-info p {
  font-size: 1.05rem;
  color: var(--txt-light);
  line-height: 1.75;
  margin-bottom: 30px;
}

.p-package-pricing {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.p-package-pricing .p-price-main {
  font-size: 3.5rem;
  color: var(--pri);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}

.p-tax-label {
  font-size: 13px;
  color: var(--txt-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.p-price-compare {
  font-size: 15px;
  color: var(--txt-light);
  margin-top: 8px;
}

.p-price-compare span {
  text-decoration: line-through;
  color: #e04040;
  font-weight: 600;
}

.p-package-cta {
  display: inline-flex;
  width: auto;
  padding: 15px 40px;
  text-decoration: none;
}

.p-btn-gold {
  background: linear-gradient(135deg, #f7941d 0%, #ffbd1c 50%, #f7941d 100%);
  color: var(--white);
  font-weight: 800;
  width: fit-content;
  padding: 16px 42px;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
  border: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.p-btn-gold:hover {
  background: linear-gradient(135deg, #ffbd1c 0%, #ffe066 50%, #ffbd1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
}

.p-package-disclaimer {
  margin-top: 25px;
  font-size: 12px !important;
  color: var(--txt-light);
  opacity: 0.55;
  font-style: italic;
  line-height: 1.5;
}

/* RIGHT — Inclusions Dark Panel */
.p-package-inclusions-wrapper {
  flex: 1.1;
  background: var(--pri);
  /* padding: 80px 8% 80px 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-inclusions-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 2;
  box-shadow: none;
}

.p-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}

.p-inclusion-item {
  text-align: center;
}

.p-inc-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid white;
}

.p-inc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.p-inclusion-item:hover .p-inc-img {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.p-inclusion-item:hover .p-inc-img img {
  transform: scale(1.05);
}

.p-inclusion-item h4 {
  font-size: 18px;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}

.p-inclusion-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* — Package Responsive — */
@media (max-width: 1400px) {
  .p-package-info {
    padding: 70px 40px 70px 5%;
  }

  .p-package-inclusions-wrapper {
    padding: 70px 5% 70px 40px;
  }
}

@media (max-width: 1200px) {
  .p-package-section {
    min-height: auto;
  }

  .p-package-info h2 {
    font-size: 3rem;
  }

  .p-package-pricing .p-price-main {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .p-package-section {
    flex-direction: column;
  }

  .p-package-info {
    text-align: center;
    align-items: center;
    padding: 70px 25px;
  }

  .p-package-info-inner {
    max-width: 600px;
  }

  .p-package-pricing .p-price-main {
    justify-content: center;
  }

  .p-package-inclusions-wrapper {
    padding: 60px 25px;
    justify-content: center;
  }

  .p-inclusions-box {
    max-width: 100%;
  }

  .p-package-section {
    padding: 30px 0 0 0 !important;
  }
}

@media (max-width: 575px) {
  .p-inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 10px;
  }

  .p-package-info h2 {
    font-size: 2.5rem;
  }

  .p-package-pricing .p-price-main {
    font-size: 2.2rem;
    flex-wrap: wrap;
  }

  .p-inclusion-item h4 {
    font-size: 24px;
  }

  .p-inclusion-item p {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .p-package-grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .p-package-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .p-package-info h2 {
    font-size: 2.8rem;
  }

  .p-package-pricing .p-price-main {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .p-inclusions-grid {
    grid-template-columns: 1fr;
  }
}

/* Sections Styling */
.p-section {
  padding: 100px 50px;
  background: var(--cream);
}

.p-section#resorts {
  padding-bottom: 0;
}

.p-section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-section-head h2 {
  font-size: 3.5rem;
  color: var(--pri);
  margin-bottom: 15px;
}

.p-section-head p {
  font-size: 18px;
  color: var(--txt-light);
  line-height: 1.6;
}

/* Resorts Block */
.p-resort-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.p-resort-stack {
  width: 55%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.p-img-main {
  width: 85%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-img-main img {
  width: 100%;
  display: block;
}

.p-img-sub {
  position: absolute;
  width: 50%;
  right: -5%;
  bottom: -15%;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
  overflow: hidden;
}

.p-img-sub img {
  width: 100%;
  display: block;
}

.p-resort-content {
  width: 45%;
}

.p-resort-type {
  display: inline-block;
  background: var(--cyan);
  color: var(--pri);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  /* margin-bottom: 20px; */
}

.p-resort-content h3 {
  font-size: 2.8rem;
  color: var(--pri);
  margin-bottom: 20px;
}

.p-resort-content p {
  color: var(--txt-light);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
}

.p-resort-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-resort-inclusions span {
  background: var(--cyan);
  color: var(--pri);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.p-resort-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 10;
}

/* Reverse layout logic */
.p-resort-block.reverse {
  flex-direction: row;
}

.p-resort-block.reverse .p-resort-stack {
  order: 2;
  justify-content: flex-end;
}

.p-resort-block.reverse .p-img-sub {
  right: auto;
  left: -5%;
}

@media (max-width: 991px) {

  .p-resort-block,
  .p-resort-block.reverse {
    flex-direction: column;
    gap: 60px;
  }

  .p-resort-stack,
  .p-resort-content {
    width: 100%;
  }

  .p-img-sub {
    width: 45%;
    bottom: -10%;
  }
}

/* Itinerary */
.p-itin {
  background: var(--pri);
  color: var(--white);
  padding: 100px 50px;
}

.p-itin .p-section-head h2 {
  color: var(--lime);
}

.p-itin .p-section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.p-day-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  gap: 40px;
}

.p-day-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--lime);
  opacity: 0.5;
  line-height: 1;
}

.p-day-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--lime);
}

.p-day-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Footer */
.p-footer {
  background: #004d52;
  color: var(--white);
  padding: 80px 50px 30px;
}

.p-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.p-footer h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--lime);
}

.p-footer-links {
  list-style: none;
  padding: 0;
}

.p-footer-links li {
  margin-bottom: 12px;
}

.p-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.p-footer-links a:hover {
  color: var(--lime);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .p-hero-content {
    width: 55%;
    padding: 120px 50px;
  }

  .p-form-panel {
    width: 45%;
    padding: 120px 40px;
  }

  .p-features-strip {
    /* width: 55%; */
    padding: 25px 30px;
  }

  .p-hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .p-nav {
    padding: 15px 25px;
  }

  .p-nav-toggle {
    display: block;
  }

  .p-nav-cta {
    display: none;
  }

  .p-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--pri);
    flex-direction: column;
    padding: 100px 40px;
    transition: all 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    gap: 25px;
  }

  .p-nav-links.active {
    right: 0;
  }

  /* Show a special version of Book Now in the sidebar */
  .p-nav-links .p-nav-cta {
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  .p-hero {
    position: relative;
    display: block;
    /* Remove flex to allow natural flow of sub-sections */
    height: auto;
    overflow: visible;
  }

  .p-hero-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    z-index: 1;
  }

  .p-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    content: url("assets/images/bali-banner5.jpg");
  }

  .p-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%);
    z-index: 2;
  }

  .p-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 20;
    padding: 60px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: transparent !important;
    pointer-events: none;
    /* Allow clicking through to bg if needed, but buttons should have auto */
  }

  .p-hero-content>* {
    pointer-events: auto;
  }

  .p-hero-content h1 {
    font-size: 2.8rem;
    color: var(--white) !important;
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); */
    text-align: left;
    margin-bottom: 20px;
  }

  .p-hero-content h1 em::before {
    display: none;
  }

  .p-hero-meta {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
  }

  .p-hero-meta span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    padding: 8px 15px;
  }

  .p-hero-price-box {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    display: flex;
    background: none;
    backdrop-filter: none;
  }

  .p-price-main {
    color: var(--gold) !important;
    font-size: 3.2rem;
    text-shadow: none;
    line-height: 1;
  }

  .p-price-was,
  .p-price-note {
    color: var(--white) !important;
    opacity: 1;
    font-weight: 600;
  }

  .p-form-panel {
    position: relative;
    width: 100%;
    padding: 80px 25px 120px;
    background: var(--cream);
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 20;
  }

  .p-features-strip {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 25px;
    z-index: 20;
  }

  .p-feature-item {
    border: none;
    min-width: 0;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
  }

  .p-resort-block,
  .p-resort-block.reverse {
    flex-direction: column;
    gap: 50px;
  }

  .p-resort-stack {
    width: 100%;
  }

  .p-resort-content {
    width: 100%;
    text-align: center;
  }

  .p-resort-inclusions {
    justify-content: center;
  }

  .p-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .p-form-panel::before {
    top: 0px;
    height: 120px;
  }

  .p-form-panel::after {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .p-section {
    padding: 60px 20px;
  }

  .p-section-head h2 {
    font-size: 2.2rem;
  }

  .p-hero-content h1 {
    font-size: 2.8rem;
  }

  .p-price-main {
    font-size: 2.8rem;
  }

  .p-resort-content h3 {
    font-size: 2rem;
  }

  .p-img-sub {
    width: 55%;
    bottom: -10%;
    border-width: 5px;
  }

  .p-form-panel::before {
    height: 15%;
  }

  .p-form-panel::after {
    height: 15%;
  }
}

/* Responsive - Large PC/iMac View Refinements */
@media (min-width: 1600px) {
  body.bali-premium {
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  }

  .p-nav {
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px;
  }
}

/* Stacking Itinerary Section */
.p-itin-stacked {
  background: #e6ffb3;
  padding: 120px 0;
  position: relative;
}

.p-itin-cards-wrap {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding-bottom: 100px;
}

.p-itin-card {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  height: 550px;
  /* Fixed height for consistency */
}

.p-itin-card-inner {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition:
    filter 0.5s ease,
    transform 0.5s ease,
    opacity 0.5s ease;
}

.p-itin-img {
  width: 45%;
  position: relative;
}

.p-itin-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-day-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
  z-index: 10;
}

.p-itin-content {
  width: 55%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-itin-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-itin-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.p-itin-content h3 {
  font-size: 2.5rem;
  color: var(--pri);
  margin-bottom: 15px;
}

.p-itin-content p {
  color: var(--txt-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.p-itin-list {
  list-style: none;
  padding: 0;
}

.p-itin-list li {
  color: var(--txt);
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.p-itin-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.p-itin-list li.note {
  color: var(--gold);
  font-style: italic;
  font-size: 13px;
  opacity: 0.8;
}

.p-itin-list li.note::before {
  display: none;
}

/* Blur classes for JS */
.p-itin-blur {
  filter: blur(8px);
  opacity: 0.5;
  transform: scale(0.95);
}

@media (max-width: 991px) {
  .p-itin-card {
    height: auto;
    margin-bottom: 30px;
  }

  .p-itin-card-inner {
    flex-direction: column;
  }

  .p-itin-img,
  .p-itin-content {
    width: 100%;
  }

  .p-itin-img {
    height: 250px;
  }

  .p-itin-content {
    padding: 30px;
  }

  .p-itin-eyebrow {
    margin-bottom: 10px;
  }

  .p-itin-content h3 {
    font-size: 1.8rem;
  }
}

/* Gallery Section */
.p-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.p-tab-btn {
  background: transparent;
  border: 2px solid var(--pri);
  color: var(--pri);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.p-tab-btn.active,
.p-tab-btn:hover {
  background: var(--pri);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(6, 95, 44, 0.2);
}

.p-gallery-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.p-gallery-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.p-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.p-gal-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-gal-item.item-big {
  grid-row: span 2;
}

.p-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.p-gal-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.p-gal-item:hover img {
  transform: scale(1.1);
}

.p-gal-item:hover .p-gal-over {
  opacity: 1;
}

.p-gal-over span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

  .p-price-label {
    color: var(--white) !important;
    margin-bottom: 5px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .p-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .p-gal-item.item-big {
    grid-row: span 1;
  }
}

@media (max-width: 464px) {
  .p-form-panel {
    padding: 80px 15px 40px;
  }

  .p-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    display: block;
  }

  .p-form-head h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0 10px;
  }

  .p-form-panel::before {
    top: 50px;
    height: 68px;
  }

  .p-form-panel::after {
    bottom: -5px;
    height: 68px;
  }

  .p-field label {
    font-size: 10px;
  }

  .p-input,
  .p-select,
  .nice-select.p-select {
    height: 45px;
  }
}

/* ===== LOADER OVERLAY ===== */
.p-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-loader-content {
  text-align: center;
}

.p-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(6, 95, 44, 0.1);
  border-top: 4px solid var(--pri);
  border-radius: 50%;
  animation: p-spin 1s linear infinite;
  margin: 0 auto 20px;
}

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

.p-loader-content p {
  color: var(--pri);
  font-weight: 700;
  font-family: var(--font-main);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

/* ==========================================================================
   Flight Fare & Explore Offers Modals (Bali Premium Theme)
   ========================================================================== */

/* Fare Awareness Modal Styles */
.fare-modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  background-color: var(--cream);
}

.fare-icon {
  width: 80px;
  height: 80px;
  background: rgba(247, 148, 29, 0.1);
  color: var(--gold);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.fare-title {
  font-family: var(--font-heading);
  color: var(--pri);
  font-weight: 800;
  font-size: 26px;
}

.fare-text {
  font-size: 16px;
  color: var(--txt);
  line-height: 1.6;
}

.btn-fare {
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

.btn-yes {
  background: var(--pri);
  color: #fff;
  margin-bottom: 12px;
}

.btn-yes:hover {
  background: #043e1d;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 95, 44, 0.25);
}

.btn-no {
  background: rgba(6, 95, 44, 0.05);
  color: var(--pri);
}

.btn-no:hover {
  background: rgba(6, 95, 44, 0.1);
  transform: translateY(-2px);
}

/* Explore Other Offers Modal Styles */
.explore-modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  padding: 10px;
  background: var(--cream);
}

.explore-badge {
  background: rgba(6, 95, 44, 0.1);
  color: var(--pri);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-close-custom {
  width: 32px;
  height: 32px;
  background: rgba(6, 95, 44, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-light);
  font-size: 14px;
  border: none;
  transition: all 0.2s;
  float: right;
  margin-top: -10px;
}

.btn-close-custom:hover {
  background: rgba(6, 95, 44, 0.1);
  color: var(--pri);
}

.explore-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--pri);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.explore-subtitle {
  font-size: 16px;
  color: var(--txt-light);
  margin-bottom: 30px;
  line-height: 1.5;
}

.offers-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clickable-option {
  cursor: pointer;
  margin: 0;
  transition: all 0.3s ease;
}

.option-content {
  border: 2px solid rgba(6, 95, 44, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.clickable-option:hover .option-content {
  border-color: var(--gold);
  background: rgba(247, 148, 29, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 148, 29, 0.08);
}

.radio-circle {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(6, 95, 44, 0.3);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.clickable-option:hover .radio-circle {
  border-color: var(--gold);
}

.option-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.option-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--pri);
}

.option-desc {
  font-size: 14px;
  color: var(--txt-light);
  font-weight: 500;
}

#fareAwarenessModal .modal-dialog,
#exploreOffersModal .modal-dialog {
  max-width: 600px;
}

/* ===== MISSED CALL SECTION ===== */
.p-missed-call-section {
  background-color: var(--white);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-missed-call-title {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--pri);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.p-missed-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #032113;
  /* Very dark green/black matching the brand */
  color: var(--white) !important;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(3, 33, 19, 0.2);
  transition: all 0.3s ease;
}

.p-missed-call-btn:hover {
  background-color: var(--pri);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 33, 19, 0.3);
  color: var(--white) !important;
}

.p-missed-call-btn i {
  font-size: 16px;
  transform: rotate(15deg);
  /* Tilted look like the image */
}

@media (max-width: 576px) {
  .p-missed-call-section {
    padding: 30px 15px;
  }

  .p-missed-call-title {
    font-size: 20px;
  }

  .p-missed-call-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}