:root {
  --primary: #34cc3f;
  --secondary: #08215c;
  --dark: #08215c;
  --green: #2d6a4f;
  --cream: #fff8f0;
  --cream2: #fef0dc;
  --light: #f9f5f0;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: clip;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ===================== TOP BAR ===================== */
#topbar {
  background: #111;
  padding: 8px 0;
  font-size: 0.82rem;
}
#topbar span {
  color: #fff;
  margin-right: 16px;
}
#topbar span i {
  color: #fff;
  margin-right: 5px;
}
#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}
#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}
.ttag {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================== NAVBAR ===================== */
#nav {
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(52, 204, 63, 0.35);
}
.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.bname span {
  color: var(--primary);
}
.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}
.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #fff !important;
  padding: 26px 13px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(52, 204, 63, 0.08);
  color: var(--primary);
}
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(52, 204, 63, 0.3);
  margin-left: 6px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(52, 204, 63, 0.4);
}
.nav-drawer-head,
.nav-drawer-backdrop {
  display: none;
}

/* ===================== DROPDOWN SUBMENU ===================== */
.nav-item.dropdown {
  position: relative;
}
.nav-item.dropdown .dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 28px !important;
}
.nav-item.dropdown .dropdown-toggle::before {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 12px;
  width: auto;
  height: auto;
  border: 0;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  color: currentColor;
  opacity: 0.8;
  transform: translateY(-50%);
  transition: color 0.3s ease, opacity 0.3s ease;
}
.nav-item.dropdown .dropdown-toggle::after {
  content: none !important;
  display: none !important;
}
.nav-item.dropdown.show .dropdown-toggle::before {
  content: "▲";
  opacity: 1;
}



