:root {
  --color-bg: #f5f0ea;
  --color-bg-muted: #efe5d9;
  --color-bg-dark: #1f1510;
  --color-surface: #ffffff;
  --color-accent: #b88a4a;
  --color-accent-soft: rgba(184, 138, 74, 0.12);
  --color-text: #2b2119;
  --color-text-soft: #6a5a4f;
  --color-border: #e0d4c7;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 8px 20px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif !important;
  color: var(--color-text);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  line-height: 1.6;
}

.container {
  width: min(1160px, 100% - 3rem);
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
  background: var(--color-bg-dark);
  color: #fdf8f2;
  font-size: 0.82rem;
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  gap: 1rem;
}

.top-bar__tagline {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-bar__contact {
  opacity: 0.85;
  margin-right: 0.5rem;
}

.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 0.5rem;
}

.top-bar__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-bar__socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: poInter;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #c5954a, #af8040);
  border-color: #c5954a;
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 25px rgba(185, 133, 67, 0.45);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: inherit;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
}

.btn--full {
  width: 100%;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__logo {
  height: 54px;
  width: 125px;
  object-fit: contain;
}


.brand__logo--footer {
  height: auto;
  width: 250px;
  max-width: 100%;
  margin-top: -65px;
  margin-bottom: -65px;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c5954a, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link--cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 74, 0.7);
  color: #5b3a22;
}

.nav__link--cta:hover {
  background: rgba(184, 138, 74, 0.08);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fffdf9;
  cursor: poInter;
}

.nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #5b3a22;
  width: 16px;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle--open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav__toggle--open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlideAnim 18s infinite;
}

.hero__slide:nth-child(1) {
  animation-delay: 0s;
}

.hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.hero__slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroSlideAnim {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  5% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  38% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

/* ── Inner Page Banner (slim) ───────────────────────── */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  background-image: url("images/1 (1).jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero--about {
  background-position: center 30%;
}

.page-hero--rooms {
  background-position: center 50%;
}

.page-hero--exp {
  background-position: center 45%;
}

.page-hero--events {
  background-position: center 35%;
}

.page-hero--gallery {
  background-position: center 40%;
}

.page-hero--contact {
  background-position: center 50%;
}

/* Dark gradient overlay */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 10, 30, 0.72) 0%,
      rgba(15, 10, 30, 0.50) 60%,
      rgba(15, 10, 30, 0.25) 100%);
}

/* Text block sits on the overlay */
.page-hero__body {
  position: relative;
  z-index: 2;
  padding: 2.8rem 2rem 2.6rem;
  /* width: 100%; */
}

.page-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Breadcrumb */
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
  color: #fff;
}

