:root {
  --g: #457f0e;
  --gd: #2d5609;
  --gm: #5a9e14;
  --gp: #edf5e1;
  --w: #fff;
  --off: #f7faf3;
  --tx: #141f08;
  --mu: #6b7a5c;
  --bd: rgba(69, 127, 14, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--tx);
  background: var(--w);
  overflow-x: hidden;
}

/* ══ NAVBAR ══ */
.nb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3%;
  background: var(--g);
  transition:
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s,
    box-shadow 0.4s,
    transform 0.4s;
}

.nb.shrank {
  height: 60px;
  background: rgba(44, 80, 9, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.18);
}

.nb.hide {
  transform: translateY(-100%);
}

.nb-left {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: center;
}

.nb-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.nb-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nb-logo:hover .nb-ring {
  transform: rotate(9deg) scale(1.1);
}

.nb-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}

.nb-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nb-right {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-end;
}

.nb-left a,
.nb-right a.nl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition:
    color 0.22s,
    background 0.22s;
}

.nb-left a::after,
.nb-right a.nl::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.nb-left a:hover,
.nb-right a.nl:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nb-left a:hover::after,
.nb-right a.nl:hover::after,
.nb-left a.active::after,
.nb-right a.nl.active::after {
  transform: scaleX(1);
}

.nb-left a.active,
.nb-right a.nl.active {
  color: #fff;
}

.nb-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--g);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  margin-left: 8px;
}

.nb-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══ MOBILE DROPDOWN ══ */
.mob-ov {
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(0, 0, 0, 0.35);
  z-index: 840;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mob-ov.show {
  opacity: 1;
  pointer-events: all;
}

.mob-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 850;
  background: rgba(44, 80, 9, 0.98);
  backdrop-filter: blur(16px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.mob-menu.open {
  max-height: 100vh;
}

.mob-menu-inner {
  padding: 16px 0 8px;
}

.mob-menu-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 13px 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}

.mob-menu.open .mob-menu-inner a {
  opacity: 1;
  transform: translateY(0);
}

.mob-menu.open .mob-menu-inner a:nth-child(1) {
  transition-delay: 0.04s;
}

.mob-menu.open .mob-menu-inner a:nth-child(2) {
  transition-delay: 0.08s;
}

.mob-menu.open .mob-menu-inner a:nth-child(3) {
  transition-delay: 0.12s;
}

.mob-menu.open .mob-menu-inner a:nth-child(4) {
  transition-delay: 0.16s;
}

.mob-menu.open .mob-menu-inner a:nth-child(5) {
  transition-delay: 0.2s;
}

.mob-menu.open .mob-menu-inner a:nth-child(6) {
  transition-delay: 0.24s;
}

.mob-menu.open .mob-menu-inner a:nth-child(7) {
  transition-delay: 0.28s;
}

.mob-menu.open .mob-menu-inner a:nth-child(8) {
  transition-delay: 0.32s;
}

.mob-menu-inner a:last-child {
  border-bottom: none;
}

.mob-menu-inner a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 30px;
}

.mob-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.mob-book {
  margin: 16px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--g);
  font-size: 13px;
  font-weight: 700;
  padding: 13px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.3s 0.4s,
    transform 0.3s 0.4s,
    background 0.2s;
}

.mob-menu.open .mob-book {
  opacity: 1;
  transform: translateY(0);
}

.mob-book:hover {
  background: #f0f7e8;
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--off);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(69, 127, 14, 0.05);
  pointer-events: none;
}

.hero-l {
  padding: 64px 5% 64px 6%;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gp);
  color: var(--gd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  border: 1px solid rgba(69, 127, 14, 0.2);
}

.htdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.1;
  color: var(--tx);
  margin-bottom: 18px;
}

.hero-title em {
  color: var(--g);
  font-style: italic;
  display: block;
}

.hero-desc {
  font-size: 15.5px;
  color: var(--mu);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--g);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn-p:hover {
  background: var(--gm);
  transform: translateY(-2px);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--g);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--g);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.btn-o:hover {
  background: var(--g);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hs-num {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--g);
  line-height: 1;
}

.hs-lbl {
  font-size: 12px;
  color: var(--mu);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hs-div {
  width: 1px;
  background: var(--bd);
  align-self: stretch;
}

.hero-r {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--gp);
}

.hero-imgs {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 84px 18px 18px;
}

.hi {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(69, 127, 14, 0.1);
}

