* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;

  background: #fff;
}

header {
  position: fixed;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  border-top: 3px solid #d39c33;
}

.navbar {
  max-width: 1450px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 15px 35px;
}

.logo img {
  height: 40px;
  width: 120px;
}

.nav-links {
  display: flex;

  list-style: none;

  gap: 20px;
}

.nav-links a {
  text-decoration: none;

  font-size: 17px;

  font-weight: 500;

  color: #25382e;

  transition: 0.3s;
}

.nav-links a:hover {
  color: #014b27;
}

.appointment-btn {
  display: inline-block;

  background: #014b27;

  padding: 10px 16px;

  border-radius: 40px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  color: #fff;

  transition: 0.3s;
}

.appointment-btn:hover {
  background: #026638;
}

.menu-btn {
  display: none;

  font-size: 28px;

  cursor: pointer;

  color: #014b27;
}

/* Overlay */

.overlay {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.4s;

  z-index: 999;
}

.overlay.show {
  opacity: 1;

  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 90%;
  height: 100vh;
  background: #f8f5ea;
  transition: right 0.4s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow-y: auto;
}

.mobile-menu.show {
  right: 0;
}

.mobile-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;
}

.mobile-logo h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 36px;

  font-weight: 700;

  color: #014b27;
}

.close-menu {
  width: 46px;

  height: 46px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin: 17px 0;
}

.mobile-menu ul li a {
  text-decoration: none;

  font-size: 28px;

  font-weight: 500;

  color: #24392e;
}

.mobile-book {
  margin-top: auto;

  display: block;

  background: #014b27;

  text-align: center;

  padding: 18px;

  border-radius: 50px;

  color: #fff;

  text-decoration: none;

  font-size: 21px;

  font-weight: 600;

  margin-bottom: 18px;
}

.mobile-call {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 10px;

  padding: 16px;

  border: 1.5px solid #d6a84b;

  border-radius: 50px;

  text-decoration: none;

  font-size: 21px;

  font-weight: 500;

  color: #014b27;
}

@media (max-width: 1100px) {
  .nav-links,
  .desktop-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 450px) {
  .mobile-menu {
    width: 85%;

    padding: 25px;
  }
  .logo img {
    height: 40px;
    width: 120px;
  }

  .mobile-logo img {
    width: 120px;
    height: 40px;
  }

  .mobile-menu ul li a {
    font-size: 20px;
  }

  .mobile-book,
  .mobile-call {
    font-size: 18px;
  }
}

.hero {
  position: relative;

  width: 100%;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 100px 20px;

  background: url("background.png") center center/cover no-repeat;
}

.overlay {
  position: absolute;

  inset: 0;

  background: rgba(2, 45, 20, 0.72);
}

.hero-content {
  position: relative;

  z-index: 5;

  max-width: 1050px;
}

/* Badge */

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 14px;

  border-radius: 50px;

  border: 1px solid rgba(231, 175, 57, 0.4);

  color: #e4b13f;

  background: rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(12px);

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 11px;

  margin-bottom: 35px;
  margin-top: 55px;
}

.hero-badge i {
  font-size: 15px;
}

/* Heading */

.hero h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 90px;

  color: #fff;

  line-height: 1.05;

  margin-bottom: 30px;

  font-weight: 700;
}

.hero h1 span {
  color: #e4a93d;
}

/* Paragraph */

.hero p {
  color: #ececec;

  font-size: 17px;

  line-height: 1.7;

  max-width: 900px;

  margin: auto;
}

/* Buttons */