.page-hero__breadcrumb span.sep {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .page-hero {
    min-height: 26vh;
  }

  .page-hero__title {
    font-size: 1.6rem;
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* Hero Content Split Layout */
.hero__content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  padding-bottom: 5rem;
  /* Leave room for booking bar */
  width: 100%;
  min-height: 100vh;
  /* Force container body to be tall enough to vertically center contents */
}

.hero__text-column {
  flex: 1;
  max-width: 650px;
  color: #fff;
  animation: fadeRight 1s ease-out forwards;
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e58e26;
  /* Match Pugmark orange */
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.2rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 0 2.2rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Right Media Column */
.hero__media-column {
  flex: 0 0 auto;
  align-self: flex-end;
  animation: fadeLeft 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__video-card {
  position: relative;
  width: 420px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero__video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero__video-card:hover .hero__video-thumbnail {
  transform: scale(1.05);
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e58e26;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  /* visually center play triangle */
}

.hero__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #f8f8f8;
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal--active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.video-modal__content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.video-modal__close:hover {
  color: #e58e26;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .video-modal__close {
    top: 10px;
    right: 15px;
    z-index: 20;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .hero__media-column{
    align-self: center;
    margin-bottom: 20px;
  }
}

/* Far Right Socials */
.hero__socials {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 3;
}

.hero__socials a {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__socials a:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Solid orange button for hero */
.btn--hero-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.4rem;
  background-color: #e58e26;
  border: 1px solid #e58e26;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn--hero-solid:hover {
  background-color: #d8811e;
  border-color: #d8811e;
}

/* Outlined white button for hero */
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.4rem;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: poInter;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d8b6;
}

/* Horizontal Booking Bar */
/* Horizontal Booking Bar */
.hero__booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  /* Changed to transparent, inner form is white */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem 0;
  /* Removing bottom padding to connect to edge */
}

.booking-bar__form {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1150px;
  /* Slightly wider to fit everything beautifully */
  background: #fff;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  /* Subtle rounding like the screenshot */
  overflow: hidden;
}

.booking-bar__brand {
  flex: 0 0 auto;
  padding: 0 2rem;
  font-family: serif;
  /* fallback to match the classy serif look */
  font-size: 0.95rem;
  color: #444;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  border-right: 1px solid #eaeaea;
}

.booking-bar__field {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1.5rem;
  min-height: 70px;
  /* Force larger height for the fields */
  min-width: 0;
}

.booking-bar__field--select {
  padding: 0 1.2rem;
  position: relative;
  flex: 0 0 auto;
  min-height: 70px;
  /* Force larger height for the fields */
  border-left: 1px solid #eaeaea;
  /* Vertical separator lines */
}

.booking-bar__label {
  font-size: 0.75rem;
  font-weight: 400;
  /* Thinner weight like screenshot */
  letter-spacing: 0.05em;
  color: #b0b0b0;
  /* Light gray */
  margin: 0;
  white-space: nowrap;
}

.booking-bar__input-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-bar__icon {
  width: 14px;
  height: 14px;
  color: #d97725;
  /* Exact match orange */
}

.booking-bar__input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.8rem;
  color: #b0b0b0;
  /* Matching light gray */
  font-family: inherit;
  font-weight: 400;
  width: auto;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Specific styling for the actual text "SELECT DATE" or selected date */
input[type="text"].booking-bar__input,
input[type="date"].booking-bar__input {
  color: #999;
}

.booking-bar__input::placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.booking-bar__input:focus {
  outline: none;
  color: #555;
}

/* Hide default dropdown arrow */
select.booking-bar__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.2rem;
  color: #555;
  text-transform: none;
  /* "Room 1" not "ROOM 1" */
}

.booking-bar__chevron {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: #555;
  pointer-events: none;
}

.booking-bar__divider {
  display: none;
  /* We use border-left on specific items instead for exactly matching the lines */
}

.booking-bar__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  background-color: #d97725;
  /* Exact match orange */
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  min-width: 160px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.6rem;
  margin-left: 0;
  border-radius: 3px;
}

.booking-bar__btn:hover {
  background-color: #c06921;
}

/* Keep contact form input styles */
.contact-form input,
.contact-form textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 0.9rem;
  font-size: 0.83rem;
  background: rgba(12, 7, 4, 0.9);
  color: #f9efe2;
  outline: none;
  font-family: inherit;
}

.contact-form textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 120px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(249, 239, 226, 0.6);
}

/* Sections */
.section {
  padding: 4.4rem 0;
}

.section--light {
  background: var(--color-bg);
}

.section--muted {
  background: var(--color-bg-muted);
}

.section__header {
  margin-bottom: 2rem;
}

.section__header--center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.4rem;
}

.section__header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  margin: 0.4rem 0 0.6rem;
}

.section__header p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.section__two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section__two-column--stack {
  align-items: flex-start;
}

.section__text p {
  color: var(--color-text-soft);
  font-size: 0.97rem;
}

.section__text p+p {
  margin-top: 0.7rem;
}

.section__media {
  display: flex;
  align-items: stretch;
}

/* Media card */
.media-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.media-card__image {
  height: 480px;
  background-image: url("images/1 (4).jpg");
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-card:hover .media-card__image {
  transform: scale(1.05);
}

.media-card__image--temple {
  background-image: url("images/heart.webp");
}

.media-card__image--dining {
  background-image: url("images/food.jpg");
}

/* About Us Slider */
.about-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease, transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-slide--active {
  opacity: 1;
  z-index: 1;
}

.media-card:hover .about-slide--active {
  transform: scale(1.05);
}

/* Slider Controls */
.about-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: poInter;
  transition: all 0.3s ease;
  opacity: 0;
}

.about-slider:hover .about-slider__btn {
  opacity: 1;
}

.about-slider__btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.about-slider__btn--prev {
  left: 1rem;
}

.about-slider__btn--next {
  right: 1rem;
}

.media-card__body {
  padding: 1.3rem 1.4rem 1.4rem;
}

.media-card__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.media-card__body p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--color-text-soft);
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.highlight-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.highlight-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.highlight-card__icon {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 0.8rem;
  object-fit: contain;
}

.highlight-card__subheading {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #af8040;
  margin: 0 0 0.4rem;
  font-weight: 600;
}

/* Cards generic */
.cards {
  display: grid;
  gap: 1.6rem;
}

.cards--rooms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards--packages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--experiences {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Room cards */
.room-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Room Carousel */
.room-carousel {
  height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.room-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease, transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-slide--active {
  opacity: 1;
  z-index: 1;
}

.room-card:hover .room-slide--active {
  transform: scale(1.05);
}

.room-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: poInter;
  transition: all 0.3s ease;
  opacity: 0;
}

.room-carousel:hover .room-slider__btn {
  opacity: 1;
}

.room-slider__btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
}

