/* ===================== Reset & Base ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

/* ===================== Header ===================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007b6a;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  font-weight: 500;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #007b6a;
  border-bottom: 2px solid #007b6a;
}

/* ===================== Hero Section ===================== */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  background: rgba(0,0,0,0.4);
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  width: calc(100% - 40px);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.05;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  background: #007b6a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #004d40;
}

/* ===================== Section Titles ===================== */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 50px 0 30px;
  color: #007b6a;
  font-weight: 700;
}

/* ===================== Tours / Destinations Grid ===================== */
.tours-grid,
.destinations-grid,
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 0 auto;
}

.tour-card,
.destination-card,
.attraction {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover,
.destination-card:hover,
.attraction:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.tour-card img,
.destination-card img,
.attraction img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.tour-card img,
.destination-card img,
.attraction.img {
  height: 200px;
}

.tour-card h3,
.destination-card h3 {
  font-size: 1.4rem;
  margin: 15px;
  color: #007b6a;
}

.tour-card p,
.destination-card p,
.attraction p {
  margin: 0 15px 15px;
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
}

.tour-card .btn,
.destination-card .btn {
  display: block;
  margin: 0 15px 15px;
  text-align: center;
  padding: 8px 0;
  background: #007b6a;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.tour-card .btn:hover,
.destination-card .btn:hover {
  background: #004d40;
}

/* ===================== PROFESSIONAL TOUR OVERVIEW (Animated Premium) ===================== */
.tour-overview-box {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
  border-left: 8px solid;
  border-image: linear-gradient(180deg,#00c4b3,#007b6a) 1;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.tour-overview-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(180deg,#00c4b3,#007b6a,#00c4b3,#007b6a);
  animation: gradientScroll 4s linear infinite;
  opacity: 0.05;
  pointer-events: none;
}

@keyframes gradientScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.tour-overview-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-overview-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.tour-overview-box p.visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-overview-box ul {
  list-style: none;
  padding-left: 0;
}

.tour-overview-box ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.tour-overview-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007b6a;
  font-weight: 700;
  font-size: 1.15rem;
}

.tour-overview-box ul li.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effect */
.tour-overview-box:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  transform: translateY(-3px);
  transition: all 0.4s ease;
}


/* =========================================================
   ⭐ ULTRA-PROFESSIONAL TIMELINE (UPGRADED)
========================================================= */

.timeline {
  list-style: none;
  position: relative;
  padding-left: 45px;
  margin: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00977e, #005f50);
  border-radius: 20px;
  opacity: 0.9;
}

/* Timeline Items */
.timeline li {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 28px 26px 90px;
  margin-bottom: 35px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid #e8f2f0;
}

/* Day Circle */
.timeline li::before {
  content: attr(data-day);
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #00977e, #007b6a);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  border: 3px solid #ffffff;
}

/* Title text */
.timeline li strong {
  color: #007b6a;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 6px;
}

/* Hover */
.timeline li:hover {
  transform: translateX(9px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.16);
  background: #f7fdfc;
  border-color: #d7f1eb;
}

/* Smooth fade-in animation (optional but looks premium!) */
.timeline li {
  opacity: 0;
  transform: translateY(20px);
  animation: timelineFade 0.8s ease forwards;
}

.timeline li:nth-child(1) { animation-delay: 0.1s; }
.timeline li:nth-child(2) { animation-delay: 0.2s; }
.timeline li:nth-child(3) { animation-delay: 0.3s; }
.timeline li:nth-child(4) { animation-delay: 0.4s; }
.timeline li:nth-child(5) { animation-delay: 0.5s; }

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

/* =========================================================
   FIX TIMELINE TITLE OVERLAP
========================================================= */

.timeline li {
  padding-left: 95px !important; /* Increased spacing so text never hides */
}

.timeline li::before {
  left: 25px !important;  /* Moves circle fully outside the card */
}

.timeline::before {
  left: 50px !important; /* Line aligned with circles */
}


/* ===================== PROFESSIONAL TOUR INCLUSIONS ===================== */
.tour-inclusions {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-left: 6px solid;
  border-image: linear-gradient(180deg,#00c4b3,#007b6a) 1;
  margin-bottom: 50px;
}

.tour-inclusions h3 {
  color: #007b6a;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tour-inclusions ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tour-inclusions ul li {
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  opacity: 0;
  transform: translateX(-25px);
  transition: all 0.6s ease;
  background: #f0fdfa;
  border-radius: 10px;
  padding: 10px 12px 10px 35px;
  flex: 1 1 45%;
}

.tour-inclusions ul li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #007b6a;
  font-weight: 700;
  font-size: 1.2rem;
}

.tour-inclusions ul li.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================== Gallery Fixes ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.gallery-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px;
}