.hero-buttons {
  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 22px;

  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: flex;

  align-items: center;

  gap: 12px;

  text-decoration: none;

  border-radius: 60px;

  font-size: 17px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary {
  background: #e5aa38;

  color: #06391d;

  box-shadow: 0 0 35px rgba(229, 170, 56, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  color: #fff;
  padding: 1px 20px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Rating */

.rating-box {
  margin-top: 50px;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  padding: 14px 15px;

  border-radius: 60px;

  background: #042d18;

  border: 1px solid rgba(229, 170, 56, 0.35);

  color: #fff;

  flex-wrap: wrap;
}

.stars {
  color: #e6b23e;

  display: flex;

  gap: 4px;
}

.rating-box strong {
  font-size: 15px;
}

.rating-box span {
  font-size: 15px;
}

.divider {
  width: 1px;

  height: 25px;

  background: rgba(255, 255, 255, 0.3);
}

/* Responsive */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 70px;
  }

  .hero p {
    font-size: 20px;
  }

  .rating-box strong,
  .rating-box span {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    font-size: 15px;

    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 18px;
  }

  .rating-box {
    flex-direction: column;

    gap: 12px;

    border-radius: 30px;

    padding: 22px;

    width: 100%;
    max-width: 280px;
  }

  .divider {
    display: none;
  }

  .hero-badge {
    font-size: 12px;

    letter-spacing: 2px;
  }
}

/*==========================
      ABOUT SECTION
==========================*/

.about-section {
  padding: 120px 0;
  background: #fbf8f1;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/*==========================
      IMAGE
==========================*/

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;

  border-radius: 35px;

  object-fit: cover;

  min-height: 760px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/*==========================
      FLOATING CARDS
==========================*/

.rating-card {
  position: absolute;

  left: -20px;
  top: -20px;

  background: #e5ab37;

  width: 90px;
  height: 90px;

  border-radius: 0 0 28px 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: 22px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.rating-card h3 {
  color: #00512d;

  font-size: 15px;

  font-weight: 700;

  display: flex;

  align-items: center;

  gap: 5px;
}

.rating-card i {
  font-size: 26px;
}

.rating-card p {
  color: #00512d;

  font-weight: 500;

  letter-spacing: 0.5px;

  margin-top: 4px;
}

.experience-card {
  position: absolute;

  right: -25px;
  bottom: -25px;

  width: 150px;

  height: 80px;

  background: #fff;

  border-radius: 28px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.experience-card h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 40px;

  color: #00512d;

  line-height: 1;
}

.experience-card span {
  text-transform: uppercase;

  font-size: 14px;

  letter-spacing: 2px;

  color: #777;
}

/*==========================
      CONTENT
==========================*/

.about-content {
  max-width: 700px;
}

.section-tag {
  display: flex;

  align-items: center;

  gap: 15px;

  color: #008556;

  font-weight: 600;

  letter-spacing: 4px;

  font-size: 10px;

  margin-bottom: 20px;
}

.section-tag span {
  width: 30px;
  height: 2px;

  background: #008556;
}

.about-content h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 55px;

  color: #00512d;

  line-height: 1.08;

  margin-bottom: 20px;
}

.about-content h2 span {
  color: #00985d;

  font-style: italic;
}

.about-content p {
  font-size: 15px;

  line-height: 1.8;

  color: #626262;

  margin-bottom: 40px;
}

.about-content strong {
  color: #00512d;
}

/*==========================
      FEATURES
==========================*/

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px 45px;

  margin-bottom: 50px;
}

.feature-column {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.feature {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  font-size: 14px;

  color: #222;

  line-height: 1.6;
}

.feature i {
  color: #00985d;

  font-size: 15px;

  margin-top: 4px;
}

/*==========================
      BUTTONS
==========================*/

.about-buttons {
  display: flex;

  gap: 18px;
}

.btn-primary {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 55px;

  padding: 0 17px;

  border-radius: 50px;

  background: #00512d;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  font-size: 15px;

  transition: 0.35s;
}

.btn-primary:hover {
  background: #007343;
}

.btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 55px;

  padding: 0 18px;

  border-radius: 50px;

  text-decoration: none;

  color: #00512d;

  font-weight: 600;

  font-size: 16px;

  border: 1px solid #cfd7d3;

  background: #fff;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #00512d;

  color: #fff;
}

/*======================================
            MOBILE
=======================================*/

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }

  .container {
    width: 92%;

    gap: 55px;
  }

  /* Image */

  .about-image img {
    min-height: 430px;

    border-radius: 24px;
  }

  /* Rating Card */

  .rating-card {
    left: 12px;

    top: 12px;

    width: 95px;

    height: 95px;

    border-radius: 0 0 20px 20px;

    padding-left: 14px;
  }

  .rating-card h3 {
    font-size: 28px;
  }

  .rating-card h3 i {
    font-size: 16px;
  }

  .rating-card p {
    font-size: 12px;
  }

  /* Experience */

  .experience-card {
    width: 115px;

    height: 105px;

    right: 10px;

    bottom: 10px;

    border-radius: 18px;
  }

  .experience-card h2 {
    font-size: 42px;
  }

  .experience-card span {
    font-size: 10px;

    letter-spacing: 1px;
  }

  /* Content */

  .section-tag {
    font-size: 12px;

    letter-spacing: 2px;

    gap: 10px;
  }

  .section-tag span {
    width: 25px;
  }

  .about-content h2 {
    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 22px;
  }

  .about-content p {
    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
  }

  /* Features */

  .about-features {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .feature-column {
    gap: 18px;
  }

  .feature {
    font-size: 16px;
  }

  .feature i {
    font-size: 18px;
  }

  /* Buttons */

  .about-buttons {
    flex-direction: column;

    gap: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;

    height: 56px;

    font-size: 16px;
  }
  .btn-primary {
    width: 150%;
  }
}

@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }
}

/*==========================
  SECTION
==========================*/