.room-slider__btn--prev {
  left: 1rem;
}

.room-slider__btn--next {
  right: 1rem;
}

.room-card__body {
  padding: 1.3rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.room-card__body h3 {
  font-family: 'Inter', sans-serif;
  margin: 0;
  font-size: 1.2rem;
}

.room-card__body p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--color-text-soft);
}

.room-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--color-text-soft);
}

.room-card__meta li {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
}

.room-card__price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}

.room-card__price-value {
  font-weight: 600;
  font-size: 0.98rem;
}

.room-card__amenities {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.room-card__amenities span {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(184, 138, 74, 0.55);
}

/* Packages */
.package-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.package-card__badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--color-accent-soft);
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  color: #7b5425;
}

.package-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.package-card p {
  margin: 0 0 0.9rem;
  font-size: 0.93rem;
  color: var(--color-text-soft);
}

/* Experiences */
.experience-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.experience-card h3 {
  font-family: 'Inter', sans-serif;
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
}

.experience-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--color-text-soft);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid__item {
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  min-height: 380px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.gallery-grid__item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  position: relative;
}

.gallery-grid__item--room {
  background-image: url("images/1 (6).jpg");
}

.gallery-grid__item--lobby {
  background-image: url("images/1 (21).jpg");
}

.gallery-grid__item--dining {
  background-image: url("images/fasade.jpg");
}

.gallery-grid__item--temple {
  background-image: url("images/1 (14).jpg");
}

.gallery-grid__item--corridor {
  background-image: url("images/1 (51).jpg");
}

.gallery-grid__item--night {
  background-image: url("images/1 (11).jpg");
}