.nav-item.dropdown.show > .nav-link {
  color: var(--primary) !important;
}
.nav-item.dropdown.show > .nav-link::after {
  width: 0;
}
.dropdown-menu {
  background: linear-gradient(180deg, rgba(10, 34, 92, 0.98), rgba(6, 23, 63, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  padding: 10px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  min-width: 240px;
  position: relative;
  overflow: hidden;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
  pointer-events: none;
}
.nav-item.dropdown.show > .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  padding: 11px 20px 11px 38px;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 8px;
  border-radius: 10px;
  width: calc(100% - 16px);
}
.dropdown-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 18px;
  top: 50%;
  opacity: 0.55;
  transform: translate(-6px, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(52, 204, 63, 0.14);
  color: #fff;
  padding-left: 42px;
  outline: none;
}
.dropdown-item:hover::before,
.dropdown-item:focus::before {
  opacity: 1;
  transform: translate(0, -50%);
  box-shadow: 0 0 0 5px rgba(52, 204, 63, 0.14);
}
.dropdown-item:active {
  background: var(--primary);
  color: var(--secondary);
  outline: none;
}
.dropdown-item:focus-visible {
  outline: none;
}
@media (max-width: 991.98px) {
  html.nav-drawer-open,
  body.nav-drawer-open {
    overflow: hidden;
  }
  .navbar-toggler {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(52, 204, 63, 0.2);
  }
  .nav-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(2, 10, 28, 0.56);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
  }
  body.nav-drawer-open .nav-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #navmenu.navbar-collapse {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 360px);
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: max(18px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
    background: linear-gradient(180deg, rgba(8, 33, 92, 0.99), rgba(5, 20, 56, 0.99));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 48px rgba(0, 0, 0, 0.34);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1002;
  }
  #navmenu.navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    flex: 0 0 auto;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  .nav-drawer-brand img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
  }
  .nav-drawer-brand strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
  }
  .nav-drawer-brand span {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
  }
  .nav-drawer-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .nav-drawer-close:hover {
    background: rgba(52, 204, 63, 0.16);
    color: var(--primary);
  }
  #navmenu .navbar-nav {
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0 !important;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #navmenu .navbar-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  #navmenu .nav-item {
    width: 100%;
    min-width: 0;
  }
  #navmenu .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 14px 18px !important;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow-wrap: anywhere;
  }
  #navmenu .navbar-nav .nav-link::after {
    display: none;
    width: 0 !important;
  }
  #navmenu .nav-item.dropdown.show > .nav-link::after {
    display: none !important;
    width: 0 !important;
  }
  #navmenu .navbar-nav .nav-link:hover,
  #navmenu .navbar-nav .nav-link:focus,
  #navmenu .navbar-nav .nav-link.active,
  #navmenu .nav-item.dropdown.show > .nav-link {
    background: rgba(52, 204, 63, 0.14);
    box-shadow: inset 0 0 0 1px rgba(52, 204, 63, 0.22);
    color: #fff !important;
  }
  .nav-item.dropdown .dropdown-toggle {
    width: 100%;
    display: block;
    padding-right: 42px !important;
  }
  .nav-item.dropdown .dropdown-toggle::before {
    right: 18px;
    opacity: 0.92;
  }
  .nav-item.dropdown.show .dropdown-toggle::before {
    color: var(--primary);
  }
  .dropdown-menu {
    position: static;
    inset: auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
    border-top-width: 1px;
    border-radius: 12px;
    box-shadow: none;
    padding: 8px 0;
    margin: 4px 0 12px 10px;
    min-width: auto;
    max-width: 100%;
    width: calc(100% - 10px);
    transform: none;
  }
  .dropdown-menu::before {
    display: none;
  }
  .dropdown-item {
    color: rgba(255, 255, 255, 0.94);
    padding: 11px 16px 11px 34px;
    font-size: 0.84rem;
    font-weight: 500;
    margin: 2px 8px;
    width: calc(100% - 16px);
  }
  .dropdown-item::before {
    width: 5px;
    height: 5px;
    left: 16px;
    opacity: 0.65;
    transform: translate(0, -50%);
  }
  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(52, 204, 63, 0.14);
    color: #fff;
    padding-left: 34px;
  }
  .dropdown-item:hover::before,
  .dropdown-item:focus::before {
    box-shadow: none;
  }
  #navmenu .nav-actions {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
  }
  #navmenu .nav-actions .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    padding: 12px 18px !important;
    border-radius: 12px;
    font-size: 0.83rem !important;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  /* Keep the page-level back-to-top control behind the open drawer. */
  body.nav-drawer-open #btt {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) !important;
  }

  #navmenu :focus-visible,
  #navDrawerToggle:focus-visible,
  .nav-drawer-close:focus-visible {
    outline: 3px solid rgba(52, 204, 63, 0.65);
    outline-offset: 3px;
  }
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}
.slbl {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.stitle span {
  color: var(--primary);
}
.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: var(--primary);
  margin: 0 auto 12px;
}
.sline.lft {
  margin-left: 0;
}
.sdesc {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.8;
}
.long-copy {
  text-align: justify;
  line-height: 1.9;
  text-justify: inter-word;
}
.os-section p[style*="font-size:0.95rem"] {
  text-align: justify;
  text-justify: inter-word;
}
.btn-red {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(52, 204, 63, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(52, 204, 63, 0.45);
  color: #fff;
}
.btn-blue {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(8, 33, 92, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(8, 33, 92, 0.45);
  color: #fff;
}
.btn-cream {
  background: var(--cream);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-cream:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  color: var(--dark);
}

/* ===================== WHY VISIT CARDS ===================== */
#why-visit {
  padding: 80px 0;
}
.wcard {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
  height: 100%;
}
.wcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.wicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(52, 204, 63, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--primary);
}
.wcard h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.wcard p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ===================== HERO ===================== */
#hero {
  background-color: var(--cream);
  background-image: 
    linear-gradient(rgba(52, 204, 63, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 204, 63, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}
/* WILDLIFE IMAGE BOX CAROUSEL (3 ACROSS) */
.wlcard {
  height: 340px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #10254f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  transition: transform 0.4s, box-shadow 0.4s;
}
.wlcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}
.wlimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.wlcard:hover .wlimg {
  transform: scale(1.04);
}
.wlcoverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 56, 0.08) 5%, rgba(5, 20, 56, 0.42) 48%, rgba(4, 10, 28, 0.86) 100%);
}
.wlcbody {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
}
.wlcbody h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  color: #fff;
}
.wlcbody p {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}
.wlctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.wlctrl-btn:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width:768px) {
  .wlcard { height: 260px; }
  .wlcbody { padding: 18px; }
  .wlcbody h3 { font-size: 1rem; }
  .wlcbody p { font-size: 0.78rem; }
}

