
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

/* HEADER */
header {
  background: #ee8e1c;
  color: #fff;
  padding: 15px 0;
}

.container {
  width: 90%;
  height: 58px;
  margin: auto;
}

header h1 {
  float: left;
}

nav ul {
  float: right;
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header::after {
  content: "";
  display: block;
  clear: both;
}

/* SLIDER */
.slider {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slider-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 20px;
  border-radius: 6px;
}

/* SECTION */
section {
  padding: 50px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ee8e1c;
}

/* ABOUT */
.about p {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* PACKAGES */
.packages {
  background: #f4f4f4;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.package {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* COUNTER */
.counter {
  background: #ee8e1c;
  color: white;
}

.counter-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.counter h3 {
  font-size: 32px;
}

/* TESTIMONIALS */
.testimonial {
  max-width: 700px;
  margin: 15px auto;
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #ee8e1c;
}

/* CONTACT */
.contact form {
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

.contact button {
  width: 100%;
  padding: 12px;
  background: #ee8e1c;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  nav ul {
    float: none;
    text-align: center;
  }
  nav ul li {
    display: block;
    margin: 10px 0;
  }
  header h1 {
    float: none;
    text-align: center;
  }
  .slider-content {
    left: 20px;
    right: 20px;
  }
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Desktop nav */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}
/* Base header */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Desktop menu */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  /* Side menu container */
  nav {
    position: fixed;
    top: 0;
    right: -260px;            /* hidden on right */
    width: 260px;
    height: 100vh;
    background: #ee8e1c;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 60px;
  }
@media (max-width: 768px) {

  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
  }

}

  /* When menu is open */
  nav.active {
    right: 0;                /* slide in */
  }

  nav ul {
    flex-direction: column;
    gap: 5px;
    padding: 20px;
  }

  nav ul li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }

  .call-btn a {
    background: #0d6efd;
    color: #fff;
    border-radius: 5px;
    text-align: center;
  }
}


.breadcrumbs {
  background: #f2f2f2;
  font-size: 14px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* Links */
.breadcrumbs a {
  color: #ee8e1c;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Separator */
.breadcrumbs .separator {
  color: #777;
  font-size: 14px;
}

/* Current page */
.breadcrumbs .current {
  color: #555;
  white-space: nowrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 13px;
  }

  .breadcrumbs .container {
    line-height: 1.5;
  }

  /* Allow current page to wrap nicely */
  .breadcrumbs .current {
    white-space: normal;
  }
}
/* MAIN CONTENT BOX */
.shadow {
  background: #ffffff;
  line-height: 1.8;
}

/* Headings */
.shadow h1 {
  font-size: 28px;
  color: #ee8e1c;
  font-weight: 700;
}

.shadow h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #ee8e1c;
  font-weight: 600;
}

.shadow h3 {
  font-size: 18px;
  margin-top: 25px;
  color: #333;
  font-weight: 600;
}

.shadow h4 {
  font-size: 17px;
  margin-top: 20px;
  color: #444;
}

/* Paragraphs */
.shadow p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #444;
}

/* Lists */
.shadow ul,
.shadow ol {
  margin: 10px 0 20px 20px;
  font-size: 15px;
  color: #444;
}

.shadow li {
  margin-bottom: 8px;
}

/* Links */
.shadow a {
  color: #ee8e1c;
  text-decoration: none;
  font-weight: 500;
}

.shadow a:hover {
  text-decoration: underline;
}

/* Alerts (Bootstrap-friendly) */
.alert {
  border-radius: 8px;
  margin: 20px 0;
}

.alert-primary { background: #e7f1ff; }
.alert-success { background: #e8f8f0; }
.alert-warning { background: #fff6e5; }
.alert-danger { background: #fdecea; }
.alert-info { background: #eef7ff; }

/* Row layout fix (Bootstrap-like) */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-md-6 {
  flex: 0 0 48%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .shadow {
    padding: 20px !important;
  }

  .shadow h1 {
    font-size: 22px;
  }

  .shadow h2 {
    font-size: 19px;
  }

  .shadow h3 {
    font-size: 17px;
  }

  .shadow p,
  .shadow li {
    font-size: 14px;
  }

  .col-md-6 {
    flex: 0 0 100%;
  }
}
html, body {

}

body {
  display: flex;
  flex-direction: column;
}

/* ===== FOOTER FIX ===== */
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  margin-top: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    font-size: 13px;
    padding: 12px 8px;
  }
}
/* ================= ABOUT SECTION ================= */
.about {
  background: #f9f9f9;
  padding: 40px 0;
}

.about .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ================= CONTENT BOX ================= */
.shadow {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  line-height: 1.8;

  /* Prevent distortion */
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Headings */
.shadow h1 {
  font-size: 28px;
  color: #ee8e1c;
  font-weight: 700;
  margin-bottom: 15px;
}

.shadow h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #ee8e1c;
  font-weight: 600;
}

.shadow h3 {
  font-size: 18px;
  margin-top: 25px;
  color: #333;
  font-weight: 600;
}

.shadow h4 {
  font-size: 17px;
  margin-top: 20px;
  color: #444;
}

/* Text */
.shadow p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #444;
}

/* Lists */
.shadow ul,
.shadow ol {
  padding-left: 20px;
  margin: 10px 0 20px;
  font-size: 15px;
  color: #444;
}

.shadow li {
  margin-bottom: 8px;
}

/* Links */
.shadow a {
  color: #ee8e1c;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.shadow a:hover {
  text-decoration: underline;
}

/* ================= ALERT BOXES ================= */
.alert {
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.alert-primary { background: #e7f1ff; }
.alert-success { background: #e8f8f0; }
.alert-warning { background: #fff6e5; }
.alert-danger  { background: #fdecea; }
.alert-info    { background: #eef7ff; }

/* ================= ROW / COLUMN FIX ================= */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-md-6 {
  width: 48%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .shadow {
    padding: 18px;
  }

  .shadow h1 {
    font-size: 22px;
  }

  .shadow h2 {
    font-size: 19px;
  }

  .shadow h3 {
    font-size: 17px;
  }

  .shadow p,
  .shadow li {
    font-size: 14px;
  }

  .col-md-6 {
    width: 100%;
  }
}
/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ================= MODAL BOX ================= */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  animation: zoomIn .4s ease;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* ================= CONTENT ================= */
.modal-content img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}

/* ================= FORM ================= */
.bookingcform {
  padding: 20px;
}

.bookingcform h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #1b4d3e;
}

.bookingcform input,
.bookingcform select,
.bookingcform textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.bookingcform button {
  width: 100%;
  background: #d9534f;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= ANIMATION ================= */
@keyframes zoomIn {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .modal-box {
    width: 95%;
  }
}
/* Hide close button by default (desktop) */
.close-btn {
  display: none;
}

/* Show close button only on mobile */
@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
}


