
@font-face {
  font-family: 'TAN Mon Cheri';
  src: url('fonts/tan-mon-cheri.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'a750 sans';
  src: url('fonts/a750-sans-condensed-light-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Agrandir';
  src: url('fonts/agrandir-grand-light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Red hat regular';
  src: url('fonts/red-hat-display-medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arimo Regular';
  src: url('fonts/arimo-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ================= PERFORMANCE OPTIMIZATIONS ================= */
img {
  content-visibility: auto;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= FAVICON STYLING ================= */
link[rel="icon"] {
  filter: drop-shadow(0 0 1Px rgba(0,0,0,0.2));
}

/* ================= BODY & BACKGROUND ================= */
html, body {
  width: 100%;
  MIN-height: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;

  background-image: url('picture/background.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Overlay for readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Navbar container */
.navbar {
  display: flex;
  gap: clamp(5px, 1.5vw, 20px); /* spacing between buttons */
  flex-wrap: nowrap;              /* keep all buttons in one row */
  width: 100%;
  justify-content: flex-end;
}

/* Navbar links */
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;

  font-size: clamp(10px, 2vw, 18px); /* responsive font */
  padding: clamp(4px, 1vw, 10px) clamp(8px, 2vw, 20px); /* responsive padding */
  border-radius: 6px;
  white-space: nowrap;  /* text never wraps */
  flex-shrink: 1;       /* allow shrinking */
  flex-grow: 0;         /* don’t grow too much */
  text-align: center;
  transition: 0.3s ease;
}

.navbar a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffc371;
}

.navbar a.active {
  background-color: #e16d24;
  color: #fff;
  font-weight: bold;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: absolute;
  top: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}

/* Logo - responsive */
.logo {
  width: clamp(80px, 20vw, 120px);
  margin-bottom: 10px;
}

/* ================= TITLE BAR ================= */
.title-bar {
  width: 100%;
  background: #263a5b;
  padding: clamp(5px, .5vw, 10px) 20px; /* responsive height */
}

/* Hero Title - responsive & single line */
.hero-title {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(28px, 5vw, 80px);
  color: white;
  font-weight: 300;
  letter-spacing: 2px;
  white-space: nowrap; /* never wrap */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-bottom: 5px;
}

/* Hero Subtitle - responsive */
.hero-subtitle {
  font-family: 'Arimo Regular' , serif;
  font-size: clamp(14px, 1.5vw, 20px) !important;
  color:  rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0px auto 5px auto;
  line-height: 1.6;
  padding: 0 10px;
  font-weight: 100;
}

/* ================= BOOK NOW BUTTON ================= */
.center-button {
  margin-top: clamp(80px, 3vw, 40px); /* spacing below title bar */
  text-align: center; /* center the link horizontally */
}

/* style the <a> tag as a button */
.center-button .book-btn {
  display: inline-block;
  font-size: clamp(14px, 1.5vw, 22px);
  padding: clamp(10px, 1vw, 20px) clamp(25px, 3vw, 55px);
  font-weight: bold;
  color: white;
  background-color: #e16d24;
  border: none;
  border-radius: 999px;
  text-decoration: none; /* remove underline */
  cursor: pointer;
  transition: 0.3s ease;
}

/* hover effect */
.center-button .book-btn:hover {
  background-color: #263a5b;
  color: #000;
  transform: scale(1.1);
}


/* ================= BOOK NOW CTA SECTION ================= */
.cta-book-section {
  background: url('picture/NEW_BACKGROUND_IMAGE.jpg') center center/cover no-repeat;
  padding: 56px 0 48px 0;
  text-align: center;
}
.cta-book-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(52,224,161,0.07);
  padding: 36px 20px 32px 20px;
}
.cta-book-container h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: 2rem;
  color: #263a5b;
  margin-bottom: 12px;
}
.cta-book-container p {
  color: #666;
  font-size: 1.15em;
  margin-bottom: 24px;
}
.cta-book-btn {
  display: inline-block;
  background: #e16d24;
  color: #fff;
  font-weight: bold;
  font-size: 1.15em;
  padding: 14px 38px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(225,109,36,0.13);
}
.cta-book-btn:hover {
  background: #263a5b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(38,58,91,0.18);
}
@media (max-width: 800px) {
  .cta-book-container {
    max-width: 98vw;
    padding: 20px 5vw 18px 5vw;
  }
  .cta-book-container h1 {
    font-size: 1.3rem;
  }
}

/* ================= RESPONSIVE FALLBACK ================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(17px, 5vw, 60px);
  }

  .hero-subtitle {
    font-size: clamp(12px, 3vw, 18px) !important;
    margin-top: 1px;
  }

  .center-button button {
    padding: 12px 30px;
    font-size: clamp(14px, 3vw, 20px);
  }

  /* Make header buttons smaller */
  .navbar a {
    font-size: clamp(8px, 2.5vw, 14px);      /* smaller font on phone */
    padding: clamp(2px, 0.8vw, 6px)          /* smaller top/bottom */
             clamp(4px, 1.5vw, 10px);        /* smaller left/right */
  }
}
/* ================= VERTICAL BACKGROUND SECTIONS ================= */
.section {
  width: 100%;              /* full width of the page */
  height: 50vh;             /* half of viewport height */
  background-repeat: no-repeat;  /* prevent repeating */
  background-position: center;   /* center image */
  background-size: cover;        /* fill section and maintain aspect ratio */
}

/* Top background image */
.section-top {
  background-image: url('picture/web bg.webp');
}


/* Bottom background section */
.section-bottom {
 position: relative;
  width: 100%;
  height: 50vh; /* height of bottom background */
  background-image: url('picture/crumpled paper (1).webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Unified crumpled paper background for sections */
.section-bottom,
.extra-section,
.tours-section,
.experience-section,
.tripadvisor-section,
.about-top,
.map-section {
  background-image: url('picture/crumpled paper (1).webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  margin: 0 !important;
}

/* Coron page background (exclude footer) */
.tour-selection-section,
.packages-section {
  background-image: url('picture/crumpled paper (1).webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Expedition page background (exclude footer) */
.coron-page-section {
  background-image: url('picture/crumpled paper (1).webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Contact page background (exclude footer) */
.contact-page-section,
.contact-section,
.contact-container,
.contact-wrapper {
  background-image: url('picture/crumpled paper (1).webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Overlay with vertical centering */
.bottom-overlay {
  position: absolute;
  top: 50%;             /* vertical center */
  left: 0;
  right: 0;
  transform: translateY(-50%); /* vertical centering only */

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 50px; /* horizontal space from edges */
  z-index: 2;
  gap: 50px; /* gap between image and text */
}

/* Left Image */
.bottom-image img {
  width: clamp(140px, 30vw, 440px) !important;
  max-width: 100%;
  flex-shrink: 1;
  margin-left: 0;
}

/* Right Text */
.bottom-text {
  max-width: 420px;
  flex-shrink: 1;
  color: rgb(5, 5, 5);
  margin-right: 0;
}

.bottom-text h2 {
  font-family:'TAN Mon Cheri', serif;
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 200;
  margin-bottom: 8px;
}
.bottom-text h3 {
  font-family:'TAN Mon Cheri', serif;
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 200;
  margin-bottom: 8px;
}

.bottom-text p {
  font-family:'Arimo Regular' , serif;
  font-size: clamp(12px, 1.5vw, 16px);
  color:#263a5b;
  line-height: 1.5;
  margin-bottom: 12px; /* adjust spacing */
  
}


/* ================= EXTRA SCROLL SECTION ================= */

.extra-section {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-left: 0;
  margin-right: 0;
  top: 8vh;
  text-align: center;
  background-image: url('picture/crumpled paper (1).webp') !important;
}
.extra-section h2{
  font-family:'TAN Mon Cheri', serif;
  font-style: italic;
  font-size: clamp(12px, 1.5vw, 20px);
  margin-bottom: 8px;
  margin-top: -20px;
}
.extra-section h3{
  font-family:'Arimo Regular' , serif;
  font-size: clamp(18px, 3.5vw, 48px);
  color:#263a5b;
  line-height: 1.5;
  margin-bottom: 12px; /* adjust spacing */
}


/* ================= TOURS SECTION ================= */
.tours-section {
  padding: 80px 20px;
  background: rgba(248, 248, 248, 0.3);
  text-align: center;
}

.tours-header {
  max-width: 1800px;
  margin: 0 auto 60px;
  text-align: left;
}

.tours-header h2 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(14px, 4vw, 36px);
  color: #263a5b;
  margin-bottom: 6px;
  font-style: italic;
}

.tours-header h3 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(12px, 3.2vw, 28px);
  color: #263a5b;
  margin-bottom: 1px;
  font-weight: 300;
  font-style: italic;
}

.tours-header p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(10px, 1.2vw, 18px);
  color: #555;
  margin-top: 0;
  line-height: 1.6;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-package {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tour-image {
  width: 100%;
  height: 250px;
  overflow: visible;
  border-radius: 8px;
  margin-bottom: 15px;
  position: relative;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-package:hover .tour-image img {
  transform: scale(1.05);
}

.tour-overlay-box {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #dbdbdb;
  border-radius: 50px;
  padding: 1px 5px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.15);
  width: fit-content;
  height: auto;
  z-index: 10;
}

.tour-info-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.tour-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.tour-icon {
  font-size: clamp(12px, 1.5vw, 14px);
  filter: grayscale(100%);
}

.tour-info-text {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(8px, 0.9vw, 12px);
  color: #263a5b;
  font-weight: bold;
}

.tour-package h4 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #263a5b;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 25px;
  text-align: left;
}

.tour-divider {
  width: 40px;
  height: 2px;
  background-color: #e16d24;
  margin: 10px 0 15px 0;
}

.tour-package p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.tour-price {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  color: #e16d24;
  font-weight: bold;
  text-align: left;
  margin-bottom: 15px;
}

.tour-book-btn {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  padding: 10px 20px;
  background-color: #e16d24;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: bold;
  display: block;
  text-align: center;
  text-decoration: none;
}

.tour-book-btn:hover {
  background-color: #263a5b;
  color: #fff;
  transform: scale(1.05);
}

/* ================= EXPERIENCE SECTION ================= */
.experience-section {
  padding: 80px 20px;
  text-align: center;
  
}

.index-experience-section {
  background-image: url('picture/beige.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.experience-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.experience-header h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(14px, 5vw, 34px);
  color: #263a5b;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
}

.experience-header h2 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(12px, 3vw, 32px);
  color: #666;
  font-weight: bold;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.experience-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.experience-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-column {
  justify-content: flex-start;
}

.right-column {
  justify-content: flex-start;
}

.experience-left {
  text-align: left;
}

.experience-right {
  text-align: left;
}

.center-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-column-hidden {
  visibility: hidden;
}

.center-column-hidden * {
  visibility: hidden;
}

.experience-item {
  text-align: center;
  padding: 0 10px;
}

.experience-icon {
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 15px;
  display: block;
}

.experience-item h3 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  color: #263a5b;
  margin-bottom: 12px;
  font-weight: normal;
}

.experience-item p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.experience-divider {
  width: 40px;
  height: 2px;
  background-color: #e16d24;
  margin: 20px auto 0;
}

/* ================= STACKING CAROUSEL ================= */
.photo-stack-container {
  padding: 20px 20px;
  margin: -40px 0 -40px 0;
  border-radius: 12px;
}

.photo-stack-container .gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.photo-stack-container .gallery-header h3 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  color: #263a5b;
  font-weight: normal;
}

.photo-stack-divider {
  width: 40px;
  height: 2px;
  background-color: #e16d24;
  margin: 30px auto 0;
}

.stack-carousel {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
  margin: 0 auto 30px;
  perspective: 1000px;
  touch-action: pan-y;
}

.stack-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: grab;
  user-select: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0) scale(1) rotateZ(0deg);
  opacity: 1;
  z-index: 1;
}

.stack-card:nth-child(2) {
  transform: translateY(12px) scale(0.95) rotateZ(5deg);
  opacity: 0.7;
  z-index: 0;
}

.stack-card:nth-child(3) {
  transform: translateY(24px) scale(0.9) rotateZ(-5deg);
  opacity: 0.4;
  z-index: -1;
}

.stack-card:nth-child(n+4) {
  transform: translateY(36px) scale(0.85) rotateZ(0deg);
  opacity: 0;
  z-index: -2;
  pointer-events: none;
}

.stack-card.swiped-right {
  animation: swipeOutRight 0.5s ease-out forwards;
}

.stack-card.swiped-left {
  animation: swipeOutLeft 0.5s ease-out forwards;
}

@keyframes swipeOutRight {
  to {
    transform: translateX(150%) rotateZ(25deg);
    opacity: 0;
  }
}

@keyframes swipeOutLeft {
  to {
    transform: translateX(-150%) rotateZ(-25deg);
    opacity: 0;
  }
}

.swipe-hint {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  color: #999;
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

.stack-controls {
  display: none;
}

@media (max-width: 1024px) {
  .experience-wrapper {
    gap: 60px;
    display: flex;
    flex-direction: column;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .left-column {
    order: 1;
  }

  .center-column {
    order: 2;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .center-column-hidden {
    display: none;
  }

  .right-column {
    order: 3;
  }
}

@media (max-width: 768px) {
  .stack-carousel {
    height: 400px;
    max-width: 300px;
  }

  .center-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .center-column-hidden {
    display: none;
  }

  .photo-stack-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stack-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .experience-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .experience-column {
    gap: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .experience-item {
    padding: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-section {
    padding: 60px 15px;
  }

  .experience-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .experience-column {
    align-items: center;
    text-align: center;
  }

  .experience-item {
    padding: 0 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .experience-item h3,
  .experience-item p {
    text-align: center;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tours-header {
    text-align: left;
    margin-bottom: 20px;
  }

  .tours-header h2 {
    text-align: left;
  }

  .tours-header h3 {
    text-align: left;
  }

  .tours-header p {
    text-align: left;
  }

  .tour-package h4 {
    text-align: left;
  }

  .tour-divider {
    margin-left: 0;
  }

  .tour-package p {
    text-align: left;
  }

  .tour-price {
    text-align: left;
  }
}


/* ================= CAROUSEL ================= */
.carousel-container {
  max-width: 1600px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 33.3333%;
  padding: 10px;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 14px;
}

/* Arrows */
.arrow {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.arrow:hover {
  background: rgba(0,0,0,0.85);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .slide {
    min-width: 100%;
  }

  .slide img {
    height: 260px;
  }
  @media (max-width: 768px) {
  .carousel-track {
    touch-action: pan-y;
  }
}
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1320px) {
  /* For tablets and small laptops */
  .bottom-overlay {
    padding: 0 clamp(20px, 5vw, 50px); /* responsive padding from edges */
    gap: clamp(20px, 5vw, 40px);       /* responsive gap between image & text */
  }

  .bottom-image img {
    width: clamp(160px, 30vw, 350px) !important; /* image shrinks/grows with screen */
    margin-left: 0;                   /* reset large desktop margin */
  }

  .bottom-text {
    max-width: clamp(150px, 35vw, 350px); /* text width adjusts */
    margin-right: 0;                     /* reset large desktop margin */
  }
   .bottom-text h2 {
    font-size: clamp(16px, 5vw, 30px);    /* responsive heading */
  }
  .bottom-text h3 {
    font-size: clamp(16px, 5vw, 30px);    /* responsive heading */
  }

  .bottom-text p {
    font-size: clamp(7px, 2.5vw, 14px);    /* responsive paragraph */
    margin-bottom: 10px; /* adjust spacing */
  }
  
}
/* ===== FORCE FIX FOR 1024x600 (Nest Hub) ===== */
@media (width: 1024px) and (height: 600px) {

  .bottom-image img {
    max-width: 240px;
  }

  .bottom-text {
    max-width: 280px !important;
  }

  .bottom-text h2 {
    font-size: 16px !important;
  }

  .bottom-text h3 {
    font-size: 16px !important;
  }

  .bottom-text p {
    font-size: 12px !important;
    line-height: 1 !important;
  }

  /* Center experience section on Nest Hub */
  .experience-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .experience-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .experience-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
  }

  .experience-item h3,
  .experience-item p {
    text-align: center;
  }

  .stack-carousel {
    height: 380px;
    max-width: 350px;
  }
}

/* ===== iPad & Tablet Devices (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Center experience section on iPads */
  .experience-wrapper {
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
  }

  .experience-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .experience-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .left-column,
  .right-column,
  .center-column {
    align-items: center;
    justify-content: center;
  }

  .center-column-hidden {
    display: none;
  }

  .experience-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 550px;
    width: 100%;
  }

  .experience-item h3,
  .experience-item p {
    text-align: center;
  }

  .stack-carousel {
    height: 450px;
    max-width: 380px;
  }
}

/* ===== Surface Duo (540px) & Small Phones ===== */
@media (max-width: 540px) {
  .bottom-overlay {
    padding: 0 10px;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .bottom-image img {
    width: clamp(90px, 35vw, 150px) !important;
    margin-left: 0;
  }

  .bottom-text {
    max-width: clamp(140px, 55vw, 240px);
    margin-right: 0;
  }

  .bottom-text h2 {
    font-size: clamp(11px, 3.8vw, 18px) !important;
    margin-bottom: 4px;
  }

  .bottom-text h3 {
    font-size: clamp(11px, 3.8vw, 18px) !important;
    margin-bottom: 4px;
  }

  .bottom-text p {
    font-size: clamp(8px, 2.2vw, 12px) !important;
    line-height: 1.3 !important;
    margin-bottom: 6px;
  }
}

/* ===== Microsoft Lumia 550 (640x360) ===== */
@media (width: 640px) and (height: 360px) {
  .bottom-overlay {
    padding: 0 8px;
    gap: 8px;
  }

  .bottom-image img {
    width: clamp(85px, 30vw, 130px) !important;
    margin-left: 0;
  }

  .bottom-text {
    max-width: clamp(140px, 56vw, 240px);
    margin-right: 0;
  }

  .bottom-text h2 {
    font-size: clamp(10px, 3.2vw, 17px) !important;
    margin-bottom: 3px;
  }

  .bottom-text h3 {
    font-size: clamp(10px, 3.2vw, 17px) !important;
    margin-bottom: 3px;
  }

  .bottom-text p {
    font-size: clamp(8px, 2vw, 11px) !important;
    line-height: 1.25 !important;
    margin-bottom: 4px;
  }
}

/* ===== Medium Phones (541px - 640px) ===== */
@media (max-width: 640px) and (min-width: 541px) {
  .bottom-overlay {
    padding: 0 12px;
    gap: 12px;
  }

  .bottom-image img {
    width: clamp(100px, 33vw, 160px) !important;
    margin-left: 0;
  }

  .bottom-text {
    max-width: clamp(150px, 52vw, 250px);
    margin-right: 0;
  }

  .bottom-text h2 {
    font-size: clamp(12px, 3.5vw, 20px) !important;
    margin-bottom: 5px;
  }

  .bottom-text h3 {
    font-size: clamp(12px, 3.5vw, 20px) !important;
    margin-bottom: 5px;
  }

  .bottom-text p {
    font-size: clamp(9px, 2.3vw, 13px) !important;
    line-height: 1.35 !important;
    margin-bottom: 6px;
  }
}

/* ===== Extra Small Phones (below 360px) ===== */
@media (max-width: 400px) {
  .bottom-overlay {
    padding: 0 8px;
    gap: 8px;
  }

  .bottom-image img {
    width: clamp(75px, 32vw, 120px) !important;
  }

  .bottom-text {
    max-width: clamp(130px, 58vw, 220px);
  }

  .bottom-text h2 {
    font-size: clamp(10px, 3.5vw, 16px) !important;
    margin-bottom: 3px;
  }

  .bottom-text h3 {
    font-size: clamp(10px, 3.5vw, 16px) !important;
    margin-bottom: 3px;
  }

  .bottom-text p {
    font-size: clamp(7px, 2vw, 10px) !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
  }
}



@media (max-width: 768px) {
  /* For phones and very small devices */
  .bottom-overlay {
    padding: 0 15px;                   /* smaller edge padding */
    gap: clamp(10px, 5vw, 25px);       /* smaller gap between image & text */
    flex-direction: row;                /* keep image and text in one row */
    justify-content: space-between;
    align-items: center;
  }

  .bottom-image img {
    width: clamp(120px, 40vw, 250px);  /* shrink image on small screens */
    margin-left: 0;                     /* no fixed margin */
  }

  .bottom-text {
    max-width: clamp(80px, 45vw, 180px); /* shrink text width */
    margin-right: 0;                       /* no fixed margin */
  }

  .bottom-text h2 {
    font-size: clamp(14px, 4.5vw, 26px);    /* responsive heading */
  }
  .bottom-text h3 {
    font-size: clamp(14px, 4.5vw, 26px);    /* responsive heading */
  }

  .bottom-text p {
    font-size: clamp(7px, 2.5vw, 12px);    /* responsive paragraph */
    margin-bottom: 10px; /* adjust spacing */
  }
  
}

/************ ---------- ABOUT PAGE ---------- ********/
.about-page {
  width: 100%;
  min-height: 100vh;         /* DESKTOP: allow content to expand */
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  overflow-y: auto;          /* DESKTOP: allow scroll */
}

/* First 3 sections = 1/3 of viewport each (DESKTOP ONLY) */
.about-page section.about-top,
.about-page section.about-bottom {
  min-height: 33.33vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Match index calendar section behavior on About page */
.about-page section.about-middle {
  min-height: auto;
  display: block;
  position: relative;
  text-align: center;
  overflow: visible;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Additional sections (like new-section) */
.about-page section:not(.about-top):not(.about-middle):not(.about-bottom) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* ================================================= */
/* ================= TOP SECTION =================== */
/* ================================================= */

.about-top {
  background-color: #dbdbdb;
  text-align: center;
}

.about-top h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  color: black;
  padding-top: 55px;
  margin-top: 0;
  margin-bottom: 0;
}

.about-top p {
  font-family: 'Arimo Regular', serif;
  font-size: clamp(14px, 1.5vw, 22px);
  color: #e16d24;
  max-width: 80%;
  margin: 0 auto;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  width: 95%;
  margin: 10px auto 0;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ================================================= */
/* ================= MIDDLE SECTION ================ */
/* ================================================= */

.about-middle {
  background-color: #263a5b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;            /* reduce top/bottom whitespace */
}

.about-middle H1 {
 font-family: 'TAN Mon Cheri', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  color: WHITE;
  padding-top: 20px;
  margin: 0 0 10px 0;          /* remove default top margin, small bottom gap */
  text-align: center;
}

/* Expedition calendar (custom) */
.expedition-calendar {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.expedition-calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.calendar-nav {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.calendar-nav:hover {
  background: rgba(225, 109, 36, 0.85);
  transform: translateY(-1px) scale(1.05);
}

.calendar-month {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #fff;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.expedition-calendar-weekdays {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  color: #fff;
  padding: 6px 4px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-size: 0.78em;
  letter-spacing: 0.08em;
}

.expedition-calendar-weekdays span {
  padding: 4px 0;
}



.expedition-calendar-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
}

.calendar-day {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 2px;
  min-height: 90px;
  padding: 10px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transition: transform 0.15s ease, background 0.2s ease;
}

.calendar-day--muted {
  background: transparent;
  box-shadow: none;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.calendar-day--blocked {
  background: rgba(255, 255, 255, 0.3);
  color: #cfcfcf;
  box-shadow: none;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

.calendar-day--available {
  background: #ffffffe0;
}

.calendar-day--available:hover {
  transform: translateY(-2px);
  background: #fffdf8;
}

.calendar-day--fully-booked {
  background: #ffffffe0;
  cursor: not-allowed;
  opacity: 0.85;
}

.calendar-day--fully-booked:hover {
  background: #fff9e6;
}

.calendar-day--past {
  background: #ffffffe0;
  cursor: not-allowed;
  opacity: 0.85;
  border: 1px solid #ffcccb;
}

.calendar-day--past:hover {
  background: #fff5f5;
}

.calendar-day-number {
  font-weight: 600;
  color: #263a5b;
}

.calendar-day--blocked .calendar-day-number {
  color: #cfcfcf;
}

.calendar-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-left: 2px;
}

.dot-with-remark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.calendar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.route-coron {
  background: #e16d24;
}

.route-elnido {
  background: #34e0a1;
}

.route-blocked {
  background: #cfcfcf;
}

.expedition-calendar-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
  color: #fff;
  margin-top: 6px;
}

.legend-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.fully-booked {
  opacity: 1;
}

.fully-booked-text {
  font-size: 0.7em;
  color: #ff6b6b;
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}

.available-travel-text {
  font-size: 0.7em;
  color: #2b5d7d;
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}

.travel-completed-text {
  font-size: 0.7em;
  color: #8d5a2b;
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .expedition-calendar {
    padding: 10px 8px;
    gap: 8px;
  }

  .expedition-calendar-weekdays {
    font-size: 0.62em;
    letter-spacing: 0.02em;
    padding: 4px 2px;
  }

  .expedition-calendar-weekdays span,
  .calendar-day,
  .expedition-calendar-grid {
    min-width: 0;
  }

  .calendar-day {
    min-height: 78px;
    padding: 6px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .calendar-day-number {
    font-size: 0.8rem;
  }

  .calendar-dots {
    gap: 2px;
    padding-left: 0;
  }

  .dot-with-remark {
    gap: 1px;
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-dot {
    width: 7px;
    height: 7px;
  }

  .available-travel-text,
  .travel-completed-text,
  .fully-booked-text {
    font-size: 0.5em;
    margin-left: 0;
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.1;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  .calendar-day {
    min-height: 72px;
    padding: 4px 3px;
  }

  .calendar-day-number {
    font-size: 0.74rem;
  }

  .available-travel-text,
  .travel-completed-text,
  .fully-booked-text {
    font-size: 0.46em;
  }
}

.dates-loading,
.dates-error {
  grid-column: 1 / -1;
  text-align: center;
  color: #fff;
}

.calendar-wrapper {
  width: 40%;
  height: 24vh;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.calendar-wrapper iframe {
  width: 100%;
  height: calc(100% + 20px);
  border: none;
  border-radius: 5px;
  margin-bottom: -1px;
}

/* ================================================= */
/* ================= BOTTOM SECTION ================ */
/* ================================================= */

.about-bottom {
  background-color: #e16d24;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  padding: 40px 0;
}

/* H2 */
.about-bottom h2 {
  font-family: 'TAN Mon Cheri', serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 40px);
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 65px;
}

/* CONTENT ROW */
.about-bottom-content {
  width: 100%;
  display: flex;
  align-items: center;
}

/* TEXT */
.about-bottom-text {
  flex: 1.5;
  max-width: 1100px;
  padding-left: 90px;
  padding-right: 40px;
  font-family: 'Arimo Regular', serif;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.about-bottom-text h3 {
  font-weight: bold;
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 22px);
  text-align: left;
  margin-bottom: 15px;
}

.about-bottom-text p {
  font-size: clamp(13px, 1.1vw, 16px);
  text-align: left;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* IMAGE */
.about-bottom-image {
  flex: 1;
  padding-left: 0;
  padding-right: 40px;
  padding-top: 0;
  margin-top: -40px;
}

.about-bottom-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= MAP SECTION ================= */
.map-section {
  background: #f7f7f7;
  text-align: center;
  padding: 50px 20px;
  align-items: stretch;
}

.map-section h2 {
  font-family: 'TAN Mon Cheri', serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  color: #263a5b;
  margin: 0 0 10px 0;
}

.map-section p {
  font-family: 'Arimo Regular', sans-serif;
  color: #666;
  margin: 0 0 20px 0;
}

.map-embed {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  height: auto;
  line-height: 0;
}

.map-interactive {
  position: relative;
  background: url('picture/crumpled paper (1).webp') center/cover no-repeat;
  height: auto;
  width: 100%;
  display: block;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%);
  width: 28px;
  height: 36px;
  background: url('icon/map pin.png') center/contain no-repeat;
  border-radius: 0;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
}

.map-pin::after {
  content: none;
}

.map-pin:hover {
  transform: translate(-50%, -100%) scale(1.08);
}

.map-popup {
  position: absolute;
  transform: translate(-50%, -110%);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  width: 180px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 5;
}

.map-popup.active {
  display: block;
}

.map-popup img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
}

.map-popup-img-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.map-popup-img-overlay.active {
  display: flex;
}

.map-popup-img-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.map-popup-img-overlay .overlay-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-popup-img-overlay .overlay-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.map-popup h3 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(11px, 2.2vw, 14px);
  line-height: 1.2;
  color: #263a5b;
  margin: 8px 0 0 0;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.map-popup-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
}

/* ================================================= */
/* ========== TABLET & MOBILE (SCROLLABLE) ========= */
/* ================================================= */

@media (max-width: 1024px) {

  /* 🔥 ENABLE SCROLL */
  .about-page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .about-page section.about-top,
  .about-page section.about-bottom {
    min-height: auto;        /* remove fixed height on tablet/mobile */
    padding: 40px 20px;
  }

  .about-page section.about-middle {
    min-height: auto;
    padding: 10px 0;
  }

  .about-page section:not(.about-top):not(.about-middle):not(.about-bottom) {
    padding: 40px 20px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar-wrapper {
    width: 90%;
    height: 60%;
  }

  .about-bottom-text {
    padding-left: 60px;
  }

  .about-bottom-image {
    padding-left: 120px;
  }

  .about-bottom-image img {
    max-width: 320px;
  }
}

/* ================================================= */
/* ================= PHONE ONLY ==================== */
/* ================================================= */

@media (max-width: 768px) {

  .about-top h1 {
    padding-top: 20px;
  }

  .about-top p {
    text-align: center;
  }

  .about-middle H1 {
    padding-top: 20px;
  }

  .about-middle p {
    text-align: center;
  }

  .calendar-wrapper {
    width: 95%;
    height: 200px;
  }

  .calendar-wrapper iframe {
    height: calc(100% + 15px);
    margin-bottom: -80px;
  }

  .about-bottom {
    padding: 40px 20px;
  }

  .map-pin {
    width: 10px;
    height: 16px;
  }

  .about-bottom h2 {
    padding-top: 20px;
    text-align: center;
    width: 100%;
  }

  .about-bottom-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-bottom-text {
    padding: 0;
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .about-bottom-text h3,
  .about-bottom-text p {
    text-align: center;
  }

  .about-bottom-image {
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-bottom-image img {
    max-width: 260px;
  }
}
/* ================= UNIVERSAL MOBILE GAP REDUCTION ================= */
@media (max-width: 768px) {
  /* Reduce padding and margins across all sections */
  .experience-section,
  .tours-section,
  .extra-section {
    padding: 40px 15px;
  }

  /* Reduce gaps in all grids and containers */
  .tours-grid,
  .experience-grid {
    gap: 15px;
  }

  /* Reduce gaps between items */
  .tour-package,
  .experience-item {
    margin-bottom: 5px;
  }

  /* Reduce padding in items */
  .tour-package {
    padding: 12px;
  }

  /* Reduce header margins */
  .tours-header,
  .experience-header {
    margin-bottom: 20px;
  }

  /* Reduce divider margins */
  .experience-divider,
  .tour-divider,
  .photo-stack-divider {
    margin: 10px auto 0;
  }
}

/* ================= WHATSAPP FLOAT BUTTON ================= */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 40px;
  height: 40px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2147483647 !important;
  overflow: visible;
  outline: none;
}


.whatsapp-float i {
  font-size: 20px;
  color: white;
}

.whatsapp-label {
  position: absolute;
  right: 50px;
  bottom: 5px;
  background: white;
  padding: 5px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  font-family: 'Arimo Regular', sans-serif;
  font-size: 10px;
  color: #333;
  white-space: nowrap;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
  line-height: 1.2;
}

.chat-bold {
  font-weight: bold;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  bottom: 35px;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
}

/* Floating Back Button */
.back-float {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #263a5b;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 2147483647;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-float:hover {
  background: #e16d24;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

/* ================= WHATSAPP MODAL ================= */
.whatsapp-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.whatsapp-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: slideIn 0.3s ease;
  position: relative;
}

.whatsapp-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.whatsapp-modal-close:hover {
  color: #000;
}

.whatsapp-modal-content h3 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: 24px;
  color: #263a5b;
  margin: 0 0 15px 0;
}

.whatsapp-modal-content p {
  font-family: 'Arimo Regular', serif;
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
}

.whatsapp-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Arimo Regular', serif;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-number:hover {
  background-color: #20ba5a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-number i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .whatsapp-float i {
    font-size: 20px;
  }

  .whatsapp-label {
    right: 40px;
    bottom: 3px;
    font-size: 9px;
    padding: 5px 7px;
  }

  .whatsapp-modal-content {
    max-width: 65vw;
    padding: 30px 30px;
  }

  .whatsapp-modal-content h3 {
    font-size: 24px;
  }

  .whatsapp-number {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* ================= BOOKING SUCCESS MODAL ================= */
.booking-success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.booking-success-modal.active {
  display: flex;
}

.booking-success-content {
  background: white;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
}

.success-icon {
  font-size: 70px;
  color: #25d366;
  margin-bottom: 20px;
}

.booking-success-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Red hat regular', serif;
}

.booking-success-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.success-btn {
  background: #e16d24;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.success-btn:hover {
  background: #c9571f;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .booking-success-content {
    padding: 40px 25px;
    margin: 20px;
  }

  .booking-success-content h2 {
    font-size: 24px;
  }

  .booking-success-content p {
    font-size: 14px;
  }

  .success-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}

/* ================= TRIPADVISOR SECTION & REVIEWS ================= */
.tripadvisor-section {
  background: rgba(255, 255, 255, 0.75);
  padding: 60px 0 40px 0;
  margin: 0 auto;
}
.tripadvisor-header {
  text-align: center;
  margin-bottom: 32px;
}
.tripadvisor-main-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.tripadvisor-header h2 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: 2rem;
  color: #263a5b;
  margin: 0 0 8px 0;
}
.tripadvisor-header p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
}
.tripadvisor-link-container {
  text-align: center;
  margin: 30px 0;
}

.tripadvisor-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00A699 0%, #008B82 100%);
  color: white;
  text-decoration: none;
  font-size: 1.05em;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 166, 153, 0.3);
}

.tripadvisor-direct-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 166, 153, 0.4);
  background: linear-gradient(135deg, #008B82 0%, #006B63 100%);
}

.tripadvisor-widget-container {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin-top: 40px;
}
.tripadvisor-widget-container iframe {
  width: 100% !important;
  min-width: 340px;
  max-width: 900px;
  height: 600px;
  border-radius: 12px;
  border: 1px solid #eee;
  display: block;
  margin: 0 auto;
}
.tripadvisor-widget-note {
  font-size: 0.95em;
  color: #888;
  margin-top: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tripadvisor-swipe-hint {
  text-align: center;
  color: #888;
  font-size: 0.95em;
  margin-top: 10px;
}
.tripadvisor-reviews-swipe {
  max-width: 700px;
  width: 100%;
  margin: 32px auto 0 auto;
}
@media (max-width: 900px) {
  .extra-section {
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }
}
.tripadvisor-review-card {
  min-width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 20px;
  scroll-snap-align: start;
  position: relative;
  transition: box-shadow 0.2s;
}
.tripadvisor-review-card:hover {
  box-shadow: 0 4px 16px rgba(52,224,161,0.18);
}
.tripadvisor-review-card .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tripadvisor-review-card .review-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tripadvisor-review-card .review-profile img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #34e0a1;
}
.tripadvisor-review-card .review-info {
  display: flex;
  flex-direction: column;
}
.tripadvisor-review-card .review-name {
  font-weight: bold;
  color: #222;
  font-size: 1em;
}
.tripadvisor-review-card .review-meta {
  color: #888;
  font-size: 0.92em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tripadvisor-review-card .review-meta .fa-star {
  color: #ffc107;
  margin-left: 2px;
}
.tripadvisor-review-card .tripadvisor-icon {
  width: 22px;
  height: 22px;
}
.tripadvisor-review-card .review-text {
  font-size: 1.1em;
  color: #222;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .tripadvisor-reviews-swipe {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .tripadvisor-section {
    padding: 32px 0 20px 0;
  }
  .tripadvisor-main-icon {
    width: 36px;
    height: 36px;
  }
  .tripadvisor-header h2 {
    font-size: 1.3rem;
  }
  .tripadvisor-review-card {
    min-width: 90vw;
    padding: 14px;
  }
  .tripadvisor-review-card .review-profile img {
    width: 32px;
    height: 32px;
  }
  .tripadvisor-review-card .tripadvisor-icon {
    width: 18px;
    height: 18px;
  }
  .tripadvisor-review-card .review-text {
    font-size: 1em;
  }
}

/* ================= TRIPADVISOR LEAVE REVIEW SECTION ================= */
.tripadvisor-leave-review-section {
  background: rgba(255, 255, 255, 0.55);
  padding: 48px 0 40px 0;
  text-align: center;
}
.leave-review-container {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(52,224,161,0.07);
  padding: 20px 20px 28px 20px;
}
.tripadvisor-leave-review-section .tripadvisor-main-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}
.leave-review-container h2 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: 18px;
  color: #263a5b;
  margin: 0 0 10px 0;
}
.leave-review-container p {
  color: #666;
  font-size: 12px;
  margin-bottom: 18px;
}
.leave-review-btn {
  display: inline-block;
  background: #34e0a1;
  color: #fff;
  font-weight: 300;
  font-size: 10px;
  padding: 7px 7px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(52,224,161,0.13);
  margin-top: 10px;
}
.leave-review-btn:hover {
  background: #20ba5a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(52,224,161,0.18);
}
.leave-review-btn i {
  margin-right: 8px;
}
@media (max-width: 800px) {
  .leave-review-container {
    max-width: 98vw;
    padding: 20px 5vw 18px 5vw;
  }
}

/* ================= SITE FOOTER ================= */
.cta-book-container{
  text-align: center;
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-book-container h1{
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(18px, 4vw, 28px);
  color: #263a5b;
  margin-bottom: 16px;
}
.cta-book-container p{
  font-family: 'Arimo Regular', serif;
  font-size: clamp(12px, 2vw, 16px);
  color: #263a5b;
  margin-bottom: 24px;
}
.cta-book-container .cta-book-btn{
  background-color: #e16d24;
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* ================= PRIVATE TOURS SECTION ================= */
.private-tours-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  width: 100%;
}

.private-tours-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.private-tours-container h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: #263a5b;
  font-weight: 300;
  margin: 0 0 40px 0;
  letter-spacing: 2px;
}

.tours-button-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tours-btn {
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #34e0a1;
  background-color: transparent;
  color: #34e0a1;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.tours-btn:hover {
  background-color: #34e0a1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 224, 161, 0.3);
}

.tours-btn.active {
  background-color: #34e0a1;
  color: white;
  box-shadow: 0 8px 20px rgba(52, 224, 161, 0.3);
}

/* ================= TOURS PACKAGES ================= */
.tours-packages-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto 0;
  width: 100%;
  padding: 0 20px;
}

.tours-package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tours-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tours-package-card .package-image-carousel {
  width: 100%;
  position: relative;
}

.tours-package-card .carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.tours-package-card .carousel-container {
  width: 100%;
  max-width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  flex-grow: 1;
}

.tours-package-card .carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
}

.tours-package-card .carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.tours-package-card .carousel-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(225, 109, 36, 0.8);
  color: white;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.tours-package-card .carousel-btn:hover {
  background: #e16d24;
  transform: scale(1.1);
}

.tours-package-card .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.tours-package-card .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tours-package-card .indicator.active {
  background-color: #34e0a1;
  width: 30px;
  border-radius: 5px;
}

.tours-package-card .package-content {
  padding: 25px;
}

.tours-package-card .package-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #263a5b;
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
}

.tours-package-card .package-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 18px 0;
  line-height: 1.5;
}

.tours-package-card .package-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #555;
}

.tours-package-card .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tours-package-card .detail-item i {
  color: #34e0a1;
  font-size: 16px;
}

.included-btn {
  width: 100%;
  background-color: transparent;
  color: #34e0a1;
  border: 2px solid #34e0a1;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.included-btn:hover {
  background-color: #34e0a1;
  color: white;
  box-shadow: 0 4px 12px rgba(52, 224, 161, 0.3);
}

.tours-package-card .package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.tours-package-card .package-price {
  font-size: 24px;
  font-weight: 700;
  color: #34e0a1;
}

.tours-package-card .package-btn {
  background-color: #34e0a1;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tours-package-card .package-btn:hover {
  background-color: #2bc386;
  box-shadow: 0 4px 12px rgba(52, 224, 161, 0.3);
}

/* ================= PACKAGE CARD STYLING ================= */
.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.package-card .package-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #263a5b;
  padding: 20px 20px 10px 20px;
  margin: 0;
}

.package-card p {
  font-size: 13px;
  color: #666;
  padding: 0 20px 15px 20px;
  margin: 0;
  flex-grow: 1;
}

.package-card .package-price {
  font-size: 22px;
  font-weight: 700;
  color: #34e0a1;
  padding: 0 20px;
  display: block;
  margin-bottom: 15px;
}

.package-card .package-btn {
  background-color: #34e0a1;
  color: white;
  border: none;
  padding: 12px 20px;
  margin: 0 20px 20px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.package-card .package-btn:hover {
  background-color: #2bc386;
  box-shadow: 0 4px 12px rgba(52, 224, 161, 0.3);
}

/* ================= INCLUDED MODAL ================= */
.included-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.included-modal.active {
  display: flex;
}

.included-modal .modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
  text-align: left;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.included-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.included-modal .modal-close:hover {
  color: #333;
}

.included-modal h2 {
  color: #263a5b;
  margin: 0 0 20px 0;
  font-size: 24px;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.included-list div {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-radius: 6px;
  color: #555;
  font-size: 14px;
  border-left: 4px solid #34e0a1;
}

.modal-close-btn {
  width: 100%;
  background-color: #34e0a1;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background-color: #2bc386;
}

/* ================= TOUR SELECTION SECTION ================= */
.tour-selection-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5ff 100%);
  padding: 80px 20px;
  text-align: center;
}

.tour-selection-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tour-selection-container h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: #263a5b;
  margin-bottom: 1px;
  letter-spacing: 1px;
}

.tour-selection-container p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: #666;
  margin-bottom: 50px;
}

.tour-selection-container .package-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 0;
}

/* ================= PACKAGES SECTION ================= */
.packages-section {
  padding: 60px 20px;
  background: #f5f7fa;
  min-height: 60vh;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.back-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #263a5b;
  background: white;
  color: #263a5b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  display: inline-block;
}

.back-btn:hover {
  background: #263a5b;
  color: white;
  transform: translateX(-5px);
}

.site-footer {
  background-image: url('picture/web bg.webp');
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer-logo-area {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  background-color: rgba(219, 219, 219, 0.30);
  width: 60px;
  height: auto;
  margin-bottom: 18px;
  margin-left: 30px;
}
.footer-description h4 {
  color: #e16d24;
  font-size: 12px;
  font-weight: 100;
  margin: 0 0 10px 0;
}
.footer-links-area {
  margin-top: -30px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-links-area h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #e16d24;
}
.footer-links {
  font-size: 12px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e16d24;
}
.footer-contact-area {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-contact-area h3 {
  margin-top: -30px;
  font-size: 15px;
  margin-bottom: 10px;
  color: #e16d24;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 auto 12px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-contact li {
  margin-bottom: 8px;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #34e0a1;
}
.footer-contact i {
  margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 60px;
  margin-left: 0;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}
.social-link {
  color: #fff;
  font-size: 1.3em;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
}
.social-link:hover {
  color: #e16d24;
  transform: scale(1.15);
}
.social-tripadvisor {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
/* === Footer Floating Text Effect === */

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer a,
.site-footer li {
  border-radius: 10px;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  display: inline-block;
}


@media (max-width: 900px) {
  footer.site-footer {
    min-height: auto;
    padding: 40px 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .footer-logo-area, .footer-links-area, .footer-contact-area {
    flex: 1 1 100%;
    margin-bottom: 18px;
  }
}
@media (min-width: 1024px) {
  .leave-review-btn {
    font-size: 14px;
    padding: 9px 14px;
  }

  .leave-review-container {
    padding: 30px 40px 38px 40px;
  }
  .leave-review-container h2 {
    font-size: 26px;
  }
  .leave-review-container p {
    font-size: 16px;
  }
  .cta-book-container{
    margin-top: 40px;
    padding: 20px 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .footer-logo {
    width: 160px;
    height: auto;
  }
  .site-footer .footer-description h4 {

    font-size: 1.35em;
  }
  .site-footer .footer-links-area h3,
  .site-footer .footer-contact-area h3 {
    margin-top: 40px;
    font-size: 1.85em;
  }
  .site-footer .footer-links a,
  .site-footer .footer-contact a {
    font-size: 1.35em;
  }
  .site-footer .footer-contact {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .cta-book-container{
    margin-bottom: 40px;
    padding: 10px;
    margin-left: 40px;
    margin-right: 40px;
  }
  .cta-book-container h1{
    font-size: clamp(16px, 5vw, 24px);
    margin-bottom: 12px;
  }
  .cta-book-container p{
    font-size: clamp(10px, 3vw, 14px);
    margin-bottom: 16px;
  }
  .cta-book-container .cta-book-btn{
    font-size: clamp(12px, 4vw, 16px);
    padding: 10px 24px;
  }
}

/* ================= CORON TOURS PAGE ================= */
.coron-page-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(225, 109, 36, 0.08) 0%, rgba(38, 58, 91, 0.05) 100%);
  min-height: 100vh;
}

.coron-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.coron-header h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(28px, 5vw, 48px);
  color: #263a5b;
  font-weight: 300;
  margin: 0;
  letter-spacing: 2px;
}

/* ================= TOUR TYPE SECTION ================= */
.tour-type-section {
  margin: 40px auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.tour-type-section .tour-type-btn {
  display: block;
  width: 100%;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #34e0a1;
  background-color: transparent;
  color: #34e0a1;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
}

.tour-type-section .tour-type-btn:hover {
  background-color: #34e0a1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 224, 161, 0.4);
}

.tour-type-section .tour-type-btn.active {
  background-color: #34e0a1;
  color: white;
  box-shadow: 0 5px 15px rgba(52, 224, 161, 0.4);
}

/* ================= CORON PACKAGES GRID ================= */
.coron-packages-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.coron-package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.coron-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.package-unavailable {
  opacity: 0.6;
  position: relative;
}

.package-unavailable-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: rgba(225, 109, 36, 0.92);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.package-unavailable .package-btn {
  background: #999;
  cursor: not-allowed;
  box-shadow: none;
}

/* ================= CORON PACKAGE IMAGE CAROUSEL ================= */
.package-image-carousel {
  width: 100%;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.carousel-container {
  width: 100%;
  max-width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  flex-grow: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(225, 109, 36, 0.8);
  color: white;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-btn:hover {
  background: #e16d24;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .carousel-btn:hover {
    transform: scale(1.05);
  }
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #e16d24;
  width: 28px;
  border-radius: 5px;
}

.indicator:hover {
  background: #c9571f;
}

.package-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* ================= INCLUDED BUTTON & MODAL ================= */
.included-btn {
  width: 100%;
  padding: 12px 16px;
  margin: 15px 0;
  background: rgba(225, 109, 36, 0.15);
  border: 2px solid #e16d24;
  color: #e16d24;
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.included-btn:hover {
  background: #e16d24;
  color: white;
  transform: translateY(-2px);
}

.included-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.included-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
  position: relative;
  text-align: left;
}

.modal-content h2 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(20px, 4vw, 28px);
  color: #263a5b;
  margin: 0 0 20px 0;
  font-style: normal;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #e16d24;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.included-list::before {
  content: '';
  display: block;
}

.included-list {
  list-style: none;
  padding: 0;
}

.included-list > * {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  color: #555;
  padding-left: 0;
  padding-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

.included-list h3 {
  margin: 0 0 10px 0;
  font-size: clamp(16px, 2.2vw, 18px);
  color: #263a5b;
  font-style: normal;
}

.included-list h4 {
  margin: 12px 0 6px 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #263a5b;
  font-style: normal;
}

.included-list ul {
  margin: 0 0 10px 18px;
  padding-left: 18px;
}

.included-list li {
  margin-bottom: 4px;
}

.included-list p {
  display: block;
  width: 100%;
  border-bottom: 1px solid #e16d24;
  padding-bottom: 8px;
  margin: 0 0 12px 0;
}

.included-list > *::before {
  content: '';
  display: none;
}

.modal-close-btn {
  width: 100%;
  padding: 12px 20px;
  background: #e16d24;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: #263a5b;
  transform: scale(1.05);
}

.coron-package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-content h3 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #263a5b;
  margin: 0 0 12px 0;
  font-weight: bold;
}

.package-description {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.package-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(225, 109, 36, 0.08);
  border-radius: 8px;
}

.detail-item {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  color: #263a5b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-item i {
  color: #e16d24;
  width: 16px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.package-price {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #e16d24;
  font-weight: bold;
}

.package-btn {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  padding: 10px 18px;
  background: #e16d24;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.package-btn:hover {
  background: #263a5b;
  transform: scale(1.05);
}

/* ================= RESPONSIVE: TABLET & iPad ================= */
@media (max-width: 1024px) {
  .coron-packages-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
    padding: 0 20px;
  }

  .coron-page-section {
    padding: 50px 15px;
  }

  .coron-header h1 {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 40px;
  }
}

/* ================= RESPONSIVE: MOBILE & PHONES ================= */
@media (max-width: 768px) {
  .coron-packages-container {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 100%;
    padding: 0 10px;
  }

  .coron-page-section {
    padding: 40px 10px;
  }

  .coron-header {
    margin-bottom: 40px;
  }

  .coron-header h1 {
    font-size: clamp(20px, 5vw, 32px);
    margin-bottom: 10px;
  }

  .package-image {
    height: 200px;
  }

  .package-content {
    padding: 18px 15px;
  }

  .package-content h3 {
    font-size: clamp(16px, 3vw, 20px);
  }

  .package-description {
    font-size: clamp(12px, 2.5vw, 14px);
    margin-bottom: 15px;
  }

  .package-details {
    margin-bottom: 15px;
    padding: 10px;
  }

  .detail-item {
    font-size: clamp(11px, 2.3vw, 13px);
  }

  .package-price {
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .package-btn {
    font-size: clamp(11px, 2.5vw, 13px);
    padding: 8px 14px;
  }
}

/* ================= CONTACT PAGE SECTION ================= */
.contact-page-section {
  min-height: 60vh;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-header {
  text-align: center;
  max-width: 800px;
}

.contact-header h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(32px, 6vw, 48px);
  color: #263a5b;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-header p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  color: #555;
  line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-page-section {
    min-height: 50vh;
    padding: 50px 20px;
  }

  .contact-header h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 15px;
  }

  .contact-header p {
    font-size: clamp(14px, 2.8vw, 18px);
  }
}

@media (max-width: 768px) {
  .contact-page-section {
    min-height: 45vh;
    padding: 40px 15px;
  }

  .contact-header h1 {
    font-size: clamp(24px, 4.5vw, 32px);
    margin-bottom: 12px;
  }

  .contact-header p {
    font-size: clamp(13px, 2.5vw, 16px);
  }
}

@media (max-width: 540px) {
  .contact-page-section {
    min-height: 40vh;
    padding: 30px 12px;
  }

  .contact-header h1 {
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 10px;
  }

  .contact-header p {
    font-size: clamp(12px, 2.3vw, 14px);
  }
}

/* ================= BOOKING PAGE SECTION ================= */
.booking-page-section {
  min-height: 80vh;
  padding: 40px 20px;
  background-image: url('picture/crumpled paper (1).webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

.booking-screen {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.booking-screen.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PACKAGE SELECTION SCREEN ================= */
.package-selection-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.package-selection-container h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(32px, 6vw, 48px);
  color: #263a5b;
  margin-bottom: 15px;
  font-weight: bold;
}

.package-selection-container p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  color: #555;
  margin-bottom: 50px;
}

.package-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.package-type-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.package-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(225, 109, 36, 0.15);
  border-color: #e16d24;
}

.package-type-icon {
  font-size: 60px;
  color: #e16d24;
  margin-bottom: 20px;
}

.package-type-card h2 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  color: #263a5b;
  margin-bottom: 15px;
}

.package-type-card p {
  font-family: 'Arimo Regular', sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.select-package-btn {
  background: #e16d24;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: clamp(14px, 2.5vw, 16px);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-family: 'Arimo Regular', sans-serif;
}

.select-package-btn:hover {
  background: #d4601f;
  transform: scale(1.05);
}

/* ================= MAIN BOOKING SCREEN ================= */
.booking-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-left h1 {
  font-family: 'TAN Mon Cheri', serif;
  font-size: clamp(32px, 5vw, 42px);
  color: #263a5b;
  margin-bottom: 30px;
}

.booking-section-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-section-card h3 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(18px, 3vw, 22px);
  color: #263a5b;
  margin-bottom: 20px;
  border-bottom: 2px solid #e16d24;
  padding-bottom: 10px;
}

/* Date Selection */
.date-selection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.date-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.date-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
}

.date-option:hover {
  border-color: #e16d24;
  background: #fff5f0;
}

.date-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e16d24;
  margin-right: 10px;
}

.date-option input[type="radio"]:checked + span {
  color: #e16d24;
  font-weight: bold;
}

/* Package Details */
.package-details-card {
  background: linear-gradient(135deg, #fff5f0 0%, #fffbf8 100%);
  border-left: 4px solid #e16d24;
}

.package-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: 'Arimo Regular', sans-serif;
}

.info-label {
  color: #666;
  font-weight: bold;
}

.info-value {
  color: #263a5b;
  font-size: 16px;
  font-weight: 600;
}

.info-value.price {
  color: #e16d24;
  font-size: 20px;
  font-weight: bold;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #263a5b;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #e16d24;
  box-shadow: 0 0 0 3px rgba(225, 109, 36, 0.1);
}

.booking-form .field-error {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12) !important;
}

/* ================= COUPON STYLES ================= */
.coupon-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.coupon-input-group input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.coupon-input-group input:focus {
  outline: none;
  border-color: #e16d24;
  box-shadow: 0 0 0 3px rgba(225, 109, 36, 0.1);
}

.apply-coupon-btn {
  padding: 12px 20px;
  background-color: #e16d24;
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.apply-coupon-btn:hover {
  background-color: #c85a1a;
  transform: translateY(-2px);
}

.apply-coupon-btn:active {
  transform: translateY(0);
}

.coupon-message {
  font-size: 13px;
  font-family: 'Arimo Regular', sans-serif;
  margin-bottom: 8px;
  min-height: 20px;
}

.coupon-message.success {
  color: #28a745;
  font-weight: 600;
}

.coupon-message.error {
  color: #dc3545;
  font-weight: 600;
}

.coupon-discount {
  padding: 12px 15px;
  background-color: #d4edda;
  border: 2px solid #28a745;
  border-radius: 6px;
  color: #155724;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.coupon-discount.active {
  display: block;
}

/* ================= PAYMENT OPTIONS STYLES ================= */
.payment-options-group {
  margin: 20px 0;
}

.payment-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.payment-option {
  flex: 1;
  min-width: 150px;
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-label {
  border-color: #e16d24;
  background-color: #fff5f0;
  color: #e16d24;
  box-shadow: 0 0 0 3px rgba(225, 109, 36, 0.1);
}

.payment-label i {
  font-size: 18px;
}

.form-agreement {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.checkbox {
  display: flex;
  align-items: center;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e16d24;
  margin-right: 10px;
}

/* ================= BOOKING POLICY DROPDOWN ================= */
.policy-section {
  margin: 20px 0;
}

.policy-toggle-btn {
  width: 100%;
  background: #f0f0f0;
  border: 2px solid #e16d24;
  color: #263a5b;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Arimo Regular', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-toggle-btn:hover {
  background: #e16d24;
  color: white;
}

.policy-toggle-btn i {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.policy-toggle-btn.open i {
  transform: rotate(180deg);
}

.policy-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
  border: 2px solid #e16d24;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.policy-content.open {
  max-height: 600px;
  overflow-y: auto;
  padding: 20px;
}

.policy-text {
  color: #333;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.policy-text h4 {
  color: #263a5b;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.policy-text h5 {
  color: #e16d24;
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.policy-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-text li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.policy-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e16d24;
  font-weight: bold;
  font-size: 16px;
}

.policy-text strong {
  color: #263a5b;
}

.policy-agreement {
  border-top: 2px solid #e16d24;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  margin: 20px 0 0 0;
}

.policy-agreement .checkbox {
  margin: 0;
}

.submit-booking-btn {
  background: #e16d24;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-family: 'Arimo Regular', sans-serif;
  margin-top: 10px;
}

.submit-booking-btn:hover {
  background: #d4601f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 109, 36, 0.3);
}

.back-btn {
  background: #f0f0f0;
  color: #263a5b;
  border: 2px solid #ddd;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Arimo Regular', sans-serif;
  font-weight: 600;
  margin-top: 20px;
}

.back-btn:hover {
  background: #e0e0e0;
  border-color: #e16d24;
  color: #e16d24;
}

/* Booking Summary Sidebar */
.booking-summary {
  background: linear-gradient(135deg, #263a5b 0%, #2a4066 100%);
  color: white;
  border-radius: 10px;
  padding: 25px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-summary h3 {
  font-family: 'Agrandir', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e16d24;
  padding-bottom: 10px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: 'Arimo Regular', sans-serif;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item span:last-child {
  font-weight: 600;
}

.summary-divider {
  height: 2px;
  background: #e16d24;
  margin: 15px 0;
}

.summary-item.total {
  padding: 15px 0;
  border-bottom: none;
  font-size: 18px;
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .package-type-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-page-section {
    padding: 30px 15px;
  }

  .date-options {
    grid-template-columns: 1fr;
  }

  .package-selection-container h1 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 10px;
  }

  .booking-left h1 {
    font-size: clamp(24px, 4vw, 32px);
  }

  .package-type-card {
    padding: 30px 20px;
  }

  .select-package-btn {
    width: 100%;
  }

  .submit-booking-btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .booking-page-section {
    padding: 20px 12px;
    min-height: 100vh;
  }

  .package-selection-container h1 {
    font-size: clamp(20px, 4vw, 28px);
  }

  .package-type-icon {
    font-size: 48px;
  }

  .package-type-card h2 {
    font-size: clamp(18px, 3.5vw, 24px);
  }

  .package-type-card p {
    font-size: clamp(12px, 2.3vw, 14px);
  }

  .booking-section-card {
    padding: 20px 15px;
  }

  .booking-section-card h3 {
    font-size: clamp(16px, 3vw, 18px);
  }

  .date-option {
    padding: 12px;
    font-size: 12px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .booking-summary {
    order: -1;
    margin-bottom: 20px;
  }

  .booking-summary h3 {
    font-size: 16px;
  }

  .summary-item {
    font-size: 12px;
  }

  .summary-item.total {
    font-size: 16px;
  }
}

/* ================= STANDARD DESKTOP (1366px - 2559px) ================= */
@media (min-width: 1366px) and (max-width: 2570px) {
  /* Keep responsive clamp values - they work perfectly for standard desktop */
  /* No overrides needed - base CSS handles it */
}

/* ================= ULTRA-WIDE SCREEN (2560px+) ================= */
@media (min-width: 2560px) {
  /* Main containers - increase max-width */
  .tours-header,
  .experience-header {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }

  .tours-grid {
    max-width: 2000px;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .tour-package {
    padding: 30px;
  }

  .tour-image {
    height: 300px;
  }

  .tour-package h4 {
    font-size: 26px;
    margin-top: 30px;
  }

  .tour-package p {
    font-size: 18px;
  }

  .tour-price {
    font-size: 28px;
  }

  /* Experience section adjustments */
  .experience-wrapper {
    max-width: 2000px;
    gap: 80px;
  }

  .experience-column {
    gap: 40px;
  }

  .experience-item h3 {
    font-size: 32px;
  }

  .experience-item p {
    font-size: 18px;
  }

  .stack-carousel {
    max-width: 500px;
    height: 600px;
  }

  /* Carousel adjustments */
  .carousel-container {
    max-width: 2000px;
  }

  .slide {
    min-width: 25%;
  }

  .slide img {
    height: 700px;
  }

  /* Bottom overlay adjustments for ultra-wide - only increase padding/gap */
  .bottom-overlay {
    padding: 0 100px;
    gap: 120px;
  }

  .bottom-image img {
    width: clamp(140px, 35vw, 530px) !important;
    margin-left: 0;
  }

  .bottom-text {
    margin-right: 0;
  }

  /* Extra section adjustments */
  .extra-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .extra-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .extra-section h3 {
    font-size: 56px;
    margin-bottom: 20px;
  }

  /* Gallery grid for ultra-wide */
  .gallery {
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
    width: 98%;
  }

  .gallery img {
    border-radius: 12px;
  }

  /* CTA Book Container */
  .cta-book-container {
    max-width: 900px;
    padding: 50px 60px;
  }

  .cta-book-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .cta-book-container p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .cta-book-btn {
    font-size: 18px;
    padding: 16px 50px;
  }

  /* Coron page adjustments */
  .coron-packages-container {
    max-width: 2000px;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .coron-package-card {
    height: 100%;
  }

  .package-content h3 {
    font-size: 28px;
  }

  .package-description {
    font-size: 16px;
  }

  .package-price {
    font-size: 28px;
  }

  /* Booking page adjustments */
  .booking-container {
    max-width: 1400px;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
  }

  .booking-left h1 {
    font-size: 48px;
  }

  .booking-section-card {
    padding: 35px;
  }

  .booking-section-card h3 {
    font-size: 26px;
  }

  .package-type-cards {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .package-type-card {
    padding: 50px 40px;
  }

  .package-type-icon {
    font-size: 80px;
  }

  .package-type-card h2 {
    font-size: 32px;
  }

  .package-type-card p {
    font-size: 18px;
  }

  .select-package-btn,
  .submit-booking-btn {
    font-size: 18px;
    padding: 16px 50px;
  }

  /* TripadVisor section */
  .tripadvisor-widget-container {
    max-width: 2000px;
  }

  .tripadvisor-widget-container iframe {
    max-width: 2000px;
    height: 1200px;
  }

  .tripadvisor-reviews-swipe {
    max-width: 1200px;
  }

  /* About page adjustments */
  .about-bottom-content {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
  }

  .about-bottom-text {
    padding-left: 0;
    padding-right: 80px;
    max-width: 900px;
  }

  .about-bottom-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-bottom-text p {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .about-bottom-image {
    padding-left: 80px !important;
    padding-right: 0;
    margin-top: 0;
  }

  .about-bottom-image img {
    max-width: 500px;
  }

  /* Header adjustments for ultra-wide */
  .navbar {
    gap: clamp(5px, 2vw, 30px);
  }

  .navbar a {
    font-size: clamp(10px, 2vw, 20px);
    padding: clamp(4px, 1vw, 12px) clamp(8px, 2vw, 25px);
  }


  .hero-title {
    font-size: clamp(28px, 5vw, 85px) !important;
  }

  .hero-subtitle {
    font-size: clamp(14px, 1.5vw, 22px) !important;
    max-width: 1200px !important;
  }

  .logo {
    width: clamp(80px, 20vw, 180px) !important;
  }

  .center-button .book-btn {
    font-size: clamp(16px, 1.5vw, 26px) !important;
    padding: clamp(10px, 1vw, 20px) clamp(25px, 3vw, 60px) !important;
  }

  /* Footer adjustments */
  .footer-container {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
  }

  .site-footer .footer-logo {
    width: 200px;
  }

  .site-footer .footer-description h4 {
    font-size: 18px;
  }

  .site-footer .footer-links-area h3,
  .site-footer .footer-contact-area h3 {
    font-size: 24px;
  }

  .site-footer .footer-links a,
  .site-footer .footer-contact a {
    font-size: 18px;
  }

  /* Whatsapp button scaling */
  .whatsapp-float {
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-float i {
    font-size: 32px;
  }

  .whatsapp-label {
    font-size: 14px;
    padding: 8px 12px;
    right: 70px;
  }
}

/* ================= EXPEDITION AVAILABLE DATES STYLING ================= */

.package-date-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.date-tab {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
}

.date-tab:hover {
  color: #34e0a1;
}

.date-tab.active {
  color: #34e0a1;
  border-bottom-color: #34e0a1;
}

.month-selector {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.month-selector label {
  font-weight: 600;
  color: #333;
}

.month-selector select {
  padding: 8px 12px;
  border: 2px solid #34e0a1;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background-color: white;
  color: #333;
}

.month-selector select:hover {
  background-color: #f0faf7;
}

.date-option-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.date-display {
  font-weight: 500;
  color: #333;
}

.date-status {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.date-status.fully-booked {
  background-color: #ffebee;
  color: #d32f2f;
}

.date-status.available-slots {
  background-color: #e8f5e9;
  color: #2e7d32;
}

/* Current Month Dates Section */
.current-month-dates {
  margin-bottom: 30px;
}

.current-month-dates h4,
.future-month-dates h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-transform: capitalize;
}

/* Date Options Grid Layout */
.date-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.date-option {
  display: flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
}

.date-option input[type="radio"] {
  margin-right: 10px;
}

.date-option-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.date-option input[type="radio"]:checked + .date-option-content,
.date-option:has(input[type="radio"]:checked) .date-option-content {
  border-color: #34e0a1;
  background-color: #f0faf7;
  box-shadow: 0 0 8px rgba(52, 224, 161, 0.2);
}

.date-option:hover .date-option-content {
  border-color: #34e0a1;
  background-color: #f0faf7;
}