/* PROCESS FLOW */
.process-flow {
  max-width: 820px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.process-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  position: relative;
  padding-top: 4px;
}
.process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(52,204,63,0.3);
}
.process-circle::before {
  content: "";
  position: absolute;
  top: calc(40px + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 40px - 4px);
  background: var(--primary);
  opacity: 0.3;
}
.process-step:last-child .process-circle::before {
  display: none;
}
.process-arrow {
  font-size: 0.65rem;
  color: var(--primary);
  opacity: 0.4;
  margin-top: 10px;
}
.process-body {
  flex: 1;
  padding: 0 0 36px 20px;
}
.process-step:last-child .process-body {
  padding-bottom: 0;
}
.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
}
.process-desc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
@media (min-width:768px) {
  .process-flow {
    display: flex;
    gap: 60px;
  }
  .process-step {
    flex-direction: column;
    flex: 1;
    align-items: center;
    text-align: center;
  }
  .process-circle {
    width: auto;
    padding-top: 0;
  }
  .process-circle::before {
    display: none;
  }
  .process-body {
    padding: 16px 0 0;
  }
  .process-arrow {
    display: none !important;
  }
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: calc(100% + 12px);
    width: calc(100% - 40px);
    height: 2px;
    background: var(--primary);
    opacity: 0.2;
  }
  .process-step {
    position: relative;
  }
}
@media (max-width:767px) {
  .process-arrow.d-none { display: block !important; }
}

