/* =========================================
   ROOT VARIABLES & GLOBAL RESET
========================================= */
:root {
  --green: #2e9e3f;
  --accent: #ff9800;
  --card-radius: 22px;
  --max-w: 560px;
  --page-bg: #f6f6f6;
  --text: #222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================================
   HEADER, BRAND & NAVIGATION
========================================= */
.site-header {
  background: linear-gradient(to bottom, #90e0ef, #ffffff);
  color: #006064;
  text-align: center;
  padding: 5px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Brand logo / text */
.brand a {
  font-family: "Pacifico", cursive;
  font-size: 40px;
  color: blue;
  text-decoration: none;
}

/* Alternative brand usage (if inside .website-name or standalone) */
.website-name {
  display: flex;
  align-items: center;
  gap: 4px;
}

.website-name h2 {
  margin: 0;
  font-size: 24px;
  color: blue;
}

#main-nav ul {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}

/* Main nav */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.main-nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 30px;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.9px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-nav a.active {
  border: 2px solid #00cc66;
  background-color: rgba(0, 204, 102, 0.2);
  color: black;
  font-weight: bold;
}

.main-nav ul li a:hover {
  color: darkslateblue;
}

/* Sticky header (generic header element) */
header {
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand img {
  height: 30px;
  margin-right: 10px;
}

/* =========================================
   HAMBURGER MENU (MOBILE NAV)
========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: var(--green);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.hamburger.active span {
  background: red;
}

/* =========================================
   HERO & SLIDESHOW (HOME)
========================================= */
/* Full-screen slideshow */
.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: none;
  width: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Slide text overlay */
.slide-text {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
}

.slide-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide-text h3 {
  font-size: 1.2rem;
  font-weight: normal;
}

.si {
  text-align: left;
  font-size: 100px;
  line-height: 1.4;
  font-size: clamp(2rem, 5vw, 2rem);
}

.i {
  color: #00b4d8;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", sans-serif;
}

/* Slideshow arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 3px;
  user-select: none;
  transform: translateY(-50%);
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Slideshow dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}

/* Responsive slideshow */
@media (max-width: 768px) {
  .slideshow {
    height: 70vh;
  }
  .slide-text h1 {
    font-size: 2rem;
  }
  .slide-text h3 {
    font-size: 4rem;
    padding: 0 10px;
  }
  .prev,
  .next {
    font-size: 18px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .slideshow {
    height: 60vh;
  }
  .slide-text {
    width: 90%;
    padding: 10px;
  }
  .slide-text h1 {
    font-size: 1.6rem;
  }
  .slide-text h3 {
    font-size: 4rem;
  }
  .prev,
  .next {
    font-size: 18px;
    padding: 8px;
  }
}

/* Contact page hero (overlay on image) */
.hero {
  background-image: url("contact.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* =========================================
   GRID LAYOUTS & CARDS
========================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 90%;
  margin: 40px auto;
}

.grid-3 a {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(49, 140, 210, 0.08);
  transition: all 0.3s ease;
}

.grid-3 a:hover {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Grid-4 (icon buttons like call/WhatsApp/book) */
.grid-4 {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.grid-4 a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.grid-4 a:hover {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  transform: translateY(-4px);
}

.btn-icon {
  width: 32px;
  height: 32px;
}

.grid-4 .call-btn,
.grid-4 .whatsapp-btn,
.grid-4 .book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.grid-4 .call-btn {
  background: #007bff;
  color: white;
  border: 2px solid #0056b3;
}

.grid-4 .whatsapp-btn {
  background: #25d366;
  color: white;
  border: 2px solid #128c7e;
}

.grid-4 .book-btn {
  background: #ff5722;
  color: white;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1.1rem;
  border: 2px solid #e64a19;
}

.grid-4 .call-btn:hover {
  background: #0056b3;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.6);
}

.grid-4 .whatsapp-btn:hover {
  background: #128c7e;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}

.grid-4 .book-btn:hover {
  background: #e64a19;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.6);
}

/* Round size */
.grid-4 .call-btn,
.grid-4 .whatsapp-btn {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
}

.grid-4 .btn-icon {
  transition: transform 0.3s ease;
}

.grid-4 .call-btn:hover .btn-icon,
.grid-4 .whatsapp-btn:hover .btn-icon {
  transform: scale(1.2);
}

/* Mobile floating behaviour for these 3 buttons */
@media (max-width: 768px) {
  .grid-4 {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .grid-4 .call-btn,
  .grid-4 .whatsapp-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    bottom: 80px;
    left: 20px;
    z-index: 9999;
  }

  .grid-4 .whatsapp-btn {
    bottom: 140px;
    right: 20px;
  }

  .grid-4 .book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 14px 24px;
  }
}

/* Desktop floating position */
@media (min-width: 769px) {
  .grid-4 .book-btn,
  .grid-4 .call-btn,
  .grid-4 .whatsapp-btn {
    position: fixed;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .grid-4 .call-btn {
    bottom: 100px;
    left: 30px;
  }

  .grid-4 .whatsapp-btn {
    bottom: 160px;
    right: 30px;
  }

  .grid-4 .book-btn {
    bottom: 30px;
    right: 30px;
  }
}

/* Generic card */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  border: 3px solid #d8e2dc;
  padding: 20px;
  margin: 15px 0;
  box-sizing: border-box;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.card h3 {
  font-size: 1.4rem;
  margin: 16px 0 8px;
  color: #0b8457;
}

.card p {
  font-size: 1rem;
  color: #555;
  padding: 0 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* .ash as card-type block */
.ash {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  margin: 15px 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border: 3px solid #d8e2dc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ash:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.ash img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  display: block;
}

.ash h3 {
  font-size: 1.4rem;
  margin: 16px 0 8px;
  color: #0b8457;
}

.ash p {
  font-size: 1rem;
  color: #555;
  padding: 0 15px;
}

/* Simple title */
.title {
  color: #390099;
  text-underline-offset: 6px;
  text-align: center;
  font-size: 2rem;
  margin: 20px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Attraction list */
.attraction-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.attraction-list li {
  margin: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.attraction-list p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.attraction-list li:hover p {
  color: #457b9d;
  transform: scale(1.1);
}

/* Text section with left align */
.as {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  text-align: left;
  line-height: 1.7;
  font-family: Arial, sans-serif;
}

.as h1,
.as h2,
.as p,
.as ul,
.as li {
  text-align: left;
}

.as h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.as h2 {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #34495e;
}

.as ul {
  margin: 10px 0 20px 20px;
  padding-left: 20px;
  list-style-type: disc;
}

/* =========================================
   ABOUT SECTION & SERVICES
========================================= */
.about-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #023047;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #219ebc;
  color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #023047;
}

.services-section {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

.services-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.services-section h2 span {
  color: #219ebc;
}

.service {
  display: inline-block;
  width: 30%;
  margin: 10px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service .icon {
  font-size: 40px;
  color: #55a630;
  margin-bottom: 15px;
}

.service h3 {
  font-size: 1.2em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .service {
    width: 45%;
  }
  .service .icon {
    font-size: 35px;
  }
}

@media screen and (max-width: 480px) {
  .service {
    width: 90%;
    margin: 10px auto;
  }
  .service .icon {
    font-size: 30px;
  }
  .services-section h2 {
    font-size: 1.6em;
  }
  .service h3 {
    font-size: 1em;
  }
}

/* =========================================
   PACKAGES INTRO (IMAGE + TEXT)
========================================= */
.packages-intro {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.packages-intro h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.packages-intro h1 span {
  color: #00b4d8;
}

.packages-intro h2 {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 20px;
}

.packages-intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.packages-intro .about-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
}

.packages-intro .about-text {
  flex: 1;
}

.x {
  color: #0077b6;
}

@media (max-width: 768px) {
  .packages-intro {
    flex-direction: column;
  }
  .packages-intro .about-text h1 {
    font-size: 2rem;
  }
  .packages-intro .about-text h2 {
    font-size: 1.5rem;
  }
}

/* =========================================
   THINGS TO DO SECTION
========================================= */
.things-to-do {
  padding: 48px 16px;
  background: linear-gradient(180deg, #f9fbfa 0%, #ffffff 100%);
  color: #0f1720;
}

.things-to-do .container {
  max-width: 1100px;
  margin: 0 auto;
}

.things-header {
  text-align: center;
  margin-bottom: 28px;
}

.things-header h2 {
  font-size: 28px;
  margin: 0;
  letter-spacing: 0.2px;
}

.things-header .subtitle {
  color: #536471;
  margin-top: 6px;
  font-size: 15px;
}

/* 'We' grid boxes */
.wes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.we {
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(3, 7, 18, 0.03);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.we:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.1);
}

.we .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 112, 74, 0.06), rgba(0, 112, 74, 0.03));
  color: #00704a;
}

.we h3 {
  margin: 0;
  font-size: 18px;
}

.we p {
  margin: 0;
  color: #405466;
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
}

.we .learn {
  display: inline-block;
  margin-top: 6px;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  color: #00704a;
  border: 1px solid rgba(0, 112, 74, 0.12);
  transition: background 180ms ease, color 180ms ease;
}

.we .learn:hover {
  background: #00704a;
  color: #fff;
  border-color: transparent;
}

@media (max-width: 1000px) {
  .wes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .things-to-do {
    padding: 28px 12px;
  }
  .things-header h2 {
    font-size: 22px;
  }
  .wes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .we {
    padding: 14px;
  }
  .we .icon {
    width: 48px;
    height: 48px;
  }
}

/* =========================================
   GALLERY & ROOM FEATURES
========================================= */
.gallery {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.gallery-title {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 36px;
  color: #ff8800;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }
}

.room-features {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.room-features h3 {
  font-family: "Pacifico", cursive;
  font-size: 32px;
  color: #ff8800;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.room-features .feature-summary {
  font-size: 18px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.room-features .feature-list {
  list-style-type: disc;
  padding-left: 40px;
  color: #555;
  font-size: 16px;
}

.room-features .feature-list li {
  margin-bottom: 10px;
}

/* =========================================
   MAP SECTION
========================================= */
.map-title {
  font-family: "Pacifico", cursive;
  font-size: 36px;
  color: #ff8800;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================
   CONTACT INFO BAR (ADDRESS / PHONE / MAIL)
========================================= */
.contact-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.contact-section .website-name {
  margin-right: 80px;
  margin-bottom: 20px;
}

.contact-section .website-name h2 {
  margin: 0;
  font-size: 2.1rem;
  color: blue;
}

.contact-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-box h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-box p {
  margin: 0;
  margin-right: 20px;
}

.contact-box a {
  color: #219ebc;
}

.contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-section .website-name {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================================
   CONTACT FORM SECTION
========================================= */
.contact-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contact-form-container label {
  display: block;
  margin-top: 10px;
  color: #555;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.date-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.date-field {
  flex: 1;
  min-width: 120px;
}

/* Submit button (WhatsApp-style) */
.contact-form-container button {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background-color: #25d366;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form-container button:hover {
  background-color: #128c7e;
}

@media screen and (max-width: 600px) {
  .contact-form-container {
    padding: 20px;
  }

  .date-fields {
    flex-direction: column;
  }

  .date-field {
    width: 100%;
  }

  .contact-form-container h2 {
    font-size: 22px;
  }

  .contact-form-container button {
    font-size: 14px;
    padding: 10px;
  }
}

/* Confirmation animation */
@keyframes submitAnimation {
  0% {
    transform: scale(1);
    background-color: #25d366;
  }
  50% {
    transform: scale(1.05);
    background-color: #128c7e;
  }
  100% {
    transform: scale(1);
    background-color: #25d366;
  }
}

button.animate-submit {
  animation: submitAnimation 0.3s ease;
}

/* =========================================
   MEALS / ACTIVITIES & NOTES (PACKAGE CARDS)
========================================= */
.page {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* Shared containers */
.meal-container,
.a,
.ss,
.note-container {
  flex: 1 1 45%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  box-sizing: border-box;
  border: 3px solid #00b4d8;
}

/* Meals left box */
.meal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.meal-icon {
  font-size: 2rem;
}

.meal-header h2 {
  font-size: 1.8rem;
  color: #2c6e49;
  margin: 0;
}

.meal-section {
  margin-bottom: 18px;
  padding-left: 10px;
  border-left: 3px solid transparent;
}

.meal-section h3 {
  color: #0077b6;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.meal-section p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.meal-section strong {
  color: #d00000;
}

/* Activities right box (.a) */
.a .top-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.a .icon {
  width: 40px;
  height: 40px;
  font-size: 2rem;
}

.a h2 {
  font-size: 1.6rem;
  color: #2c6e49;
  margin: 0;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Checklist style card (.ss) */
.ss {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: var(--card-radius);
  padding: 26px 26px 32px;
}

.ss-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.icon-top {
  width: 28px;
  height: 28px;
  fill: var(--green);
  stroke: var(--green);
  stroke-width: 0.6;
  flex-shrink: 0;
}

.ss-top h2 {
  font-size: 26px;
  margin: 6px 0 12px;
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 20px;
  line-height: 1.1;
}

.check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check svg {
  width: 18px;
  height: 18px;
  stroke: #2a9d8f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.item-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.emoji {
  font-size: 20px;
  line-height: 1;
  margin-left: 6px;
}

/* Notes box */
.note-container h3 {
  font-size: 1.3em;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.note-list {
  list-style: none;
  padding-left: 0;
}

.note-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #222;
}

.note-list li::before {
  content: "✔";
  color: #16a34a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Remove hover/animation from ss block */
.ss,
.ss * {
  transition: none !important;
}

@media (max-width: 992px) {
  .page {
    flex-direction: column;
  }
  .meal-container,
  .a,
  .ss,
  .note-container {
    flex: 1 1 100%;
  }
}

/* =========================================
   FLOATING ROUND BUTTONS (SEPARATE CASE)
========================================= */
.call-btn {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  position: fixed;
  bottom: 140px;
  left: 20px;
  z-index: 1000;
}

.btn-icon {
  width: 50px;
  height: 50px;
}

/* General floating buttons with SVGs */
.floating-btn {
  position: fixed;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.floating-btn svg {
  width: 36px;
  height: 36px;
  fill: #000;
}

.floating-btn.left {
  left: 18px;
}

.floating-btn.right {
  right: 18px;
}

@media (max-width: 440px) {
  .check-list li {
    font-size: 17px;
  }
  .floating-btn {
    width: 56px;
    height: 56px;
  }
  .check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
}

/* =========================================
   CTA BUTTONS (EXPLORE / EX-BTN)
========================================= */
.explore-btn {
  display: block;
  margin: 20px auto;
  padding: 12px 25px;
  background-color: #00704a;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background-color: #005c3c;
}

.ex-btn {
  background: linear-gradient(135deg, #ff8800, #ff6600);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(255, 136, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 200px;
  text-align: center;
}

/* Hover glow */
.ex-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.6), 0 0 20px rgba(255, 136, 0, 0.4);
  background: linear-gradient(135deg, #ff6600, #ff8800);
}

/* Shine animation */
.ex-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: all 0.7s ease;
}

.ex-btn:hover::before {
  transform: rotate(45deg) translateX(200%);
}

/* =========================================
   SMALL TEXT / OFFER / PRICE CLASSES
========================================= */
.offer-text {
  color: #780000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-top: 5px;
  font-size: 10px;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 8px;
  animation: blinkOffer 1.5s infinite;
}

@keyframes blinkOffer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.rs {
  font-size: 20px;
}

.pp {
  font-size: 10px;
}

/* Extra decorative text */
.trip {
  font-family: "Pacifico", cursive;
  font-size: 36px;
  color: #ff8800;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  letter-spacing: 1px;
}
/* =========================================
   GLOBAL MOBILE / TABLET TWEAKS
   (ADD THIS AT THE END OF YOUR CSS)
========================================= */

/* ---------- BIG SCREENS -> shrink a bit after 1200px ---------- */
@media (max-width: 1200px) {
  .container {
    padding: 16px;
  }
}

/* ---------- TABLET: fix two-column layouts & cards ---------- */
@media (max-width: 992px) {
  /* Generic page two-column blocks to stack */
  .page {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .meal-container,
  .a,
  .ss,
  .note-container {
    flex: 1 1 100%;
    width: 100%;
  }

  .wes {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-section h2 {
    font-size: 1.8rem;
  }

  .about-container,
  .packages-intro {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .packages-intro .about-text {
    text-align: center;
  }
}

/* ---------- MOBILE: header, menu, slideshow, grids, buttons ---------- */
@media (max-width: 768px) {
  /* HEADER + NAV */
  .header-inner {
    justify-content: space-between;
    padding: 0 12px;
  }

  .hamburger {
    display: flex;
  }

  .main-nav ul {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #90e0ef, #ffffff);
    padding: 10px 0;
    gap: 10px;
    display: none; /* hidden by default */
    z-index: 999;
  }

  .main-nav ul.show {
    display: flex; /* show when JS adds .show */
  }

  .main-nav ul li a {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }

  .brand a {
    font-size: 28px;
  }

  /* HERO / SLIDESHOW */
  .slideshow {
    height: 70vh;
  }

  .slide-text {
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    padding: 10px;
  }

  .slide-text h1 {
    font-size: 1.8rem;
  }

  .slide-text h3 {
    font-size: 1rem;
  }

  /* GRID 3 / CARDS */
  .grid-3 {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px auto;
  }

  .card,
  .ash {
    margin: 10px auto;
  }

  /* SERVICES */
  .service {
    width: 90%;
  }

  /* THINGS TO DO */
  .wes {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* GALLERY */
  .gallery {
    padding: 16px 10px;
  }

  .gallery-item {
    height: 200px;
  }

  /* CONTACT STRIP */
  .contact-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-section .website-name {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 16px;
  }

  /* CONTACT FORM */
  .contact-form-container {
    padding: 20px;
  }

  .date-fields {
    flex-direction: column;
  }

  /* ABOUT + PACKAGES */
  .about-container,
  .packages-intro {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .packages-intro .about-text {
    text-align: center;
  }

  .about-text h2,
  .packages-intro h1 {
    font-size: 1.8rem;
  }

  /* FLOATING BUTTONS – keep 3, but not huge */
  .grid-4 .call-btn,
  .grid-4 .whatsapp-btn,
  .grid-4 .book-btn {
    width: 52px;
    height: 52px;
    font-size: 0.85rem;
  }

  .grid-4 .book-btn {
    width: auto;
    padding: 10px 20px;
  }

  /* Text-heavy blocks: make them more readable */
  .as,
  .room-features,
  .note-container {
    padding: 16px;
  }
}

/* ---------- VERY SMALL SCREENS (phones < 480px) ---------- */
@media (max-width: 480px) {
  .brand a {
    font-size: 24px;
  }

  .slide-text h1 {
    font-size: 1.4rem;
  }

  .slide-text h3 {
    font-size: 0.9rem;
  }

  .gallery-item {
    height: 180px;
  }

  .trip,
  .map-title {
    font-size: 26px;
  }

  .room-features h3 {
    font-size: 26px;
  }

  .services-section h2 {
    font-size: 1.5rem;
  }

  .ex-btn,
  .explore-btn {
    width: 80%;
    font-size: 14px;
    padding: 10px 0;
  }

  .website-name h2 {
    font-size: 1.4rem;
  }
}
.website-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.website-name img {
  width: 40px;
  height: auto;
}

.website-name h2 {
  margin: 0;
  font-size: 2.1rem;
  color: blue;
  font-family: "Pacifico", cursive;
}
.website-name {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: blue;
  font-family: "Pacifico", cursive;
  font-size: 32px;
}

.brand-logo {
  width: 50px;
  height: auto;
}
/* ================= FIXED / STICKY SITE HEADER ================= */
.site-header {
  background: linear-gradient(to bottom, #90e0ef, #ffffff);
  color: #006064;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Flex layout: brand + nav + hamburger */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand text */
.brand a {
  font-family: "Pacifico", cursive;
  font-size: 32px;
  color: blue;
  text-decoration: none;
}

/* Desktop nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Links inside nav (works with your existing styles) */
.main-nav ul li a {
  font-size: 18px;
  padding: 8px 12px;
}

/* Hamburger default hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: var(--green);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.hamburger.active span {
  background: red;
}

/* ================= MOBILE HEADER BEHAVIOUR ================= */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 12px;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Nav becomes dropdown */
  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    position: absolute;
    top: 60px;          /* height of header */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #90e0ef, #ffffff);
    padding: 10px 0;
    gap: 10px;
    display: none;      /* hidden by default */
    z-index: 999;
  }

  /* Shown when JS adds .show */
  .main-nav ul.show {
    display: flex;
  }

  .main-nav ul li a {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}
/* ========== SLIDESHOW BASE STYLES ========== */
.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;          /* full screen on desktop */
  overflow: hidden;
}

.slides {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* image fills nicely */
  display: block;
}

/* Text over image */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  color: #fff;
  text-align: left;
}

/* Main heading text */
.si {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);  /* scales automatically */
  line-height: 1.4;
}

/* ========== ARROWS ========== */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  user-select: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.prev { left: 12px; }
.next { right: 12px; }

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* ========== DOTS ========== */
.dots {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #219ebc;
}

/* ========== TABLET / MOBILE ========== */
@media (max-width: 768px) {
  .slideshow {
    height: 70vh;          /* not too tall on phones */
  }

  .slide-text {
    top: 55%;              /* push text a bit down */
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .si {
    font-size: 2rem;     /* smaller but readable */
  }

  .prev,
  .next {
    font-size: 18px;
    padding: 8px 10px;
  }

  .dot {
    height: 8px;
    width: 8px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .slideshow {
    height: 60vh;
  }

  .si {
    font-size: 1.8rem;
  }

  .slide-text {
    max-width: 95%;
  }
}
/* ====== GRID BASE ====== */
.grid-45 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop */
  gap: 25px;
  width: 90%;
  margin: 30px auto;
}

/* Each card */
.saf {
  background: #fff;
  border-radius: 12px;
  padding-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.saf img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ====== Tablet (2 cards per row) ====== */
@media (max-width: 992px) {
  .grid-45 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .saf img {
    height: 200px;
  }
}

/* ====== Mobile (1 card per row) ====== */
@media (max-width: 600px) {
  .grid-45 {
    grid-template-columns: 1fr;
    width: 95%;
    gap: 18px;
  }

  .saf {
    padding-bottom: 15px;
  }

  .saf img {
    height: 180px;
  }

  .saf h3 {
    font-size: 1.2rem;
  }

  .saf h4 {
    font-size: 1rem;
  }
}
.map-wrapper {
  max-width: 900px;
  margin: 30px auto;
}

.map-embed {
  position: relative;
  width: 100%;
  height: 50vh;           /* 🔥 50% of the screen height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 480px) {
  .map-embed {
    height: 0vh;   /* slightly taller on small phones */
  }
}
.offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff6600;
  color: #fff;
  padding: 14px 22px;      /* increased size */
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;         /* bigger font */
  text-align: center;
  line-height: 1.4;
  z-index: 15;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);

  animation: blinkBadge 1.2s infinite alternate ease-in-out;
}

/* 🔥 Blinking Animation */
@keyframes blinkBadge {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.4; transform: scale(1.05); }
}

/* 📱 Mobile */
@media (max-width: 480px) {
  .offer-badge {
    font-size: 16px;
    padding: 10px 16px;
    top: 12px;
    right: 12px;
  }
}
/* Contact / Map section */
.contact-details {
  padding: 20px 16px;
  text-align: center;
}

.map-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* Wrapper to center the map */
.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive map box */
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;  /* 16:9 ratio – gives height */
  overflow: hidden;
  border-radius: 12px;
}

/* Make iframe fill the box */
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: small padding on mobile */
@media (max-width: 600px) {
  .contact-details {
    padding: 16px 10px;
  }
}