.gallery-grid img,
.gallery-slider img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  scroll-snap-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover,
.gallery-slider img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 38px rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox-bg {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
}
.lightbox-bg img {
  max-width: 95%;
  max-height: 92%;
  object-fit: contain;
  border-radius: 6px;
}

/* ===================== Booking Form ===================== */
.booking-form,
.booking-form p {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-form label {
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  font-size: 0.95rem;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #007b6a;
  box-shadow: 0 6px 18px rgba(0,123,106,0.08);
}

/* ===================== Footer ===================== */
footer {
  text-align: center;
  padding: 25px 0;
  background: #007b6a;
  color: #fff;
  margin-top: 50px;
  font-size: 0.9rem;
}

/* ===================== Responsive ===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .timeline li {
    padding-left: 65px;
  }
  .timeline li::before {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

/* ===================== Pagination ===================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #007b6a;
  background: #fff;
  color: #007b6a;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination a:hover {
  background: #007b6a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.pagination a.active {
  background: #007b6a;
  color: #fff;
  cursor: default;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* =========================================================
   ⭐ PROFESSIONAL THINGS TO DO + BEST TIME SECTIONS
========================================================= */

.tour-section {
  background: #ffffff;
  padding: 30px 35px;
  border-radius: 14px;
  margin-bottom: 35px;
  border-left: 5px solid #007b6a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tour-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-section .section-title {
  font-size: 1.7rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #007b6a;
}

.tour-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-section ul li {
  font-size: 1rem;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  color: #444;
}

.tour-section ul li:last-child {
  border-bottom: none;
}

.tour-section ul li::before {
  content: "✔";
  color: #007b6a;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 10px;
}

.tour-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Fade animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   HOME — PROFESSIONAL HOSPITALITY SECTION
========================================================= */
.hospitality-section {
  background: #ffffff;
  padding: 60px 40px;
  margin-top: 60px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-left: 8px solid #007b6a;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.hospitality-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hospitality-title {
  font-size: 2.4rem;
  color: #007b6a;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.hospitality-btn {
  display: inline-block;
  margin: 15px auto 30px;
  padding: 10px 22px;
  background: #007b6a;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hospitality-btn:hover {
  background: #005a4d;
}

.hospitality-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.hospitality-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.hospitality-list li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #444;
  padding-left: 32px;
  position: relative;
}

.hospitality-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #007b6a;
  font-weight: 700;
}

/* =========================================================
   WHY CHOOSE US — PREMIUM GRID SECTION
========================================================= */

.why-choose-us {
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
}

.why-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #007b6a;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  padding: 10px;
}

/* BOX DESIGN */
.why-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid #eef2f3;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(35px);
}

.why-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #007b6a;
}

.why-box p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
}

/* HOVER EFFECT */
.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-color: #d2e9e5;
}

/* =============================================
   POPULAR TOURS — NEW HEADER STYLE
============================================= */

.tour-header {
  text-align: center;
  margin-bottom: 40px;
}

.tour-main-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #007b6a;
  margin-bottom: 8px;
}

.tour-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 20px;
}

/* VIEW ALL BUTTON */
.view-all-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #007b6a;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.view-all-btn:hover {
  background: #005f52;
  transform: translateY(-2px);
}

/* =============================================
   POPULAR DESTINATIONS — NEW HEADER STYLE
============================================= */

.destination-header {
  text-align: center;
  margin-bottom: 40px;
}

.destination-main-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #007b6a;
  margin-bottom: 8px;
}

.destination-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTON */
.destinations-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #007b6a;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.destinations-btn:hover {
  background: #005f52;
  transform: translateY(-2px);
}

/* =============================================
   POPULAR TOURS — NEW HEADER DESIGN
============================================= */

.tours-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 20px;
}