.stepcard {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
  height: 100%;
  position: relative;
}
.stepcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.stepnum {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: "Playfair Display", serif;
}
.stepcard h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.stepcard p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 480px;
  height: 480px;
  background: none;
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  background: none;
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}
@keyframes fsh {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-28px);
  }
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
}
.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}
.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
}
.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(52, 204, 63, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hdesc {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
}
/* FIX 2 â€” Video play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}
.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.btn-play:hover {
  color: var(--primary);
}
.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hstat .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}
.hstat small {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sdiv {
  width: 1px;
  background: #ddd;
  height: 38px;
  align-self: center;
}
.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(52, 204, 63, 0.14);
}
.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.fl-card { 
  background: #fff;
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
}
.fcard.fc1 {
  top: 55px;
  left: -15px;
  animation: fltc 4s ease-in-out infinite;
}
.fcard.fc2 {
  bottom: 75px;
  right: -25px;
  animation: fltc 4s ease-in-out infinite 1.5s;
}
.fcard.fc3 {
  top: 38%;
  right: -45px;
  animation: fltc 4s ease-in-out infinite 0.8s;
}
@keyframes fltc {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.fcoi.r {
  background: rgba(52, 204, 63, 0.11);
  color: var(--primary);
}
.fcoi.y {
  background: rgba(8, 33, 92, 0.14);
  color: var(--secondary);
}
.fcoi.g {
  background: rgba(45, 106, 79, 0.11);
  color: var(--green);
}
.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.fcsm {
  font-size: 0.66rem;
  color: #999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  padding: 13px 0;
}
.mqwrap {
  overflow: hidden;
}
.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  width: max-content;
  animation: mqrun 22s linear infinite;
}
.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}
.mqitem i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55rem;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: var(--cream);
}
.catcard {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}
.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(52, 204, 63, 0.14);
  border-color: var(--primary);
}
.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}
.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}
.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.catct {
  font-size: 0.73rem;
  color: #bbb;
}

/* ===================== ABOUT ===================== */
#about {
  background: #fff;
}
.astack {
  position: relative;
}
.amain {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.amain img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(52, 204, 63, 0.4);
}
.aexp .anum {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
}
.fti {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}
.ftico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}
.ftico.r {
  background: rgba(52, 204, 63, 0.1);
  color: var(--primary);
}
.ftico.y {
  background: rgba(8, 33, 92, 0.11);
  color: var(--secondary);
}
.ftico.g {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}
.fti:hover .ftico {
  transform: scale(1.1);
}
.fti h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}
.fti p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
#menu {
  background: var(--light);
}
/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(52, 204, 63, 0.24);
}
.mwrap {
  transition: 0.35s;
}
.mwrap.gone {
  display: none !important;
}
.mcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.mcard:hover .mimg img {
  transform: scale(1.09);
}
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--green);
}
.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}
.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}
.mbody {
  padding: 18px;
}
.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}
.mdesc {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(52, 204, 63, 0.28);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.spbg {
  display: none;
}
.sptag {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sptitle {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.sptitle span {
  color: var(--primary);
}
.spdesc {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.cditem {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
}
.cdnum {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
  display: block;
}
.spimgw {
  position: relative;
  text-align: center;
}
.spglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: none;
}
.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: drop-shadow(0 28px 56px rgba(8, 33, 92, 0.28));
  animation: fltimg 5s ease-in-out infinite;
}
@keyframes fltimg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-17px);
  }
}
.sppbdg {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(52, 204, 63, 0.5);
  animation: plsbdg 2.5s ease-in-out infinite;
}
@keyframes plsbdg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 34px rgba(52, 204, 63, 0.7);
  }
}
.sppbdg .old {
  font-size: 0.68rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.sppbdg .np {
  font-size: 1.25rem;
  font-weight: 900;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--light);
}
.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 215px);
  gap: 13px;
}
.gitem {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gitem:first-child {
  grid-row: span 2;
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gitem:hover img {
  transform: scale(1.08);
}
.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gitem:hover .gover {
  opacity: 1;
}
.gover span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.gover i {
  color: var(--secondary);
  margin-right: 5px;
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: var(--cream);
}
.timeline {
  position: relative;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--primary);
  top: 0;
  bottom: 0;
}
/* Grid: left-col | dot-col | right-col */
.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}
.tl-left {
  padding-right: 32px;
  text-align: right;
}
.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.tl-right {
  padding-left: 32px;
  text-align: left;
}
/* ODD â†’ show LEFT text, hide RIGHT */
.tli:nth-child(odd) .tl-right {
  visibility: hidden;
}
/* EVEN â†’ hide LEFT, show RIGHT */
.tli:nth-child(even) .tl-left {
  visibility: hidden;
}
.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(52, 204, 63, 0.3);
  flex-shrink: 0;
}
.tlyear {
  font-family: "Dancing Script", cursive;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }
  .tl-left {
    display: none;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px;
    text-align: left;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(even) .tl-left {
    display: none;
  }
  .tli:nth-child(odd) .tl-right {
    visibility: visible !important;
  }
}

/* ===================== CHEFS ===================== */
#chefs {
  background: #fff;
}
.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}
.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--cream2);
}
.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}
.chcard:hover .chimg img {
  transform: scale(1.05);
}
.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.chcard:hover .chsoc {
  bottom: 0;
}
.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}
.chsoc a:hover {
  background: var(--primary);
}
.chbody {
  padding: 18px;
  text-align: center;
}
.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.chexp {
  font-size: 0.76rem;
  color: #bbb;
  margin-top: 5px;
}