/* Testimonials */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card__quote {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.testimonial-card__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ */
.faq {
  max-width: 80rem;
  /* widened further for three columns */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .faq {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (min-width: 1024px) {
  .faq {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on desktop */
    gap: 2rem;
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq__item summary {
  list-style: none;
  cursor: poInter;
  font-weight: 500;
  font-size: 0.95rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}


.faq__item p {
  margin: 0.45rem 0 0.2rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

/* Contact */
.section--contact {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
}

.contact-details__item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.contact-details__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.contact-form {
  background: #fdf7ee;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form input {
  background: #fff;
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Footer */
.footer {
  background: #18100b;
  color: #f1e5d6;
  padding-top: 2.8rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 18rem;
  flex-direction: column;
}

.footer__title {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.footer__subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(246, 230, 211, 0.9);
}

.footer__columns {
  display: flex;
  gap: 2.5rem;
}

.footer__column h3 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

.footer__column a {
  color: rgba(243, 229, 211, 0.9);
}

.footer__column a:hover {
  color: #ffffff;
}

.footer__bottom {
  padding: 0.9rem 0 1.4rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(240, 224, 204, 0.88);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__content-wrapper {
    padding: 0 2rem;
    padding-bottom: 5rem;
  }

  .hero__heading {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero__video-card {
    width: 320px;
    height: 200px;
  }

  .hero__socials {
    right: 1rem;
  }
}

@media (max-width: 850px) {
  .hero__content-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-top: 4rem;
  }

  .hero__text-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__socials {
    display: none;
    /* Hide on smaller screens to save space */
  }
}

@media (max-width: 960px) {
  .hero__content-wrapper {
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .booking-bar__form {
    flex-wrap: wrap;
    border-radius: 8px;
    align-items: stretch;
  }

  .booking-bar__field {
    flex: 1 1 50%;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    min-height: 60px;
    /* slightly smaller on tablet */
  }

  .booking-bar__field--select {
    border-left: none;
    /* remove desktop divider */
  }

  .booking-bar__field:nth-child(even) {
    border-right: none;
  }

  .booking-bar__btn {
    flex: 1 1 100%;
    padding: 1.2rem;
    border-radius: 0 0 8px 8px;
    margin: 0;
    /* remove desktop margin */
  }

  .booking-bar__brand {
    display: none;
    /* Hide brand text on smaller screens */
  }

  .section__two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards--rooms,
  .cards--packages,
  .cards--experiences,
  .cards--testimonials,
  .highlights-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .top-bar__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: absolute;
    right: 1.5rem;
    top: calc(100% + 0.4rem);
    flex-direction: column;
    background: #fffdf9;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav__list--open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav__link--cta {
    border-color: rgba(184, 138, 74, 0.9);
  }

  /* Reduce general section padding for smaller screens */
  .section {
    padding: 2.5rem 0;
  }

  /* Reduce image heights on mobile */
  .media-card__image {
    height: 300px;
    min-height: 250px !important; 
  }

  .about-slider {
    height: 300px !important;
    min-height: 250px !important;
  }

  .gallery-grid__item {
    min-height: 250px;
  }

  /* Tighter padding on cards */
  .room-card__body,
  .package-card,
  .experience-card {
    padding: 1.2rem;
  }

  /* Force grids to 1 column on mobile screens */
  .cards--rooms,
  .cards--packages,
  .cards--experiences,
  .cards--testimonials,
  .highlights-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    /* Let content dictate height on mobile */
    padding-bottom: 0;
  }

  .hero__content-wrapper {
    padding: 2rem 1rem 18rem; /* Enough bottom padding to push content above the giant booking bar */
  }

  .hero__heading {
    font-size: clamp(2rem, 8vw, 2.5rem);
    /* slightly smaller fit for mobile */
  }

  .hero__video-card {
    width: 100%;
    /* full width of container */
    max-width: 320px;
    height: 200px;
    margin: 0 auto;
    align-self: center; /* Center it since column layout collapses */
  }

  .booking-bar__form {
    flex-direction: column;
    /* completely stack them */
    border-radius: 8px;
    margin: 0 1rem;
    /* add breathing room on mobile */
  }

  .booking-bar__field {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    justify-content: flex-start;
    /* align left on mobile for easier reading */
    padding: 0 1.5rem;
  }

  .booking-bar__field:last-of-type {
    border-bottom: none;
  }

  .booking-bar__btn {
    border-radius: 0 0 8px 8px;
  }

  .contact-form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }

  .section__media {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer__columns {
    flex-direction: column;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .top-bar__content {
    padding: 0.45rem 0;
  }

  .header__inner {
    padding: 0.6rem 0;
  }

  .booking-bar__field {
    padding: 0 1.2rem;
  }
}

/* ── Experiences Zigzag Layout ── */
.zigzag-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.zigzag-item {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.zigzag-item--reverse {
  flex-direction: row-reverse;
}

.zigzag-item__media {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.zigzag-item__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.zigzag-item__content {
  flex: 1;
}

.zigzag-item__content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.zigzag-item__content p {
  color: var(--color-text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .zigzag-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  .zigzag-item--reverse {
    flex-direction: column;
  }

  .zigzag-item__media img {
    aspect-ratio: 16/9;
  }
}

/* ===========================
   Booking Modal
   =========================== */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.booking-modal--open {
  display: flex;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.booking-modal__box {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border-radius: var(--radius-lg, 12px);
  padding: 2.5rem;
  width: 90%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .booking-modal__box {
    padding: 2rem 1.25rem;
    width: 95%;
  }
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: poInter;
  color: var(--color-text-soft);
  line-height: 1;
  transition: color 0.2s;
}

.booking-modal__close:hover {
  color: var(--color-text);
}

/* --- Premium Custom Styles for New Sections --- */
.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.premium-feature-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--color-text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(184, 138, 74, 0.12);
  border-color: var(--color-accent);
}

.premium-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.premium-feature-icon::after {
  content: '✓';
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pill-item {
  background: #fff;
  border: 1px solid rgba(184, 138, 74, 0.4);
  color: var(--color-text);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.pill-item::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 800;
}

.pill-item:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(184, 138, 74, 0.2);
}

.pill-item:hover::before {
  color: #fff;
}

.promise-section {
  background: linear-gradient(135deg, #1f1510 0%, #2b1d16 100%);
  color: #fdf8f2;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.promise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1.5" fill="rgba(184,138,74,0.12)"/></svg>');
  z-index: 0;
}

.promise-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(184, 138, 74, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.promise-highlight {
  color: var(--color-accent);
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
  margin: 2rem 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.promise-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
}

.about-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}

.about-us-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.about-us-item::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 800;
  margin-top: 0.1rem;
}

@media (max-width: 768px) {
  .about-us-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Responsiveness for Premium Sections --- */
@media (max-width: 960px) {
  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .premium-feature-item {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }

  .promise-section {
    padding: 3.5rem 0;
  }

  .promise-content {
    margin: 0 1rem;
    padding: 2.5rem 1.5rem;
  }

  .promise-content h2 {
    font-size: 1.8rem !important;
  }

  .promise-highlight {
    font-size: 1.15rem;
    margin: 1.5rem 0;
  }

  .promise-text {
    font-size: 1rem;
  }

  .pill-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .pill-item {
    justify-content: center;
    text-align: center;
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-btn svg {
  width: 26px;
  height: 26px;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.floating-btn--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn--call {
  background: linear-gradient(135deg, #e58e26, #c06921);
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}