.tours-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #007b6a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.tours-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 25px;
  font-weight: 400;
}

/* BUTTON */
.tours-view-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #007b6a;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.tours-view-btn:hover {
  background: #005f52;
  transform: translateY(-2px);
}

/* =============================================
   POPULAR DESTINATIONS — NEW HEADER DESIGN
============================================= */

.destinations-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 30px;
}

.dest-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #007b6a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.dest-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Button */
.dest-view-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #007b6a;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.dest-view-btn:hover {
  background: #005f52;
  transform: translateY(-2px);
}

/* MAP SECTION */
.sl-map-section {
  text-align: center;
  padding: 60px 0;
}

.map-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #007b6a;
  margin-bottom: 10px;
}

.map-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* MAP CONTAINER */
.map-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.map-base {
  width: 100%;
  display: block;
}

/* MARKERS */
.map-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  text-align: center;
}

.marker-dot {
  width: 14px;
  height: 14px;
  background: #007b6a;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* LABEL - ALWAYS VISIBLE */
.marker-label {
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  opacity: 1;
  transform: translateY(0);
}

/* CATEGORY COLORS */
.beach .marker-dot { background: #0099ff; }
.culture .marker-dot { background: #ff9900; }
.nature .marker-dot { background: #2ecc71; }
.lesser .marker-dot { background: #9b59b6; }
.adventure .marker-dot { background: #ff4757; }
.gastronomy .marker-dot { background: #c0392b; }

/* CATEGORY FILTER */
.category-slider {
  margin-top: 30px;
  text-align: center;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #007b6a;
  transform: scale(1.3);
}

/* WRAPPER */
.category-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.category-scroll {
  display: flex;
  gap: 18px;
  padding: 6px 10px;
}

/* EACH ITEM */
.cat-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

/* ACTIVE STATE */
.cat-item.active {
  background: #007b6a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* IMAGE ICON */
.cat-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

/* NAME */
.cat-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* HOVER */
.cat-item:hover {
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 50px 30px;
  border-radius: 10px;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* INTRO SECTION */
.tour-intro {
  margin: 70px auto;
  max-width: 900px;
  text-align: center;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a3e3e;
  margin-bottom: 10px;
}

.intro-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3a6f6f;
  margin-bottom: 25px;
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 50px 30px;
  border-radius: 10px;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* DESTINATION INTRO SECTION */
.destination-intro {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.destination-intro .intro-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a3e3e;
  margin-bottom: 10px;
}

.destination-intro .intro-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #3a6f6f;
  margin-bottom: 25px;
}

.destination-intro .intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* DISCOVER YOUR PATH SECTION */
.discover-section {
  max-width: 900px;
  margin: 70px auto;
  text-align: center;
  padding: 0 20px;
}

.discover-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #124542;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.discover-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2d6f6c;
  margin-bottom: 25px;
}

.discover-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* Soft fade-in animation */
.discover-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

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

/* ISLAND WONDERS - PROFESSIONAL STYLE */
.island-wonders {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.iw-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #124542;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.iw-subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  color: #2d6f6c;
  margin-bottom: 28px;
}

.iw-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #3d3d3d;
  margin-bottom: 18px;
}

/* Decorative underline under the title */
.iw-title::after {
  content: "";
  width: 70px;
  height: 3.5px;
  background: #2d6f6c;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Fade-in animation */
.island-wonders {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

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

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #222;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

/* HERO */
.hero-plan {
  background: url('../images/plan-hero.jpg') center/cover no-repeat;
  height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-plan .hero-overlay {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

/* SECTION TITLES */
.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 5px;
  color: #111;
}
.section-sub {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
  color: #555;
}

/* GRID */
.select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
}
.select-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.25s;
  border: 2px solid transparent;
}
.select-card:hover {
  transform: translateY(-6px);
  border-color: #0a7;
}
.select-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.select-card h3 {
  padding: 12px;
  text-align: center;
  font-size: 18px;
}

/* FORM */
.plan-form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 30px;
}
.plan-form .full {
  grid-column: span 2;
}
.plan-form label {
  font-weight: 600;
}
.plan-form input,
.plan-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.btn {
  grid-column: span 2;
  padding: 14px;
  background: #0a7;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 17px;
}
.btn:hover {
  background: #067;
}

/* Office Section */
.office-section {
  margin-top: 50px;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Title */
.office-section .section-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #003b5c; /* same deep blue from your site */
  text-align: center;
  font-weight: 600;
}

/* Select Box (matching booking-form inputs) */
.office-select-wrap label {
  font-weight: 600;
  color: #003b5c;
}

.office-select {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 18px;
  border: 1px solid #c7d2da;
  border-radius: 8px;
  font-size: 16px;
  background: #f7fafc;
  color: #003b5c;
}

/* Office Details Box */
.office-details {
  padding: 25px;
  background: #f7fafc;
  border: 1px solid #c7d2da;
  border-radius: 12px;
  display: none;
  line-height: 1.7;
  color: #003b5c;
}

.office-details.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.office-details p span {
  font-size: 20px;
  font-weight: 700;
  color: #005f89; /* matching button/blue tone */
}

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

/* Clean unified styling */
.clean-style {
  background: #f8f8f8;
  padding: 50px 20px;
  margin-top: 40px;
}

/* -------------------------
  Luxury Newsletter
-------------------------- */
.lux-newsletter {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.lux-newsletter h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #007B6A;
}

.lux-newsletter p {
  color: #333;
  margin-bottom: 25px;
  font-size: 16px;
}

.lux-news-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lux-news-form input {
  padding: 12px 15px;
  width: 260px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.lux-news-form button {
  padding: 12px 20px;
  background: #007B6A;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.lux-news-form button:hover {
  background: #005f52;
}

/* -------------------------
  Luxury Footer Section
-------------------------- */
.lux-footer-section {
  background: #007B6A;
  color: white;
  padding: 60px 20px;
}

.lux-footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Each section block */
.lux-footer-box {
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 25px;
}

/* Toggle Header */
.lux-toggle {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  color: #F5D6A2; /* soft gold accent */
}

.lux-icon {
  transition: all 0.3s ease;
}

/* Menu list */
.lux-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  padding-left: 5px;
}

.lux-menu.show {
  display: block;
}

.lux-menu li {
  margin: 10px 0;
}

.lux-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.9;
}

.lux-menu a:hover {
  opacity: 1;
  text-decoration: underline;
}

.lux-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: #F5D6A2;
}

.lux-hotline span {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (min-width: 768px) {
  .lux-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .lux-footer-box {
    width: 30%;
    border-bottom: none;
  }

  .lux-menu {
    display: block !important;  /* Always open on desktop */
  }

  .lux-toggle .lux-icon {
    display: none; /* no + icon on desktop */
  }

  .lux-toggle {
    cursor: default;
  }
}

/* NEWSLETTER SECTION */
.lux-newsletter {
  background:#007B6A;
  padding:60px 20px;
  text-align:center;
  color:#fff;
}

.lux-newsletter h2 {
  font-size:28px;
  margin-bottom:10px;
  letter-spacing:0.5px;
}

.lux-newsletter p {
  font-size:16px;
  opacity:0.9;
  margin-bottom:25px;
}

.lux-news-form {
  display:flex;
  justify-content:center;
  gap:10px;
  max-width:600px;
  margin:auto;
}

.lux-news-form input {
  padding:12px 15px;
  border-radius:6px;
  border:none;
  width:70%;
}

.lux-news-form button {
  background:#fff;
  color:#007B6A;
  border:none;
  padding:12px 20px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.lux-news-form button:hover {
  background:#e4f7f2;
}

/* FOOTER MAIN SECTION */
.lux-footer-section {
  background:#007B6A;
  color:#fff;
  padding:50px 20px;
}

.lux-footer-inner {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1200px;
  margin:auto;
}

.lux-footer-box {
  background:rgba(255,255,255,0.06);
  padding:25px;
  border-radius:10px;
  backdrop-filter:blur(4px);
}

/* COLLAPSIBLE MENU */
.lux-toggle {
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  font-size:18px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.lux-menu {
  list-style:none;
  padding:0;
  margin-top:10px;
  max-height:0;
  overflow:hidden;
  transition:0.3s ease;
}

.lux-menu.show {
  max-height:500px;
}

.lux-menu li {
  margin:10px 0;
}

.lux-menu a {
  color:#fff;
  opacity:0.9;
  text-decoration:none;
  transition:0.2s;
}

.lux-menu a:hover {
  opacity:1;
}

/* OFFICE BOX — CENTERED PREMIUM VERSION */
.lux-office {
  text-align:center;
}

.lux-title {
  font-size:20px;
  margin-bottom:5px;
  color:#fff;
}

.lux-hotline {
  font-size:17px;
  margin-bottom:15px;
}

.lux-hotline span {
  font-size:14px;
  opacity:0.8;
}

/* MOBILE VERSION */
@media (max-width:900px){
  .lux-footer-inner {
    grid-template-columns:1fr;
  }
  .lux-news-form {
    flex-direction:column;
  }
  .lux-news-form input {
    width:100%;
  }
}
/* Background uses your existing footer color (#007B6A tone) */
.lux-footer-section {
  background: #00695a;
  padding: 50px 20px;
  color: #fff;
}

/* Force all categories to display ONE-BY-ONE (stacked) */
.lux-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

/* Newsletter */
.lux-newsletter {
  background: #C6A667;
  text-align: center;
  padding: 45px 20px;
  color: #fff;
}

/* Toggle buttons */
.lux-toggle {
  cursor: pointer;
  font-size: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lux-icon {
  font-size: 22px;
  font-weight: bold;
}

.lux-menu {
  display: none;
  padding: 10px 0;
  list-style: none;
}

.lux-menu.show {
  display: block;
}

.lux-menu li {
  padding: 5px 0;
}

.lux-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.lux-menu li a:hover {
  opacity: 0.7;
}

/* Professional Office Section */
.office-box {
  text-align: center;
}

.office-inner {
  background: rgba(255, 255, 255, 0.06);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.office-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.center-text {
  text-align: center;
  margin-bottom: 14px;
  font-size: 16px;
}

/* Mobile Improvements */
@media (max-width: 600px) {
  .lux-footer-section {
    padding: 30px 15px;
  }

  .lux-newsletter {
    padding: 30px 15px;
  }
}

/* =============================
   LUXURY FOOTER BASE STYLING
============================= */
.lux-footer-section {
  background: #004d43; /* your footer dark green */
  padding: 70px 20px;
  color: #fff;
}

.lux-footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;   /* mobile default (stack) */
  gap: 40px;
}

/* Footer boxes */
.lux-footer-box {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 25px;
}

/* Titles */
.lux-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f0d59c; /* soft luxury gold */
}

/* Hotline text */
.lux-hotline span {
  font-size: 13px;
  opacity: 0.8;
}

/* Footer links */
.lux-menu li {
  list-style: none;
  padding: 6px 0;
}

.lux-menu li a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  transition: 0.2s;
}

.lux-menu li a:hover {
  opacity: 1;
}

/* Accordion toggle */
.lux-toggle {
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lux-icon {
  font-size: 24px;
  transition: 0.3s;
}

/* Hidden menu (mobile accordion) */
.lux-menu {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

/* When opened */
.lux-menu.open {
  max-height: 600px;
}

/* =============================
   DESKTOP VERSION FIX (IMPORTANT)
============================= */

@media (min-width: 900px) {
  .lux-footer-inner {
    flex-direction: row;     /* ← Desktop side-by-side columns */
    justify-content: space-between;
    gap: 60px;
  }

  /* Remove mobile borders */
  .lux-footer-box {
    border: none;
    padding-bottom: 0;
    width: 33%;
  }

  /* Disable accordion on desktop */
  .lux-toggle {
    cursor: default;
  }

  .lux-icon {
    display: none;
  }

  .lux-menu {
    max-height: none !important;
    overflow: visible;
  }

  .lux-menu li {
    padding: 4px 0;
  }

  /* Office column center alignment */
  .lux-footer-box:nth-child(3) {
    text-align: center;
  }
}

/* -------------------------
   PREMIUM ABOUT PAGE
---------------------------- */
.about-lux-wrapper {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.about-lux-inner {
  max-width: 1100px;
  line-height: 1.8;
  color: #333;
}

.lux-main-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #0a1a2a; /* deep navy */
  letter-spacing: 0.5px;
}

.lux-sub-title {
  font-size: 28px;
  margin: 60px 0 20px;
  font-weight: 600;
  color: #c5a564; /* luxury gold */
}

.lux-points {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 40px;
}

.lux-points li {
  padding: 12px 0;
  font-size: 17px;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.lux-points li::before {
  content: "•";
  color: #c5a564;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 5px;
}


/* -------------------------
   FOUNDER CARD (PREMIUM)
---------------------------- */
.founder-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #f7f4ed;
  border-radius: 16px;
  margin: 60px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  border: 1px solid #e5e0d6;
}

.founder-photo img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #c5a564;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.founder-details {
  flex: 1;
}

.founder-name {
  font-size: 22px;
  margin: 5px 0 20px;
  color: #0a1a2a;
  font-weight: 700;
}


/* -------------------------
   RESPONSIVE
---------------------------- */
@media (max-width: 900px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .founder-photo img {
    width: 240px;
    height: 280px;
  }
}

@media (max-width: 600px) {
  .lux-main-title {
    font-size: 28px;
  }
  .lux-sub-title {
    font-size: 24px;
  }
}

/* ------------------------------
   Luxury About Wrapper
--------------------------------*/
.about-lux-wrapper {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.about-lux-inner {
  max-width: 900px;
  text-align: center;
}

/* ------------------------------
   Luxury Title
--------------------------------*/
.lux-main-title {
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

/* Gold Divider */
.lux-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #f7e9b7, #d4af37);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

/* ------------------------------
   Body Text
--------------------------------*/
.lux-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-family: "Lato", sans-serif;
  margin-bottom: 28px;
}

/* ------------------------------
   Fade-in Animation
--------------------------------*/
.fade-in {
  opacity: 0;
  animation: fadeInUp 1.1s ease forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   Responsive
--------------------------------*/
@media (max-width: 768px) {
  .lux-main-title {
    font-size: 26px;
  }

  .lux-text {
    font-size: 16px;
  }
}

/* ===========================
   TESTIMONIAL SECTION
=========================== */

.testimonial-wrapper {
  padding: 80px 20px;
  background: #faf7f2; /* same colour palette */
  text-align: center;
}

.testimonial-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #4a3f35;
  margin-bottom: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Main Premium Box */
.testimonial-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 60px 70px;
  box-shadow: 0px 10px 45px rgba(0,0,0,0.07);
  border: 1px solid #e8e1d9;
  position: relative;
}

/* Content */
.testimonial-content p {
  font-size: 1.25rem;
  color: #5a4b3c;
  line-height: 1.8;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#testimonial-author {
  font-weight: 700;
  color: #3a2f27;
  margin-top: 15px;
  font-size: 1.05rem;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Fade-in class */
.fade-in {
  opacity: 1 !important;
}

/* Mobile Optimisation */
@media(max-width: 768px) {
  .testimonial-box {
    padding: 40px 30px;
  }

  .testimonial-content p {
    font-size: 1.1rem;
  }
}

/* ===========================
   LUXURY STICKY HEADER
=========================== */

.lux-header {
  width: 100%;
  position: fixed;           /* Sticky on scroll */
  top: 0;
  left: 0;
  z-index: 9999;
  background: #007B6A;       /* Dark green luxury */
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + BRAND */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: 48px;
  height: auto;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f4efe5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* NAVIGATION (DESKTOP) */
.header-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header-nav ul li a {
  text-decoration: none;
  color: #e9e5db;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
  color: #c8b89f;
}

/* SEARCH ICON */
.search-icon {
  font-size: 1.4rem;
  cursor: pointer;
  color: #e9e5db;
  margin-left: 20px;
}

/* SEARCH BAR DROPDOWNn */
.header-search-bar {
  background: #124f3c;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.header-search-bar input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #0f4436;
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f4efe5;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: #007B6A;
  padding: 20px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul li a {
  color: #e9e5db;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

/* RESPONSIVE SETTINGS */
@media(max-width: 980px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .search-icon { margin-right: 15px; }
  .brand-name { font-size: 1.4rem; }
}


/* ===========================
   SOCIAL MEDIA CONNECT
=========================== */
.social-connect {
  padding: 70px 20px;
  text-align: center;
  background: #004d43;
}

.social-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e9e5db;
  margin-bottom: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px; /* Increased spacing for cleaner premium layout */
  flex-wrap: wrap;
}

/* Icon Style */
.social-icons a img {
  width: 80px;          /* 🔥 Increased icon size */
  height: 80px;         /* 🔥 Increased icon size */
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.18));
  border-radius: 18px;
  transition: all 0.35s ease;
  background: #02231f;
  padding: 12px;        /* Adjusted padding for sharper look */
}

/* Hover Effect */
.social-icons a img:hover {
  transform: translateY(-10px) scale(1.15);
  box-shadow: 0px 14px 28px rgba(0, 123, 106, 0.40);
  filter: brightness(1.18);
}

/* Soft floating animation */
@keyframes floatIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.social-icons a:nth-child(1) img { animation: floatIcon 3.5s ease-in-out infinite; }
.social-icons a:nth-child(2) img { animation: floatIcon 4s ease-in-out infinite; }
.social-icons a:nth-child(3) img { animation: floatIcon 3.2s ease-in-out infinite; }
.social-icons a:nth-child(4) img { animation: floatIcon 3.8s ease-in-out infinite; }
.social-icons a:nth-child(5) img { animation: floatIcon 4.2s ease-in-out infinite; }

/* ===========================
   MOBILE RESPONSIVENESS
=========================== */
@media (max-width: 600px) {
  .social-connect {
    padding: 60px 15px;
  }

  .social-title {
    font-size: 1.7rem;
  }

  .social-icons {
    gap: 26px; /* tighter gap for small screens */
  }

  .social-icons a img {
    width: 65px;    /* Perfect mobile size */
    height: 65px;
    padding: 10px;
    border-radius: 16px;
  }
}

.cat-item.active {
  transform: scale(1.08);
  border: 3px solid #007b6a;
  box-shadow: 0px 8px 25px rgba(0, 123, 106, 0.35);
}
.cat-item.active span {
  color: #007b6a;
  font-weight: 700;
}


/* ===========================
   ACTIVE CATEGORY HIGHLIGHT (TRANSPARENT EFFECT)
=========================== */

/* Active category box */
.cat-item.active {
  border: 3px solid #007b6a;
  transform: scale(1.06);
  box-shadow: 0px 8px 18px rgba(0, 123, 106, 0.35);
}

/* Modern transparent highlight for active category label */
.cat-item.active span {
  background: rgba(0, 123, 106, 0.18);   /* soft transparent green */
  padding: 6px 12px;
  border-radius: 10px;
  color: #00483f;                        /* deep green text */
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

/* Highlight active markers on the map */
.map-marker.active .marker-dot {
  background: #007b6a !important;
  transform: scale(1.4);
  box-shadow: 0 0 12px #007b6a;
}

.map-marker.active .marker-label {
  background:#007b6a ;   /* transparent effect */
  color: white;                        /* matching deep green */
  padding: 3px 8px;
  border-radius: 6px;
  
}

/* ===========================
   SELECT CARD CHECKBOX STYLE
=========================== */

/* Container for tick */
.select-card {
  position: relative;
}

/* Hidden checkbox icon (default: invisible) */
.select-card::after {
  content: "☐";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #007b6a;
  background: rgba(255,255,255,0.85);
  padding: 3px 6px;
  border-radius: 6px;
  transition: 0.25s ease;
}

/* When card is active = show tick */
.select-card.active::after {
  content: "☑️";
  background: #007b6a;
  color: white;
}

/* ======================================================
   UNIVERSAL SELECT-CARD CHECK SYSTEM (Works Everywhere)
====================================================== */

/* Base Card */
.select-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: 0.25s ease;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  .select-card:hover {
    transform: scale(1.02);
  }
}

/* Checkbox UI */
.select-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 2px solid #007b6a;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  transition: 0.25s ease;
}

/* Tick when active */
.select-card.active::after {
  background: #007b6a url('images/icons/tick-white.png') center/16px no-repeat;
  border-color: #007b6a;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,123,106,0.4);
}

/* Active highlight */
.select-card.active {
  box-shadow: 0 0 18px rgba(0,123,106,0.35);
  transform: scale(1.03);
}

/* Mobile optimization (bigger tap area) */
@media (max-width: 768px) {
  .select-card::after {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
  }
}
/* ===========================
   GLOBAL (Luxury Theme)
=========================== */

:root {
  --primary: #007b6a;
  --primary-light: #00a88d;
  --dark: #1c1c1c;
  --text-light: #555;
  --bg-light: #f4f8f7;
  --radius: 20px;
}

/* Background section */
.offers-section {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #f7f9f9, #eef5f3);
}

/* Heading */
.offers-title {
  font-size: 2.7rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.offers-subtitle {
  max-width: 760px;
  margin: auto;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 55px;
}

/* ===========================
   OFFERS GRID
=========================== */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 35px;
  padding: 0 10px;
}

/* ===========================
   LUXURY OFFER CARD
=========================== */

.offer-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
  position: relative;
  transition: all 0.45s ease;
  border: 1px solid rgba(0, 123, 106, 0.12);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
}

.offer-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0px 18px 45px rgba(0, 123, 106, 0.35);
  border-color: rgba(0, 123, 106, 0.25);
}

/* Floating Badge */
.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  animation: floatBadge 3s infinite ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

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

/* Card image */
.offer-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-img {
  transform: scale(1.06);
}

/* Title */
.offer-name {
  font-size: 1.5rem;
  margin: 20px 0 8px;
  color: var(--dark);
  font-weight: 700;
}

/* Description */
.offer-desc {
  font-size: 0.98rem;
  padding: 0 24px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Details */
.offer-details {
  list-style: none;
  padding: 0 24px;
  margin: 20px 0;
  color: var(--primary);
  font-weight: 600;
  text-align: left;
}

.offer-details li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

/* Price */
.offer-price {
  text-align: center;
  margin: 16px 0;
  font-size: 1rem;
}

.offer-price strong {
  font-size: 1.8rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: block;
  margin-top: 3px;
}

/* Button */
.offer-btn {
  margin: auto 25px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 123, 106, 0.25);
}

.offer-btn:hover {
  background: linear-gradient(135deg, #005f50, var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 106, 0.35);
}

/* ===========================
   POPUP (Luxury)
=========================== */

.booking-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  padding: 15px;
}

.booking-popup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  top: 0; left: 0;
}

.popup-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  width: 95%;
  max-width: 480px;
  padding: 35px;
  border-radius: 20px;
  position: relative;
  z-index: 3300;
  animation: popupShow 0.35s ease;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,123,106,0.15);
}

@keyframes popupShow {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Close button */
.popup-close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 2rem;
  cursor: pointer;
  font-weight: 300;
  color: #555;
  transition: .3s;
}

.popup-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* Popup heading */
.popup-title {
  text-align: center;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 800;
}

.selected-offer {
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
  color: #333;
}

/* Form fields */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  transition: 0.25s;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.75);
}

.popup-form input:focus,
.popup-form textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(0, 168, 141, 0.25);
  outline: none;
}