/* ===================== HOURS ===================== */
#hours {
  background: var(--light);
  position: relative;
}
.hrscard {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.hrsrow:last-child {
  border: none;
}
.hrsday {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}
.hrstime {
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hrstitle {
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.hrstxt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}
.hrsnote {
  color: #999;
  font-size: 0.78rem;
  margin-top: 15px;
  margin-bottom: 0;
}
.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}
.hdot.off {
  background: #ff6b6b;
}
.hrscta {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(52, 204, 63, 0.4);
}
.hrscta h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
.hrscta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 9px 0 18px;
}
.btnw {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  transition: 0.3s;
}
.btnw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: #fff;
}
.tescard {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.tescard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.tesq {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  color: rgba(52, 204, 63, 0.07);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.tess {
  color: var(--secondary);
  font-size: 0.83rem;
  margin-bottom: 12px;
}
.testxt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}
.tesauth {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tesauth img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.tesnm {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.tesrl {
  font-size: 0.73rem;
  color: #aaa;
}

/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}
.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(52, 204, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.flbl {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}
.fctrl {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--dark);
  background: #fff;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
select.fctrl {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: auto;
  pointer-events: auto;
  touch-action: auto;
}
.fctrl:focus {
  border-color: var(--primary);
}
.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}
.sucmsg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(45, 106, 79, 0.07);
  border-radius: 11px;
  margin-top: 14px;
}
.sucmsg i {
  color: var(--green);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 7px;
}
.sucmsg p {
  color: var(--green);
  font-weight: 600;
  margin: 0;
  font-size: 0.88rem;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--light);
}
.blcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.blcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.blimg {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.blimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blcard:hover .blimg img {
  transform: scale(1.06);
}
.bldatebdg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  line-height: 1.2;
}
.bldatebdg .bd {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}
.bldatebdg .bm {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.blbody {
  padding: 20px;
}
.bltag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.bltit {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
}
.bltit a {
  color: var(--dark);
}
.bltit a:hover {
  color: var(--primary);
}
.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #bbb;
  margin-bottom: 13px;
}
.blmeta i {
  color: var(--primary);
  margin-right: 3px;
}
.blmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blmore i {
  transition: 0.3s;
}
.blmore:hover {
  color: var(--dark);
}
.blmore:hover i {
  transform: translateX(5px);
}

/* ===================== NEWSLETTER ===================== */
#newsletter {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.nlbg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='.4' opacity='.1'/%3E%3C/svg%3E");
  background-size: 75px;
}
.nlw {
  position: relative;
  z-index: 2;
}
.nlw h2 {
  color: #fff;
  font-size: 2.1rem;
}
/* Newsletter form â€” fixed layout */
.nl-form-wrap {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
}
.nlinput {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  outline: none;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.nlbtn {
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.nlbtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 540px) {
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 10px;
  }
  .nlinput {
    width: 100%;
    border-radius: 12px;
  }
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ===================== CONTACT â€” FIX 6 ===================== */
#contact-section {
  background: #fff;
}
.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}
.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
}
.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}
.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cticon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(52, 204, 63, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.ctinfo span {
  color: #fff;
  font-size: 0.87rem;
}
.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}
.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 68px 0 0;
}
.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.fnm span {
  color: var(--primary);
}
.fdesc {
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}
.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.88rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}
.flinks li {
  list-style: none;
  margin-bottom: 9px;
}
.flinks a {
  color: #fff;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.flinks a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(52, 204, 63, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #fff;
  font-size: 0.83rem;
  line-height: 1.6;
}
.fciinfo strong {
  color: #bbb;
  display: block;
  font-size: 0.77rem;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}
.fbot p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0;
}
.fbot span {
  color: #fff;
}
.fbot a {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-left: 18px;
}
.fbot a:hover {
  color: var(--secondary);
}

/* ===================== UTILITIES ===================== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(52, 204, 63, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px) !important;
}
.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(8, 33, 92, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.cartfl:hover {
  transform: translateY(-4px);
}
.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 4: MENU DETAIL POPUP --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.mpbox {
  background: #fff;
  border-radius: 22px;
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.mpbox::-webkit-scrollbar {
  width: 3px;
}
.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.mpbox .mpimg {
  width: 44%;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
}
.mpbox .mpimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}
.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.mpclose:hover {
  background: var(--primary);
  color: #fff;
}
#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}
#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
#mpDesc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}
#mpPrice small {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 7px;
}
.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mpm {
  text-align: center;
  background: var(--light);
  border-radius: 9px;
  padding: 9px 14px;
}
.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.mpml {
  font-size: 0.68rem;
  color: #bbb;
}
.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}
.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}
.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 30px;
  text-align: center;
}
.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.mptag {
  background: rgba(8, 33, 92, 0.11);
  color: var(--dark);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
}
.mpaddcart {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(52, 204, 63, 0.38);
}

/* --- FIX 7: GALLERY POPUP --- */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}
.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}
.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.gpclose:hover {
  background: var(--primary);
}
.gpcap {
  color: #fff;
  margin-top: 18px;
}
.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}
.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}
/* ===== MOBILE OPTIMIZATION: FONT SIZES, TAP TARGETS, CLS ===== */
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; height: auto; aspect-ratio: auto; }
@media (max-width: 767px) {
  body { font-size: 15px; }
  .navbar-brand img { max-height: 48px; }
  .hbadge { font-size: 0.82rem; }
  .htitle { font-size: 1.6rem !important; }
  .hdesc { font-size: 0.88rem !important; }
  .stitle { font-size: 1.35rem !important; }
  .sdesc { font-size: 0.88rem; }
  .btn-red, .btn-blue, .btn-cream { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; font-size: 0.85rem; }
  .fctrl { font-size: 16px !important; }
}
/* ===== MOBILE OPTIMIZATION: CONTAINER PADDING ===== */
@media (max-width: 575px) {
  .container { padding-left: 16px; padding-right: 16px; }
  #hero .row { margin: 0; }
  #hero .col-lg-6 { padding: 0; }
}

