/* PAGE TRANSITION */
body {
  opacity: 0;
  transition: opacity 1.3s ease;
}

body.loaded {
  opacity: 1;
}


/* ================= BRAND FONT (MIGATE) ================= */

@font-face {
  font-family: "Migate";
  src: url("fnt/migate_0gRZdteIX6.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Migate";
  src: url("fnt/migate_bold_oxSiX9VNCC.otf") format("opentype");
  font-weight: 700;
}



/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: #0f1112;
  color: #ffffff;
  font-family: "Mingzat", serif;
  /* BODY DEFAULT */
}

/* ================= VIDEO BACKGROUND ================= */

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.5;
  /* 0 = invisible | 1 = fully visible */
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(41, 13, 0, 0.078);
  z-index: -1;
}

/* ================= PAGE ================= */

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ================= STEPS / NAV ================= */

.steps {
  padding-top: 2.5rem;
  text-align: center;
  font-family: "Migate", serif;
}

.steps ul {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
}

.steps li {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(57, 34, 34, 0.338);
  font-weight: 700;
}

/* FORCE LINE BREAK AFTER 5 */
.steps-grid> :nth-child(n+11) {
  grid-row: 2;
}

.steps li.active {
  background: #f2a45c;
  color: #000;
}

.steps span {
  width: 36px;
  height: 36px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* ================= HERO ================= */

.hero-content {
  max-width: 960px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
  text-align: center;
}

.hero-content h1 {
  font-family: "Migate", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 90px;
  /* 104.688% */
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.subtitle {
  font-family: "Migate", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 75% */
  letter-spacing: 8.64px;
  margin-bottom: 2.2rem;
}

.description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: lighter;
  line-height: 20px;
  /* 143.75% */
  letter-spacing: 0.50px;
  opacity: 0.95;
}

/* ================= FORM ================= */
/* ===== FORM WRAPPER ===== */
.enquiry-wrap {
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

/* ===== FORM ===== */
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 3.5rem;
}

/* ===== FIELD ===== */
.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full {
  grid-column: span 2;
}

/* LABEL */
.form-field label {
  font-family: "Migate", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

/* INPUTS */
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0;
  color: #ffffff;
  font-family: "Mingzat", serif;
  font-size: 0.95rem;
}

/* PLACEHOLDER */
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* FOCUS */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: #f2a45c;
}

/* CTA */
.form-cta {
  grid-column: span 2;
  margin-top: 1rem;
  align-self: flex-start;

  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0.9rem 2.6rem;

  font-family: "Mingzat", serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #f2a45c;
  cursor: pointer;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .enquiry-form {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }

  .form-field.full,
  .form-cta {
    grid-column: span 1;
  }
}


/* ================= FEATURE BAND ================= */

.feature-band {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* changed from 4 to 3 */
  gap: 20px;
  /* better spacing */
  justify-content: center;
  align-items: stretch;
  padding: 0 2rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.feature {
  background: rgba(55, 15, 1, 0.462);
  padding: 3rem 2.5rem;
  text-align: left;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature h3 {
  font-family: "Migate", serif;
  font-size: 34px;
  font-weight: 700;
  color: rgb(252, 176, 140);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 1rem;
}

.hotel-type {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  color: rgb(252, 176, 140);
  margin-bottom: 2rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 2rem 0;
}

.feature h4 {
  text-align: center;
  font-size: 20px;
  color: rgb(252, 176, 140);
  margin-bottom: 0.2rem;
}

.sdf {
  text-align: center;
  font-size: 14px;
  color: rgb(252, 176, 140);
  margin-bottom: 2rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: rgb(252, 176, 140);
}

.note {
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
  color: rgb(252, 176, 140);
  margin-top: 2rem;
}

.cta2 {
  margin: 2.5rem auto 0;
}

.feature:first-child {
  border-left: none;
}

.icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.096);
  border-radius: 50%;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
}

.feature p {
  max-width: 220px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
}

/* ================= CTA ================= */

.cta {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 0.9rem 2.6rem;
  background: #f2a45c;
  color: #000;
  text-decoration: none;
  font-family: "Mingzat", serif;
  font-size: 14px;
  letter-spacing: 2px;
}

.cta span {
  font-family: Arial, sans-serif;
}

/* ================= CTA2 ================= */



.cta2 {
  display: block;
  width: fit-content;
  padding: 0.9rem 2.6rem;
  background: #3b2039;
  color: #ffcca5;
  text-decoration: none;
  font-family: "Mingzat", serif;
  font-size: 10px;
  letter-spacing: 1px;
  position: relative;
  grid-column: 1 / -1;
  display: block;
  margin: 30px auto;
}

/* ================= CTA3 ================= */



.cta3 {
  display: block;
  width: fit-content;
  padding: 0.9rem 2.6rem;
  background: #3b2039;
  color: #ffcca5;
  text-decoration: none;
  font-family: "Mingzat", serif;
  font-size: 10px;
  letter-spacing: 1px;
  position: relative;
  grid-column: 1 / -1;
  display: block;
  margin: 30px auto;
  border: 0px;
}



/* ================= FOOTER ================= */

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-band {
    grid-template-columns: 1fr;
    margin-top: 2px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 3px;
  }

  .subtitle {
    font-family: "Migate", serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 75% */
    letter-spacing: 4px;
    margin-bottom: 2.2rem;
  }

  .description {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    font-style: normal;
    font-weight: lighter;
    line-height: 22px;
    /* 143.75% */
    letter-spacing: 0.50px;
    opacity: 0.95;
  }

  .cta {
    font-size: 14px;
    padding: 1rem 2.2rem;
  }

  .footer {
    font-size: 12px;
  }

  .bg-video {
    display: block;
  }

  body {
    background:
      rgba(0, 0, 0, 0.65),
      url("imgs/hero.png") center / cover no-repeat;
    font-size: 16px;
  }
}