/* Submit button */
.popup-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  width: 100%;
  padding: 14px 0;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,123,106,0.3);
}

.popup-submit:hover {
  background: linear-gradient(135deg, #005f50, var(--primary));
}

/* Disable scroll */
.no-scroll {
  overflow: hidden;
}

/* BALANCED PARAGRAPH STYLING */
.hospitality-section {
  text-align: center;
}

.hospitality-text {
  max-width: 750px;   /* keeps paragraph perfectly balanced */
  margin: 18px auto;  /* centers & adds equal spacing */
  font-size: 1.05rem;
  line-height: 1.75;  /* smooth readable line height */
  color: #444;
  text-align: justify;       /* balanced left & right edges */
  text-justify: inter-word;  /* clean word spacing */
}

/* ===========================
   FLOATING WHATSAPP BUTTON (PROFESSIONAL)
=========================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.whatsapp-float a {
  width: 62px;
  height: 62px;
  background: #52F16F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Premium glass shadow */
  box-shadow: 0 10px 22px rgba(0, 123, 106, 0.35),
              0 4px 10px rgba(0,0,0,0.15);

  transition: 0.3s ease;
  animation: whatsappPulse 2.5s infinite ease-in-out;
}

/* Hover effect for desktop */
.whatsapp-float a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 123, 106, 0.45),
              0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);  /* clean white icon */
  pointer-events: none;
}

/* Soft pulse animation (professional subtle effect) */
@keyframes whatsappPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
  .whatsapp-float a {
    width: 55px;
    height: 55px;
    animation: none;   /* disable pulse for battery saving */
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }
}