/* TOPBAR MARQUEE */
#topbar {
  background: #111;
  color: #ccc;
  font-size: 0.82rem;
  overflow: hidden;
}
.topmarquee {
  white-space: nowrap;
  overflow: hidden;
  padding: 10px 0;
}
.topmarquee span {
  display: inline-block;
  animation: topMarquee 50s linear infinite;
  padding-left: 100%;
}
@keyframes topMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (max-width:768px) {
  .topmarquee span { animation-duration: 30s; }
}

/* CTA BUTTONS SAME LINE MOBILE */
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 24px;
}
.cta-btns .btn-blue,
.cta-btns .btn-cream {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 12px 20px;
}
@media (max-width:400px) {
  .cta-btns { gap: 8px; }
  .cta-btns .btn-blue,
  .cta-btns .btn-cream { font-size: 0.72rem; padding: 10px 12px; }
}

/* HERO BUTTONS SAME LINE MOBILE */
.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 8px;
  justify-content: center;
}
@media (min-width:992px) {
  .hero-btns { justify-content: flex-start; }
}
.hero-btns .btn-red,
.hero-btns .btn-blue {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 10px 16px;
}
@media (max-width:400px) {
  .hero-btns { gap: 6px; }
  .hero-btns .btn-red,
  .hero-btns .btn-blue {
    font-size: 0.72rem;
    padding: 8px 10px;
  }
}

/* REVIEWS MARQUEE */
.reviews-wrap {
  overflow: hidden;
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
}
.reviews-track-right {
  animation: scrollRight 40s linear infinite;
}
.reviews-track-left {
  animation: scrollLeft 40s linear infinite;
  margin-top: 20px;
}
@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 30px;
  width: 340px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.rstars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
  font-style: italic;
}
.rname {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  font-family: "Playfair Display", serif;
}
@media (max-width:768px) {
  .review-card { width: 280px; padding: 20px 22px; }
  .review-card p { font-size: 0.85rem; }
}

.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}
.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific video override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}
.mfp-close {
  color: #fff !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hcircle {
    width: 320px;
    height: 320px;
  }
  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gitem:first-child {
    grid-row: span 1;
  }
  .asm {
    display: none;
  }
  .mpbox .mpimg,
  .mpbox .mpbody {
    width: 100%;
  }
  .mpbox .mpimg {
    border-radius: 22px 22px 0 0;
    min-height: 240px;
  }
  .mpbox .mpbody {
    padding: 22px 18px;
  }
  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr !important;
  }
  .tl-left {
    display: none !important;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}
@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }
  #topbar .top-contact span:last-child {
    display: none;
  }
  .hcircle {
    width: 260px;
    height: 260px;
  }
  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }
  .hstats {
    display: none !important;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
  }
  .cdwrap {
    gap: 8px;
  }
  .cditem {
    min-width: 56px;
    padding: 9px;
  }
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }
  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
  .fcard {
    padding: 22px 18px;
  }
}
@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }
  .htitle {
    font-size: 2.4rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
}