:root {
  --cream: #f3efe4;
  --cream-2: #ece6d6;
  --forest: #1f4d3a;
  --forest-dark: #163a2b;
  --forest-soft: #2f6b4f;
  --gold: #e0a95b;
  --gold-dark: #c88f3f;
  --ink: #2b2b26;
  --muted: #6f6b60;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--ink);
}

.treatments {
  padding: 40px 24px 40px;
  background: radial-gradient(
    120% 100% at 50% 0%,
    var(--cream-2) 0%,
    var(--cream) 55%
  );
}

.treatments__inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--forest);
  display: inline-block;
}

.treatments h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  max-width: 880px;
  margin: 0 auto 24px;
}
.treatments h1 em {
  font-style: italic;
  color: var(--forest-soft);
}

.treatments__sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(31, 77, 58, 0.25);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -20px rgba(31, 77, 58, 0.32);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge svg {
  width: 14px;
  height: 14px;
}

.price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--forest-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px -6px rgba(200, 143, 63, 0.6);
}

.card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card__body h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--forest);
  font-size: 1.4rem;
}

.card__body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  width: fit-content;
  margin-top: 4px;
}
.book-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.book-link:hover svg {
  transform: translateX(4px);
}
.book-link:hover {
  color: var(--forest-soft);
}

/* Responsive */
@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .treatments {
    padding: 44px 18px 10px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .treatments h1 {
    font-size: 2rem;
  }
  .treatments__sub {
    margin-bottom: 40px;
    font-size: 1rem;
  }
}

.btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.spa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: #014f2d;
  color: #fff;

  padding: 18px 30px;

  border-radius: 50px;

  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  box-shadow: 0 12px 30px rgba(1, 79, 45, 0.18);

  transition: all 0.3s ease;
}

.spa-btn i {
  font-size: 20px;
}

.spa-btn:hover {
  background: #016138;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(1, 79, 45, 0.28);
}

/* Tablet */

@media (max-width: 768px) {
  .spa-btn {
    padding: 16px 30px;
    font-size: 18px;
  }
}

/* Mobile */

@media (max-width: 480px) {
  .btn-wrapper {
    padding: 25px 10px;
  }

  .spa-btn {
    width: 100%;
    max-width: 340px;

    padding: 10px 15px;

    font-size: 14px;
    gap: 10px;
  }

  .spa-btn i {
    font-size: 17px;
  }
}

/*=============================
   WHY CHOOSE US SECTION
==============================*/

.zen-reasons-section {
  width: 100%;
  padding: 90px 20px;
  background: #faf7ef;
}

.zen-reasons-wrapper {
  max-width: 1400px;
  margin: auto;
}

.zen-heading-area {
  text-align: center;
  margin-bottom: 70px;
}

.zen-small-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #00885c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}

.zen-title-line {
  width: 65px;
  height: 2px;
  background: #00885c;
  display: block;
}

.zen-main-heading {
  max-width: 760px;
  margin: auto;
  font-size: 60px;
  line-height: 1.05;
  color: #044d37;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.zen-main-heading em {
  color: #0b8b5b;
  font-style: italic;
}

/*=============================
        CARDS
==============================*/

.zen-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.zen-feature-box {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(220, 190, 110, 0.18);
  transition: 0.35s ease;
}

.zen-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(220, 190, 110, 0.28);
}

.zen-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #014b33;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.zen-feature-icon i {
  color: #e6b84a;
  font-size: 22px;
}

.zen-feature-title {
  font-size: 25px;
  color: #044d37;
  margin-bottom: 15px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.zen-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #606060;
  font-family: "Poppins", sans-serif;
}

/*=============================
      TABLET
==============================*/

@media (max-width: 1100px) {
  .zen-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zen-main-heading {
    font-size: 55px;
  }
}

/*=============================
       MOBILE
==============================*/

@media (max-width: 768px) {
  .zen-reasons-section {
    padding: 60px 18px;
  }

  .zen-heading-area {
    margin-bottom: 45px;
  }

  .zen-small-title {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .zen-title-line {
    width: 40px;
  }

  .zen-main-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .zen-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zen-feature-box {
    padding: 25px;
    border-radius: 22px;
  }

  .zen-feature-icon {
    width: 58px;
    height: 58px;
  }

  .zen-feature-icon i {
    font-size: 22px;
  }

  .zen-feature-title {
    font-size: 28px;
  }

  .zen-feature-text {
    font-size: 16px;
  }
}

/*=============================
      SMALL MOBILE
==============================*/

@media (max-width: 480px) {
  .zen-main-heading {
    font-size: 34px;
  }

  .zen-feature-title {
    font-size: 25px;
  }

  .zen-feature-box {
    padding: 22px;
  }
}

.royalGuestVault {
  width: 100%;
  background: #004b28;
  padding: 90px 20px;
  overflow: hidden;
}

.royalGuestWrapper {
  max-width: 1150px;
  margin: auto;
}

/*==============================
 HEADING
==============================*/

.eliteGuestHeading {
  text-align: center;
}

.eliteMiniHeading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #d6a63c;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eliteMiniLine {
  width: 45px;
  height: 2px;
  background: #d6a63c;
  display: block;
}

.eliteMainTitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.eliteMainTitle span {
  color: #d6a63c;
}

/*==============================
 RATING
==============================*/

.goldRatingBadge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  margin-bottom: 60px;
}

.goldRatingBadge h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #d6a63c;
}

.goldRatingText {
  text-align: left;
}

.goldStarCluster {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.goldStarCluster i {
  font-size: 14px;
  color: #d6a63c;
}

.goldRatingText p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/*==============================
 REVIEW BOX
==============================*/

.luxReviewSlider {
  position: relative;
}

.luxReviewTrack {
  position: relative;
}

.luxReviewItem {
  display: none;

  background: #01391f;

  border: 1px solid rgba(214, 166, 60, 0.45);

  border-radius: 36px;

  padding: 50px;

  text-align: center;

  animation: fadeReview 0.5s ease;
}

.activeSlide {
  display: block;
}

.reviewStars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
}

.reviewStars i {
  font-size: 20px;
  color: #d6a63c;
}

.reviewQuote {
  font-family: "Cormorant Garamond", serif;

  font-size: 32px;

  line-height: 1.28;

  font-style: italic;

  font-weight: 600;

  color: #ffffff;

  max-width: 800px;

  margin: auto;
}

.luxReviewItem h4 {
  margin-top: 45px;

  letter-spacing: 3px;

  font-size: 15px;

  font-weight: 600;

  color: #d6a63c;
}

/*==============================
 DOTS
==============================*/

.royalSliderDots {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

  margin-top: 40px;
}

.royalDot {
  width: 13px;

  height: 13px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  cursor: pointer;

  transition: 0.35s;
}

.royalDot.activeDot {
  width: 42px;

  border-radius: 30px;

  background: #d6a63c;
}

/*==============================
 ANIMATION
==============================*/