.hi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hi:nth-child(1) {
  border-radius: 160px 160px 20px 20px;
}

.hi:nth-child(2) {
  margin-top: 52px;
  border-radius: 20px 20px 160px 160px;
}

.hfloat {
  position: absolute;
  bottom: 32px;
  left: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 5;
}

.hf-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--gp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hf-num {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--tx);
  line-height: 1;
}

.hf-lbl {
  font-size: 11px;
  color: var(--mu);
  margin-top: 2px;
}

/* ══ SEARCH BAR — LIVE ══ */
.sb {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 8px 48px rgba(69, 127, 14, 0.13),
    0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 26px 30px;
  margin: -30px auto 0;
  width: 90%;
  max-width: 940px;
  position: relative;
  z-index: 10;
}

.sb-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.sb-tab {
  font-size: 13px;
  font-weight: 500;
  color: var(--mu);
  padding: 6px 17px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.sb-tab.active {
  background: var(--gp);
  color: var(--g);
  border-color: rgba(69, 127, 14, 0.22);
}

.sb-fs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 11px;
  align-items: end;
}

.sbf label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mu);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.sbf select,
.sbf input[type="text"],
.sbf input[type="date"] {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--tx);
  background: var(--off);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.sbf input[type="text"] {
  appearance: auto;
}

.sbf select:focus,
.sbf input:focus {
  border-color: var(--g);
}

.sb-btn {
  background: var(--g);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
}

.sb-btn:hover {
  background: var(--gm);
  transform: translateY(-1px);
}

/* Live search results dropdown */
.sb-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(69, 127, 14, 0.18);
  border: 1px solid var(--bd);
  z-index: 200;
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
}

.sb-results.active {
  display: block;
}

.sb-res-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bd);
  cursor: pointer;
  transition: background 0.18s;
}

.sb-res-item:last-child {
  border-bottom: none;
}

.sb-res-item:hover {
  background: var(--gp);
}

.sb-res-img {
  width: 54px;
  height: 44px;
  border-radius: 10px;
  background: var(--gp);
  overflow: hidden;
  flex-shrink: 0;
}

.sb-res-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-res-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 3px;
}

.sb-res-meta {
  font-size: 12px;
  color: var(--mu);
}

.sb-res-price {
  margin-left: auto;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--g);
  white-space: nowrap;
}

.sb-no-res {
  padding: 22px;
  text-align: center;
  color: var(--mu);
  font-size: 14px;
}

/* ══ COMMON ══ */
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.sec-tag::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--g);
  border-radius: 2px;
}

.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
  color: var(--tx);
}

.sec-title em {
  color: var(--g);
  font-style: italic;
}

.sec-sub {
  font-size: 15px;
  color: var(--mu);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 10px;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ══ PACKAGES — FIXED ══ */
.pkg-sec {
  padding: 96px 7%;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 22px;
}

.pkg-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bd);
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.38s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 50px rgba(69, 127, 14, 0.16);
}

/* FIX: Fixed image height with consistent cover */
.pkg-img {
  /* height: 300px; */
  /* min-height: 250px; */
  max-height: 370px;
  background: var(--gp);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.07);
}

.pkg-bdg {
  position: absolute;
  top: 13px;
  left: 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  background: var(--g);
  color: #fff;
  z-index: 2;
}

.pkg-body {
  padding: 19px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-cat {
  font-size: 11px;
  color: var(--g);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 7px;
  line-height: 1.3;
}

.pkg-desc {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
  margin-bottom: 13px;
  flex: 1;
}

.pkg-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}

.pm {
  font-size: 12px;
  color: var(--mu);
}

.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.pkg-price {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--g);
}

.pkg-price span {
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  color: var(--mu);
  font-weight: 400;
}

/* WhatsApp Book Button */
.pkg-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.22s;
  text-decoration: none;
  white-space: nowrap;
}

.pkg-btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.pkg-btn-wa svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ══ ABOUT — FIXED ══ */
.about-sec {
  padding: 96px 7%;
  background: var(--off);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}

.about-imgs {
  position: relative;
  padding-bottom: 28px;
}

.ai {
  border-radius: 24px;
  overflow: hidden;
  background: var(--gp);
  box-shadow: 0 16px 48px rgba(69, 127, 14, 0.14);
}

.ai img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s;
}

.ai:hover img {
  transform: scale(1.04);
}

.ai:nth-child(1) {
  height: 420px;
}