/* ===================== FOOLPROOF DROPDOWN ARROWS ===================== */
.nav-item.dropdown .dropdown-toggle {
  position: relative;
  padding-right: 32px !important;
}
.nav-item.dropdown .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none !important;
  display: block !important;
  transition: transform 0.3s ease;
  font-size: 0.9em;
  opacity: 0.8;
}
.nav-item.dropdown.show > .dropdown-toggle::after,
.nav-item.dropdown > .dropdown-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 991.98px) {
  #navmenu .nav-item.dropdown .dropdown-toggle::after {
    right: 18px;
    font-size: 1.1em;
  }
}
@media (max-width: 767px) {
  #hero {
    min-height: auto;
    padding: 32px 0 28px;
    align-items: flex-start;
  }
  .mimg { height: 250px; }
  .aexp { display: none !important; }
  .fbot .d-flex { justify-content: center !important; text-align: center; }
  .fbot .d-flex > * { width: 100%; }
  #hero .col-lg-6:last-child { display: none !important; }
  #hero .row { min-height: auto !important; padding: 0; }
  #hero .hbadge { margin-bottom: 6px; }
  #hero .htitle { margin-bottom: 6px !important; }
  #hero .hdesc { margin-bottom: 10px !important; }
  #hero .hero-btns { margin-bottom: 4px; }
  #hero .hstats { margin-top: 6px !important; }
  .hcircle { display: none !important; }
}

/* ===================== ABOUT PAGE INTRO ===================== */
.about-intro {
  padding: 88px 0;
}
.about-intro-visual {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
}
.about-intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(8, 33, 92, 0.04) 35%, rgba(8, 33, 92, 0.62) 100%);
  pointer-events: none;
}
.about-intro-visual img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-intro-visual:hover img {
  transform: scale(1.045);
}
.about-intro-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(8, 33, 92, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-intro-visual figcaption i {
  margin-right: 6px;
  color: var(--primary);
}
.about-intro-copy {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666;
}
.about-intro-copy p {
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .about-intro-visual,
  .about-intro-visual img {
    min-height: 360px;
    height: 360px;
  }
}
@media (max-width: 767px) {
  .about-intro {
    padding: 55px 0;
  }
  .about-intro-visual,
  .about-intro-visual img {
    min-height: 300px;
    height: 300px;
  }
}

/* ============================================================
   HERO BREADCRUMB (About page)
   ============================================================ */
.hero-breadcrumb {
  margin-bottom: 18px;
}
.hero-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
}
.hero-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-breadcrumb a:hover,
.hero-breadcrumb a:focus {
  color: var(--primary);
}

/* ============================================================
   OPERATOR / ZONES PAGE COMPONENTS
   ============================================================ */