@keyframes fadeReview {
  from {
    opacity: 0;

    transform: translateY(25px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*========================================
            TABLET
========================================*/

@media (max-width: 992px) {
  .royalGuestVault {
    padding: 80px 20px;
  }

  .eliteMainTitle {
    font-size: 58px;
    line-height: 1.1;
  }

  .goldRatingBadge h3 {
    font-size: 58px;
  }

  .goldStarCluster i {
    font-size: 20px;
  }

  .goldRatingText p {
    font-size: 18px;
  }

  .luxReviewItem {
    padding: 55px 40px;
    border-radius: 28px;
  }

  .reviewStars {
    margin-bottom: 30px;
  }

  .reviewStars i {
    font-size: 24px;
  }

  .reviewQuote {
    font-size: 38px;
    max-width: 100%;
  }

  .luxReviewItem h4 {
    font-size: 22px;
    margin-top: 35px;
  }
}

/*========================================
              MOBILE
========================================*/

@media (max-width: 768px) {
  .royalGuestVault {
    padding: 70px 18px;
  }

  .eliteMiniHeading {
    font-size: 12px;
    letter-spacing: 3px;
    gap: 10px;
  }

  .eliteMiniLine {
    width: 35px;
  }

  .eliteMainTitle {
    font-size: 42px;
    line-height: 1.15;
  }

  .goldRatingBadge {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .goldRatingBadge h3 {
    font-size: 54px;
  }

  .goldRatingText {
    text-align: center;
  }

  .goldStarCluster {
    justify-content: center;
  }

  .goldStarCluster i {
    font-size: 18px;
  }

  .goldRatingText p {
    font-size: 16px;
  }

  .luxReviewItem {
    padding: 40px 25px;

    border-radius: 24px;
  }

  .reviewStars {
    margin-bottom: 25px;
  }

  .reviewStars i {
    font-size: 20px;
  }

  .reviewQuote {
    font-size: 30px;

    line-height: 1.45;
  }

  .luxReviewItem h4 {
    margin-top: 28px;

    font-size: 18px;

    letter-spacing: 2px;
  }

  .royalSliderDots {
    margin-top: 30px;
    gap: 10px;
  }

  .royalDot {
    width: 11px;
    height: 11px;
  }

  .royalDot.activeDot {
    width: 34px;
  }
}

/*========================================
          SMALL MOBILE
========================================*/

@media (max-width: 480px) {
  .royalGuestVault {
    padding: 60px 15px;
  }

  .eliteMainTitle {
    font-size: 34px;
  }

  .goldRatingBadge h3 {
    font-size: 46px;
  }

  .goldStarCluster i {
    font-size: 16px;
  }

  .goldRatingText p {
    font-size: 15px;
  }

  .luxReviewItem {
    padding: 30px 18px;

    border-radius: 20px;
  }

  .reviewStars i {
    font-size: 18px;
  }

  .reviewQuote {
    font-size: 23px;

    line-height: 1.55;
  }

  .luxReviewItem h4 {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
}

.emeraldReserveZone {
  width: 100%;
  background: #fbf8ef;
  padding: 110px 20px;
}

.emeraldReserveWrapper {
  max-width: 1200px;
  margin: auto;
}

.emeraldReserveContent {
  max-width: 620px;
}

.emeraldMiniHeading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #048657;
  margin-bottom: 30px;
}

.emeraldMiniLine {
  width: 50px;
  height: 2px;
  background: #048657;
}

.emeraldMainHeading {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  line-height: 1.05;
  color: #014b33;
  font-weight: 700;
  margin-bottom: 28px;
}

.emeraldMainHeading span {
  display: block;
  color: #0c8d60;
  font-style: italic;
}

.emeraldDescription {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #5f655f;
  max-width: 560px;
  margin-bottom: 55px;
}

.emeraldInfoList {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.emeraldInfoBox {
  display: flex;
  align-items: center;
  gap: 18px;
}

.emeraldInfoIcon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #014b33;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.emeraldInfoIcon i {
  color: #d8a941;
  font-size: 14px;
}

.emeraldInfoText {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #455048;
}

/*============== Tablet ==============*/

@media (max-width: 992px) {
  .emeraldMainHeading {
    font-size: 62px;
  }

  .emeraldDescription {
    font-size: 20px;
  }

  .emeraldInfoText {
    font-size: 21px;
  }
}

/*============== Mobile ==============*/

@media (max-width: 768px) {
  .emeraldReserveZone {
    padding: 70px 20px;
  }

  .emeraldMainHeading {
    font-size: 46px;
  }

  .emeraldDescription {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .emeraldMiniHeading {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .emeraldMiniLine {
    width: 40px;
  }

  .emeraldInfoIcon {
    width: 48px;
    height: 48px;
  }

  .emeraldInfoIcon i {
    font-size: 17px;
  }

  .emeraldInfoText {
    font-size: 17px;
    line-height: 1.6;
  }
}

/*============== Small Mobile ==============*/

@media (max-width: 480px) {
  .emeraldMainHeading {
    font-size: 38px;
  }

  .emeraldDescription {
    font-size: 16px;
  }

  .emeraldInfoText {
    font-size: 16px;
  }
}

/*====================================
        FAQ SECTION
====================================*/

.zenMysticFaqSection {
  width: 100%;
  background: #fbf8ef;
  padding: 100px 20px;
}

.zenMysticFaqWrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: flex-start;
}

/*==============================
LEFT SIDE
==============================*/

.zenMysticFaqContent {
  position: sticky;
  top: 40px;
}

.zenMysticSmallTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #04855a;
  margin-bottom: 22px;
}

.zenMysticLine {
  width: 38px;
  height: 2px;
  background: #04855a;
}

.zenMysticHeading {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 0.95;
  color: #004d33;
  font-weight: 700;
  margin-bottom: 28px;
}

.zenMysticHeading span {
  color: #00885b;
  font-style: italic;
}

.zenMysticDescription {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #5b655d;
  margin-bottom: 45px;
}

.zenMysticCallBtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  border-radius: 50px;
  background: #004d33;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: 0.35s;
}

.zenMysticCallBtn:hover {
  transform: translateY(-3px);
}

.zenMysticCallBtn i {
  color: #d9ab43;
  font-size: 20px;
}

/*==============================
RIGHT SIDE
==============================*/

.zenMysticAccordionArea {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.zenMysticFaqCard {
  background: #fff;
  border: 1px solid #ead9b5;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.35s;
}

.zenMysticFaqQuestion {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 20px;
}

.zenMysticFaqQuestion span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #004d33;
}

.zenMysticFaqQuestion i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3ecdf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004d33;
  transition: 0.3s;
}

.activeFaq .zenMysticFaqQuestion i {
  background: #e3ae42;
  transform: rotate(180deg);
}

.zenMysticFaqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.activeFaq .zenMysticFaqAnswer {
  max-height: 220px;
}

.zenMysticFaqAnswer p {
  padding: 0 26px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #5c665e;
}

/*==============================
TABLET
==============================*/

@media (max-width: 992px) {
  .zenMysticFaqWrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zenMysticFaqContent {
    position: relative;
    top: auto;
  }

  .zenMysticHeading {
    font-size: 58px;
  }

  .zenMysticCallBtn {
    font-size: 22px;
  }
}

/*==============================
MOBILE
==============================*/

@media (max-width: 768px) {
  .zenMysticFaqSection {
    padding: 20px 18px;
  }

  .zenMysticHeading {
    font-size: 44px;
    line-height: 1.05;
  }

  .zenMysticDescription {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .zenMysticCallBtn {
    padding: 16px 28px;
    font-size: 18px;
  }

  .zenMysticFaqQuestion {
    padding: 20px;
  }

  .zenMysticFaqQuestion span {
    font-size: 22px;
    line-height: 1.35;
    padding-right: 12px;
  }

  .zenMysticFaqQuestion i {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .zenMysticFaqAnswer p {
    padding: 0 20px 20px;
    font-size: 16px;
  }
}

/*==============================
SMALL MOBILE
==============================*/

@media (max-width: 480px) {
  .zenMysticHeading {
    font-size: 36px;
  }

  .zenMysticSmallTitle {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .zenMysticCallBtn {
    width: 100%;
    justify-content: center;
    font-size: 17px;
  }

  .zenMysticFaqQuestion span {
    font-size: 20px;
  }
}

/*==========================
      LOCATION SECTION
===========================*/

.royalLocateSection {
  width: 100%;
  padding: 100px 20px;
  background: #fbf8ef;
}

.royalLocateContainer {
  max-width: 1200px;
  margin: auto;
}

/*==========================
        HEADING
===========================*/

.royalLocateHeading {
  text-align: center;
  margin-bottom: 30px;
}

.royalLocateSmall {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #01875c;
  font-family: "Poppins", sans-serif;
  margin-bottom: 18px;
}

.royalLocateLine {
  width: 32px;
  height: 2px;
  background: #01875c;
}

.royalLocateHeading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 51px;
  color: #014b34;
  font-weight: 700;
  line-height: 1.05;
}

.royalLocateHeading span {
  color: #01875c;
  font-style: italic;
}

/*==========================
        GRID
===========================*/

.royalLocateGrid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 38px;
  align-items: start;
}

/*==========================
        LEFT SIDE
===========================*/

.royalContactSide {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.royalContactCard {
  background: #fff;
  border: 1px solid #ecdab5;
  border-radius: 30px;
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(229, 204, 135, 0.18);
}

.royalContactIcon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #014b34;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.royalContactIcon i {
  color: #e2ae43;
  font-size: 18px;
}

.royalContactContent h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #014b34;
  margin-bottom: 12px;
}

.royalContactContent p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #5c665f;
  line-height: 1.8;
}

/*==========================
       BUTTON
===========================*/

.royalDirectionBtn {
  margin-top: 6px;
  width: 100%;
  height: 62px;
  border-radius: 40px;
  background: linear-gradient(90deg, #efc34c, #d99221);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #014b34;
  font-family: "Poppins", sans-serif;
  transition: 0.35s;
}

.royalDirectionBtn:hover {
  transform: translateY(-4px);
}

.royalDirectionBtn i {
  font-size: 22px;
}

/*==========================
        MAP
===========================*/

.royalMapSide {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid #ecdab5;
  box-shadow: 0 10px 30px rgba(229, 204, 135, 0.18);
}

.royalMapSide iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

/*==========================
        TABLET
===========================*/

@media (max-width: 1100px) {
  .royalLocateGrid {
    grid-template-columns: 1fr;
  }

  .royalMapSide {
    order: -1;
  }

  .royalLocateHeading h2 {
    font-size: 56px;
  }

  .royalMapSide iframe {
    height: 500px;
  }
}

/*==========================
        MOBILE
===========================*/

@media (max-width: 768px) {
  .royalLocateSection {
    padding: 70px 18px;
  }

  .royalLocateHeading {
    margin-bottom: 40px;
  }

  .royalLocateHeading h2 {
    font-size: 42px;
    line-height: 1.15;
  }

  .royalLocateSmall {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .royalLocateLine {
    width: 35px;
  }

  .royalContactCard {
    padding: 22px;
    border-radius: 24px;
  }

  .royalContactIcon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .royalContactIcon i {
    font-size: 20px;
  }

  .royalContactContent h3 {
    font-size: 24px;
  }

  .royalContactContent p {
    font-size: 16px;
    line-height: 1.7;
  }

  .royalDirectionBtn {
    height: 62px;
    font-size: 20px;
  }

  .royalMapSide {
    border-radius: 24px;
  }

  .royalMapSide iframe {
    height: 380px;
  }
}

/*==========================
      SMALL MOBILE
===========================*/

@media (max-width: 480px) {
  .royalLocateHeading h2 {
    font-size: 34px;
  }

  .royalContactCard {
    flex-direction: column;
    align-items: flex-start;
  }

  .royalContactIcon {
    width: 54px;
    height: 54px;
  }

  .royalDirectionBtn {
    font-size: 18px;
    height: 58px;
  }

  .royalMapSide iframe {
    height: 300px;
  }
}

/*======================================
        FOOTER SECTION
======================================*/

.emeraldRoyalFooter {
  width: 100%;
  background: #02492f;
  color: #fff;
  overflow: hidden;
}

.emeraldFooterWrapper {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/*======================================
        BRAND COLUMN
======================================*/

.emeraldLogoBox {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.emeraldLogoCircle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d8a941;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emeraldLogoCircle i {
  font-size: 20px;
  color: #02492f;
}

.emeraldLogoBox h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.emeraldBrandText {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #d8e6dd;
  margin-bottom: 35px;
}

/*======================================
         REVIEW BOX
======================================*/

.emeraldReviewBox {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emeraldStars {
  display: flex;
  gap: 4px;
}

.emeraldStars i {
  color: #d8a941;
  font-size: 15px;
}

.emeraldReviewBox span {
  color: #fff;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

/*======================================
        FOOTER COLUMNS
======================================*/

.emeraldFooterColumn h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #d8a941;
  margin-bottom: 28px;
}

.emeraldFooterColumn ul {
  list-style: none;
}

.emeraldFooterColumn li {
  margin-bottom: 7px;
}

.emeraldFooterColumn a {
  text-decoration: none;
  color: #d7e4dc;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.emeraldFooterColumn a:hover {
  color: #d8a941;
  padding-left: 6px;
}

/*======================================
      CONTACT INFO
======================================*/

.emeraldWorkTime,
.emeraldAddress {
  font-family: "Poppins", sans-serif;
  color: #d7e4dc;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 28px;
}

.emeraldContactHeading {
  margin-top: 20px;
}

.emeraldPhoneNumber {
  display: inline-block;
  margin-top: 12px;
  color: #d8a941;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

/*======================================
      COPYRIGHT
======================================*/

.emeraldFooterBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.emeraldFooterBottomWrap {
  max-width: 1400px;
  margin: auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.emeraldFooterBottomWrap p {
  color: #d7e4dc;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

/*======================================
            TABLET
======================================*/

@media (max-width: 1100px) {
  .emeraldFooterWrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }

  .emeraldFooterBottomWrap {
    flex-direction: column;
    text-align: center;
  }
}

/*======================================
            MOBILE
======================================*/

@media (max-width: 768px) {
  .emeraldRoyalFooter {
    text-align: center;
  }

  .emeraldFooterWrapper {
    grid-template-columns: 1fr;
    padding: 70px 20px 50px;
  }

  .emeraldLogoBox {
    justify-content: center;
  }

  .emeraldReviewBox {
    justify-content: center;
  }

  .emeraldFooterColumn ul {
    padding: 0;
  }

  .emeraldFooterColumn li {
    margin-bottom: 15px;
  }

  .emeraldFooterColumn h3 {
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: 30px;
  }

  .emeraldPhoneNumber {
    font-size: 20px;
  }
}

/*======================================
          SMALL MOBILE
======================================*/

@media (max-width: 480px) {
  .emeraldLogoCircle {
    width: 60px;
    height: 60px;
  }

  .emeraldLogoCircle i {
    font-size: 24px;
  }

  .emeraldLogoBox h2 {
    font-size: 34px;
  }

  .emeraldBrandText {
    font-size: 16px;
  }

  .emeraldFooterColumn h3 {
    font-size: 28px;
  }

  .emeraldFooterColumn a,
  .emeraldWorkTime,
  .emeraldAddress {
    font-size: 16px;
  }

  .emeraldFooterBottomWrap p {
    font-size: 14px;
  }
}

.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 99999;
}

/* WhatsApp */
.whatsapp-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-circle i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

/* Book Button */
.book-btn {
  background: #e8ae3b;
  color: #0d4b3c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 50px 0 0 50px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: 0.3s;
}

.book-btn:hover {
  transform: translateX(-5px);
}

.book-btn i {
  font-size: 24px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .floating-btns {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-circle {
    width: 70px;
    height: 70px;
  }

  .whatsapp-circle i {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .book-btn {
    padding: 14px 22px;
    font-size: 18px;
  }

  .book-btn i {
    font-size: 18px;
  }
}

html {
  scroll-behavior: smooth;
}

/* ===== Hero ===== */

.privacyHeroArea {
  position: relative;
  height: 380px;
  background: url("images/privacy-banner.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privacyHeroOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 55, 35, 0.65);
}

.privacyHeroContent {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 20px;
}

.privacyTag {
  display: inline-block;
  padding: 10px 22px;
  background: #d9b15d;
  color: #0f5a45;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.privacyHeroContent h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.privacyHeroContent h1 span {
  color: #d9b15d;
}

.privacyHeroContent p {
  font-size: 18px;
  line-height: 1.8;
}

/* ===== Section ===== */

.privacyContentWrapper {
  padding: 90px 20px;
  background: #f8f7f2;
}

.privacyContainer {
  max-width: 1150px;
  margin: auto;
  display: grid;
  gap: 30px;
}

/* ===== Card ===== */

.privacyBox {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  border-left: 5px solid #c89c3b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.privacyBox:hover {
  transform: translateY(-5px);
}

.privacyBox h2 {
  font-size: 38px;
  color: #0f5a45;
  margin-bottom: 18px;
}

.privacyBox h3 {
  font-size: 28px;
  color: #0f5a45;
  margin-bottom: 18px;
}

.privacyBox p {
  color: #555;
  line-height: 1.9;
}

.privacyBox ul {
  padding-left: 20px;
}

.privacyBox li {
  margin-bottom: 12px;
  color: #555;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .privacyHeroArea {
    height: 260px;
  }

  .privacyHeroContent h1 {
    font-size: 34px;
  }

  .privacyHeroContent p {
    font-size: 15px;
  }

  .privacyBox {
    padding: 25px;
  }

  .privacyBox h2 {
    font-size: 28px;
  }

  .privacyBox h3 {
    font-size: 22px;
  }
}

/* Hero */

.galleryHeroSection {
  height: 420px;

  background: url("gallery-banner.jpg") center/cover;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;
}

.galleryHeroOverlay {
  position: absolute;

  inset: 0;

  background: rgba(10, 40, 32, 0.65);
}

.galleryHeroContent {
  position: relative;

  z-index: 2;

  max-width: 800px;

  padding: 20px;

  color: #fff;
}

.galleryHeroContent span {
  display: inline-block;

  background: #d9af52;

  padding: 10px 22px;

  border-radius: 30px;

  color: #0d4b3b;

  font-weight: 600;

  margin-bottom: 20px;
}

.galleryHeroContent h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.galleryHeroContent em {
  color: #d9af52;

  font-style: normal;
}

.galleryHeroContent p {
  font-size: 18px;

  line-height: 1.8;
}

/* Gallery */

.spaGalleryWrapper {
  padding: 90px 20px;
}

.spaGalleryHeading {
  text-align: center;

  margin-bottom: 60px;
}

.spaGalleryHeading h5 {
  color: #c89c3b;

  letter-spacing: 3px;

  margin-bottom: 15px;
}

.spaGalleryHeading h2 {
  font-size: 48px;

  color: #114638;

  margin-bottom: 20px;
}

.spaGalleryHeading p {
  max-width: 650px;

  margin: auto;

  color: #666;

  line-height: 1.8;
}

/* Grid */

.spaGalleryGrid {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

/* Card */

.spaGalleryCard {
  overflow: hidden;

  border-radius: 18px;

  background: #fff;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  cursor: pointer;
}

.spaGalleryCard img {
  width: 100%;

  height: 320px;

  object-fit: cover;

  transition: 0.5s;

  display: block;
}

.spaGalleryCard:hover img {
  transform: scale(1.12);
}

/* Tablet */

@media (max-width: 992px) {
  .spaGalleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galleryHeroContent h1 {
    font-size: 42px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .galleryHeroSection {
    height: 280px;
  }

  .galleryHeroContent h1 {
    font-size: 32px;
  }

  .galleryHeroContent p {
    font-size: 15px;
  }

  .spaGalleryHeading h2 {
    font-size: 32px;
  }

  .spaGalleryGrid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .spaGalleryCard img {
    height: 260px;
  }
}

.spa-slider-section {
  width: 100%;
  padding: 60px 0;
   background: radial-gradient(
    120% 100% at 50% 0%,
    var(--cream-2) 0%,
    var(--cream) 55%
  );
}

.spa-slider {
  width: 92%;
  max-width: 1300px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.spa-slide {
  display: none;
  animation: fade 0.8s;
}

.spa-slide.active {
  display: block;
}

.spa-slide img {
  width: 100%;
  height: 650px;
  display: block;
  object-fit: cover;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.3s;
  z-index: 5;
}

.slider-btn:hover {
  background: #0fb9b1;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #0fb9b1;
  opacity: 1;
  transform: scale(1.3);
}

/* Tablet */

@media (max-width: 992px) {
  .spa-slide img {
    height: 500px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .spa-slider {
    width: 95%;
    border-radius: 12px;
  }

  .spa-slide img {
    height: 260px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .slider-dots {
    bottom: 12px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