.ai-badge {
  position: absolute;
  bottom: 0;
  right: 24px;
  background: var(--g);
  color: #fff;
  border-radius: 14px;
  padding: 14px 22px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(69, 127, 14, 0.35);
}

.ai-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.ai-badge-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-top: 3px;
}

.afeats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 26px 0;
}

.af {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #fff;
  border-radius: 12px;
  padding: 13px;
  border: 1px solid var(--bd);
}

.af-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.af-t {
  font-size: 13px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 3px;
}

.af-d {
  font-size: 12px;
  color: var(--mu);
  line-height: 1.5;
}

/* ══ STATS ══ */
.stats {
  background: var(--g);
  padding: 52px 7%;
}

.stats-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.si {
  text-align: center;
}

.si-num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.si-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 7px;
  letter-spacing: 0.06em;
}

/* ══ WHY ══ */
.why-sec {
  padding: 96px 7%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.wcard {
  background: var(--off);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--bd);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(69, 127, 14, 0.1);
}

.wc-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--gp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 13px;
}

.wc-t {
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 6px;
}

.wc-d {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
}

.why-imgs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 13px;
  height: 520px;
}

.wi {
  border-radius: 20px;
  overflow: hidden;
  background: var(--gp);
}

.wi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.wi:hover img {
  transform: scale(1.06);
}

/* ══ SERVICES ══ */
.srv-sec {
  padding: 96px 7%;
  background: var(--off);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.srv-card {
  padding: 0;
  border-radius: 20px;
  border: 1px solid var(--bd);
  background: #fff;
  transition: all 0.35s;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.srv-card:hover {
  border-color: var(--g);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(69, 127, 14, 0.12);
}

.srv-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--gp);
}

.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.srv-card:hover .srv-img img {
  transform: scale(1.07);
}

.srv-body {
  padding: 20px;
}

.srv-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: background 0.25s;
}

.srv-card:hover .srv-ico {
  background: var(--g);
}

.srv-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 8px;
}

.srv-d {
  font-size: 13.5px;
  color: var(--mu);
  line-height: 1.65;
}

/* ══ REVIEWS ══ */
.rev-sec {
  padding: 96px 7%;
}

.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.rev-stars {
  color: var(--g);
  font-size: 20px;
}

.rev-score {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--tx);
  margin-left: 4px;
}

.rev-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0;
}

.rc {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--bd);
  transition:
    transform 0.25s,
    border-color 0.25s;
  margin-bottom: 14px;
}

.rc:hover {
  transform: translateX(5px);
  border-color: var(--g);
}

.rc.active {
  border-color: var(--g);
  box-shadow: 0 4px 22px rgba(69, 127, 14, 0.1);
}

.rc-stars {
  color: var(--g);
  font-size: 13px;
  margin-bottom: 8px;
}

.rc-text {
  font-size: 14px;
  color: var(--tx);
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: italic;
}

.rc-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gp);
  border: 2px solid var(--bd);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.rc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
}

.rc-from {
  font-size: 12px;
  color: var(--mu);
}

/* ══ GALLERY ══ */
.gal-sec {
  padding: 96px 7%;
  background: var(--off);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 38px;
}

.gi {
  border-radius: 16px;
  overflow: hidden;
  background: var(--gp);
  cursor: pointer;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gi:hover img {
  transform: scale(1.07);
}

.gi:nth-child(1) {
  grid-column: 1/3;
  height: 270px;
}

.gi:nth-child(2) {
  height: 270px;
}

.gi:nth-child(3) {
  height: 270px;
}

.gi:nth-child(4) {
  height: 195px;
}

.gi:nth-child(5) {
  height: 195px;
}

.gi:nth-child(6) {
  grid-column: 3/5;
  height: 195px;
}

.gal-btn-wrap {
  text-align: center;
  margin-top: 36px;
}

.gal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--g);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
}

.gal-btn:hover {
  background: var(--gm);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(69, 127, 14, 0.3);
}

.gal-btn ion-icon {
  font-size: 20px;
}

/* ══ FAQ ══ */
.faq-sec {
  padding: 96px 7%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.faq-img {
  width: 100%;
  height: 360px;
  border-radius: 24px;
  background: var(--gp);
  overflow: hidden;
}

.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--g);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--tx);
  transition:
    background 0.2s,
    color 0.2s;
  user-select: none;
}

.faq-item.open .faq-q {
  background: var(--g);
  color: #fff;
}