.os-section {
  padding: 80px 0;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
}
.checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary);
}
.svc-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
}
.svc-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.svc-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0;
}
/* local operator benefits: an open, editorial list rather than card boxes */
.local-reasons {
  border-top: 1px solid rgba(8, 33, 92, 0.13);
  border-bottom: 1px solid rgba(8, 33, 92, 0.13);
}
.local-reasons > [class*="col-"] {
  display: flex;
}
.local-reason {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  height: 100%;
  padding: 26px 24px;
  border-bottom: 1px solid rgba(8, 33, 92, 0.1);
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}
.local-reasons > [class*="col-"]:nth-child(even) .local-reason {
  border-left: 1px solid rgba(8, 33, 92, 0.1);
}
.local-reasons > [class*="col-"]:nth-last-child(-n+2) .local-reason {
  border-bottom: 0;
}
.local-reason:hover {
  padding-left: 30px;
  background: rgba(52, 204, 63, 0.045);
}
.local-reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(52, 204, 63, 0.55);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}
.local-reason h4,
.traveller-tile h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.local-reason p,
.traveller-tile p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0;
}
/* traveller types: compact navy field-guide tiles */
.traveller-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  padding: 24px 20px;
  border-top: 3px solid var(--primary);
  border-radius: 6px;
  background: var(--dark);
  box-shadow: 0 12px 30px rgba(8, 33, 92, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.traveller-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(8, 33, 92, 0.2);
}
.traveller-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(52, 204, 63, 0.65);
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.95rem;
}
.traveller-tile h4 {
  color: #fff;
  margin-bottom: 8px;
}
.traveller-tile p {
  color: rgba(255, 255, 255, 0.72);
}
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 26px;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.step-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid rgba(8, 33, 92, 0.1);
  border-radius: 50px;
  padding: 9px 18px;
  margin: 0 8px 10px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.zone-chip i {
  color: var(--primary);
}
.disc-box {
  background: var(--light);
  border: 1px solid rgba(8, 33, 92, 0.12);
  border-radius: 0;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
}
.cta-band {
  background: var(--dark);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band .stitle {
  margin-bottom: 0;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 0.95rem;
  line-height: 1.8;
}
.cta-band .cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.photo-strip img:hover {
  transform: scale(1.03);
}
/* zone comparison table */
body.zcmp-table-in-view #btt {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) !important;
}
.zcmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.zcmp-table th {
  background: var(--dark);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.zcmp-table td {
  padding: 13px 16px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid rgba(8, 33, 92, 0.07);
  vertical-align: top;
}
.zcmp-table tbody tr:nth-child(even) {
  background: var(--light);
}
.zcmp-table td:first-child {
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .local-reasons > [class*="col-"]:nth-child(even) .local-reason {
    border-left: 0;
  }
  .local-reasons > [class*="col-"] .local-reason {
    border-bottom: 1px solid rgba(8, 33, 92, 0.1);
  }
  .local-reasons > [class*="col-"]:last-child .local-reason {
    border-bottom: 0;
  }
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-strip img {
    height: 140px;
  }
  .cta-band {
    padding: 44px 22px;
  }
  .zcmp-table {
    display: block;
    width: 100%;
    min-width: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }
  .zcmp-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .zcmp-table tbody,
  .zcmp-table tr {
    display: block;
  }
  .zcmp-table tr {
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .zcmp-table tr:nth-child(even) {
    background: #fff;
  }
  .zcmp-table td {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border-top: 1px solid rgba(8, 33, 92, 0.08);
    overflow-wrap: anywhere;
  }
  .zcmp-table td::before {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--dark);
  }
  .zcmp-table td:nth-child(1) {
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-top: 0;
    background: var(--dark);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
  }
  .zcmp-table td:nth-child(1)::before {
    content: "Safari Zone";
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.68);
  }
  .zcmp-table td:nth-child(2)::before {
    content: "Landscape";
  }
  .zcmp-table td:nth-child(3)::before {
    content: "Best For";
  }
  .zcmp-table td:nth-child(4)::before {
    content: "Convenient From";
  }
  .zcmp-table td:nth-child(5)::before {
    content: "Birding Interest";
  }
  .zcmp-table td:nth-child(6)::before {
    content: "Family Friendly";
  }
  .zcmp-table td:nth-child(7)::before {
    content: "Availability";
  }
}
@media (max-width: 575px) {
  .os-section {
    padding: 55px 0;
  }
}

/* Safari Zones uses a real page link plus a separate submenu control. */
.zones-dropdown > .zones-link {
  padding-right: 32px !important;
}
.nav-item.dropdown.zones-dropdown > .zones-menu-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 32px;
  padding: 0 !important;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.nav-item.dropdown.zones-dropdown > .zones-menu-toggle::before,
.nav-item.dropdown.zones-dropdown > .zones-menu-toggle::after {
  content: none !important;
  display: none !important;
}
.zones-menu-toggle i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.zones-dropdown.show > .zones-menu-toggle i,
.zones-dropdown:hover > .zones-menu-toggle i,
.zones-dropdown:focus-within > .zones-menu-toggle i {
  color: var(--primary);
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  #safariZonesMenu {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 16px 16px;
  }
  .zones-dropdown:hover::after,
  .zones-dropdown:focus-within::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }
  .zones-dropdown:hover > .dropdown-menu,
  .zones-dropdown:focus-within > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .zones-dropdown:hover > .zones-link,
  .zones-dropdown:focus-within > .zones-link {
    color: var(--primary) !important;
  }
}
@media (max-width: 991.98px) {
  #navmenu .zones-dropdown > .zones-link {
    padding-right: 52px !important;
  }
  #navmenu .zones-dropdown > .zones-menu-toggle {
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
  }
  #navmenu .zones-dropdown > .zones-menu-toggle:hover,
  #navmenu .zones-dropdown > .zones-menu-toggle:focus-visible {
    background: rgba(52, 204, 63, 0.14);
    color: var(--primary);
    outline: none;
  }
}