/* ===== CARD ANIMATION ===== */

.feature {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* When visible */
.feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.feature:nth-child(1) {
  transition-delay: 0.05s;
}

.feature:nth-child(2) {
  transition-delay: 0.15s;
}

.feature:nth-child(3) {
  transition-delay: 0.25s;
}

.feature:nth-child(4) {
  transition-delay: 0.35s;
}


/* SUCCESS POPUP */
.success-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .03s ease;
  z-index: 9999;
}

.success-popup p {
  background: rgba(255, 255, 255, 0.12);
  padding: 2rem 3rem;
  color: #fff;
  font-family: "Mingzat", serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* SHOW STATE */
.success-popup.show {
  opacity: 1;
  pointer-events: auto;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #3b2a1f;
  color: #fff;
}

/* ================= PRICING TABLE ================= */

.pricing-section {
  margin: 70px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centers the table */
}

.pricing-title {
  font-family: "Migate", serif;
  font-size: 40px;
  margin-bottom: 25px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 400;
}

.pricing-scroll {
  width: 95%;
  max-width: 1200px;
  /* align width similar to packages */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  /* allows horizontal scroll on mobile */
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table th {
  padding: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(252, 176, 140);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 500;
}

.pricing-table td {
  padding: 22px 16px;
  font-size: 12px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table strong {
  font-size: 14px;
  font-weight: 500;
}

.note,
.save {
  font-size: 12px;
  opacity: 0.75;
}

.save {
  color: rgb(252, 176, 140);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Navigation container (optional spacing tweak) */
.navig {
  text-align: center;
  /* optional */
}

/* Default link style */
.navig a {
  font-size: 10px;
  color: #ffffff;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin: 0 6px;
  display: inline-block;
  transition: all 0.3s ease;

}

.navig a {
  position: relative;
}

.navig a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #f2a45c;
  transition: width 0.3s ease;
}

.navig a:hover {
  color: #f2a45c;
  border-color: #f2a45c;
  background: rgba(195, 95, 18, 0.1);
}

.navig a:hover::after {
  width: 100%;
}

/* Keep visited white */
.navig a:link,
.navig a:visited {
  color: #ffffff;
}

/* ================= CHAT BOUNCE ================= */

@keyframes bounceChat {

  0%,
  80%,
  100% {
    transform: translateY(0);
  }

  85% {
    transform: translateY(-10px);
  }

  90% {
    transform: translateY(0);
  }

  95% {
    transform: translateY(-5px);
  }
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #C35F12;
  color: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.main-btn:hover {
  transform: scale(1.05);
}

.contact-options {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-end;
}

.contact-options a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #C35F12;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.contact-options a:hover {
  transform: translateY(-3px);
}

.contact-options.show {
  display: flex;
}

/* ================= HAMBURGER BUTTON ================= */

.hamburger-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(235, 230, 220, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hamburger-btn:hover {
  transform: scale(1.06);
}

.ham-line {
  display: block;
  width: 14px;
  height: 2px;
  background: #C35F12;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}

.ham-line--mid {
  width: 10px;
}

.hamburger-btn.is-open {
  background: rgba(235, 230, 220, 0.97);
}

.hamburger-btn.is-open .ham-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 22px;
}

.hamburger-btn.is-open .ham-line--mid {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.is-open .ham-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 22px;
}

/* ================= SITE NAV ================= */

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 0 40px 0 48px;
  padding-bottom: 250px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-nav.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

.site-nav ul {
  list-style: none;
  text-align: right;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  padding-right: 28px;
}

.site-nav ul li {
  margin: 18px 0;
}

.site-nav ul li a {
  font-family: "Migate", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, letter-spacing 0.2s ease;
  white-space: nowrap;
}

.site-nav ul li a:hover {
  opacity: 1;
  letter-spacing: 0.12em;
  color: #f2a45c;
}

/* NAV BACKDROP */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  cursor: default;
}

.nav-backdrop.visible {
  display: block;
}

/* Prevent scroll when nav open */
body.nav-open {
  overflow: hidden;
}

/* ================= RESPONSIVE — HAMBURGER MOBILE ================= */

@media (max-width: 640px) {
  .hamburger-btn {
    top: 16px;
    right: 16px;
    width: 35px;
    height: 35px;
  }

  .site-nav {
    padding: 0 40px 0 32px;
    background: rgba(15, 8, 2, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    width: 80vw;
    max-width: 280px;
    justify-content: flex-start;
    padding-top: 100px;
    align-items: flex-start;
    top: 0;
    height: 100%;
  }

  .site-nav ul {
    text-align: left;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-right: 0;
    padding-left: 20px;
  }

  .site-nav ul li {
    margin: 14px 0;
  }

  .site-nav ul li a {
    font-size: 18px;
  }
}


/* ================= FEATURE BAND2 ================= */

.feature-band2 {
  max-width: 1000px;
  /* 👈 fixed width */
  margin: 0 auto;
  /* center it */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  /* 👈 EXACT 1px gap */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Safari */
}

/* FEATURE ITEM */
.feature2 {
  background: rgba(55, 15, 1, 0.462);
  padding: 2.2rem 2rem;
  text-align: center;
}


.feature2:first-child {
  border-left: none;
}

.icon2 {
  width: 30px;
  height: 30px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.096);
  border-radius: 50%;
}

.icon2 svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
}

.feature2 p {
  max-width: 220px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
}