.faq-plus {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 18px 16px;
}

.faq-a p {
  font-size: 14px;
  color: var(--mu);
  line-height: 1.7;
}

/* ══ CONTACT ══ */
.ct-sec {
  background: var(--g);
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ct-l h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ct-l h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.ct-l p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ct-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.ct-info-item:hover {
  color: #fff;
}

.ct-info-item ion-icon {
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.ct-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ct-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
}

.cf-group {
  margin-bottom: 16px;
}

.cf-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: none;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-submit {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: #fff;
  color: var(--g);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cf-submit ion-icon {
  font-size: 18px;
}

/* ══ FOOTER ══ */
footer {
  background: var(--tx);
  padding: 60px 7% 28px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.fl-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.fl-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fl-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.fl-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.ft-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ft-soc {
  display: flex;
  gap: 9px;
}

.fts {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.7);
}

.fts:hover {
  background: var(--g);
  border-color: var(--g);
  transform: translateY(-3px);
  color: #fff;
}

.fts ion-icon {
  font-size: 18px;
}

.ft-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ft-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: #fff;
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.ft-links {
  display: flex;
  gap: 18px;
}

.ft-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ══ WHATSAPP FLOAT ══ */
.wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 800;
  text-decoration: none;
}

.wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}

.wa-circle:hover {
  transform: scale(1.12);
}

.wa-circle ion-icon {
  font-size: 30px;
  color: #fff;
}

.wa-tip {
  position: absolute;
  right: 68px;
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: var(--tx);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
}

.wa:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ══ BOOKING MODAL ══ */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.bk-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.bk-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.bk-overlay.show .bk-modal {
  transform: translateY(0) scale(1);
}

.bk-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--bd);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--mu);
  transition: all 0.2s;
}

.bk-close:hover {
  background: var(--gp);
  color: var(--g);
}

.bk-header {
  margin-bottom: 24px;
}

.bk-tour-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 4px;
}

.bk-tour-sub {
  font-size: 13px;
  color: var(--mu);
}

.bk-field {
  margin-bottom: 14px;
}

.bk-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--mu);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bk-field input,
.bk-field select,
.bk-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--tx);
  background: var(--off);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  resize: none;
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
  border-color: var(--g);
}

.bk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bk-summary {
  background: var(--gp);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
  border: 1px solid rgba(69, 127, 14, 0.15);
}

.bk-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--mu);
  margin-bottom: 6px;
}

.bk-sum-row.total {
  font-weight: 700;
  color: var(--tx);
  font-size: 15px;
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(69, 127, 14, 0.2);
}

.bk-sum-row.total span:last-child {
  color: var(--g);
}

.bk-wa-btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  background: #25d366;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.03em;
}

.bk-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ══ SCROLL REVEAL ══ */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rv-l {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.rv-r {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.rv.up,
.rv-l.up,
.rv-r.up {
  opacity: 1;
  transform: translate(0);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .nb {
    grid-template-columns: auto 1fr auto;
  }

  .nb-left {
    display: none;
  }

  .nb-right .nl {
    display: none;
  }

  .nb-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-r {
    height: 380px;
    position: relative;
  }

  .hfloat {
    bottom: 16px;
    left: 16px;
  }

  .about-grid,
  .why-grid,
  .rev-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-in {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gal-grid {
    grid-template-columns: repeat(1, 2fr);
  }

  .gi:nth-child(1) {
    grid-column: 1/2;
    height: 200px;
  }

  .gi:nth-child(6) {
    grid-column: 1/2;
    height: 200px;
  }

  .gi:nth-child(n) {
    height: 200px;
  }

  .ct-sec {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .nb {
    grid-template-columns: auto 1fr auto;
    padding: 0 4%;
  }

  .sb-fs {
    grid-template-columns: 1fr;
  }

  .afeats {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 18px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .ct-sec {
    padding: 60px 5%;
  }

  .bk-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .hero-l {
    padding: 40px 5%;
  }

  .pkg-sec,
  .about-sec,
  .why-sec,
  .srv-sec,
  .rev-sec,
  .gal-sec,
  .faq-sec {
    padding: 64px 5%;
  }

  .stats {
    padding: 44px 5%;
  }

  .gal-grid {
    grid-template-columns: 1fr;
  }

  .gi:nth-child(n) {
    height: 220px;
    grid-column: auto;
  }

  .bk-modal {
    padding: 24px 20px;
  }
}
