:root {
  --primary: #b5541b;
  --primary-light: #d4671f;
  --primary-dark: #8a3d12;
  --secondary: #1a3a2a;
  --accent: #e8c57e;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --bg-light: #fdf8f2;
  --bg-section: #f5ede0;
  --white: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  z-index: 1050;
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--primary) !important;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.navbar-brand span {
  color: var(--text-muted);
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 6px 14px !important;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--primary) !important;
}

/* Offcanvas Menu */
.offcanvas {
  width: 280px !important;
}
.offcanvas-header {
  background: var(--primary);
  color: #fff;
}
.offcanvas-header .btn-close {
  filter: invert(1);
}

/* Hero Section */
#hero {
  height: 60vh;
  min-height: 600px;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.65) 0%, rgba(26, 58, 42, 0.5) 100%),
    url("images/rooms/ac-delux-room.png")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
}
.hero-badge {
  display: inline-block;
  background: rgba(232, 197, 126, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  max-width: 560px;
  margin: 0 auto 28px;
}
.btn-hero-primary,
.btn-hero-outline {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-hero-primary {
  background: var(--primary);
  border: none;
  color: #fff;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* Typography & Section Titles */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.section-divider.left {
  margin: 0 0 24px;
}

/* About Section Elements */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
}
.about-badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
}
.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e8ddd0;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 4px;
}
.amenity-chip i {
  color: var(--primary);
}

/* Extended About Us & FAQ Scrollable Containers */
.about-extended-container {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e8ddd0;
  overflow: hidden;
}
.about-extended-scroll {
  max-height: 600px;
  overflow-y: auto;
  padding: 30px;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  .about-extended-scroll {
    padding: 50px;
  }
}
.about-extended-scroll::-webkit-scrollbar,
.faq-container-scroll::-webkit-scrollbar {
  width: 8px;
}
.about-extended-scroll::-webkit-scrollbar-track,
.faq-container-scroll::-webkit-scrollbar-track {
  background: #fdf8f2;
  border-radius: 10px;
}
.about-extended-scroll::-webkit-scrollbar-thumb,
.faq-container-scroll::-webkit-scrollbar-thumb {
  background-color: #b5541b;
  border-radius: 10px;
  border: 2px solid #fdf8f2;
}
.about-extended-scroll h3 {
  font-family: "Playfair Display", serif;
  color: #1a3a2a;
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
}
.about-extended-scroll h3:first-child {
  margin-top: 0;
}
.about-extended-scroll p {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}
.about-extended-scroll ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.about-extended-scroll li {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 10px;
}
.about-extended-scroll li strong {
  color: #1a3a2a;
}
.faq-container-scroll {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Room Cards */
.room-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}
.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.room-card .card-body {
  padding: 18px;
}
.room-price {
  display: inline-block;
  background: var(--bg-section);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.btn-book {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}
.btn-book:hover {
  opacity: 0.88;
  color: #fff;
}

/* Amenities & Cards */
.amenity-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s;
}
.amenity-box:hover {
  transform: translateY(-4px);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--primary);
}
.amenity-box h6 {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 4px;
}
.amenity-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
.loc-card,
.attract-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.loc-card {
  background: var(--bg-light);
  box-shadow: none;
}
.loc-icon,
.attract-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-icon {
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
}
.attract-icon {
  border-radius: 10px;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 1.1rem;
  width: 46px;
  height: 46px;
}
.loc-card h6,
.attract-card h6 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  color: var(--secondary);
}
.loc-card small,
.attract-card small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Check-in Cards */
.ci-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid #e8ddd0;
}
.ci-card .ci-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: #fff;
}

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
#lightboxModal .modal-content {
  background: #000;
  border: none;
}

/* Testimonials */
.testi-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e8ddd0;
}
.testi-card .stars {
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* FAQ Accordion Styling */
.accordion-item {
  border: 1px solid #e8ddd0 !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--secondary) !important;
  background: var(--bg-light) !important;
}
.accordion-button:not(.collapsed) {
  background: var(--primary) !important;
  color: #fff !important;
}
.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}
.accordion-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: #fff;
  padding: 20px;
}
.faq-container-scroll {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 10px;
}
.faq-container-scroll::-webkit-scrollbar {
  width: 6px;
}
.faq-container-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

/* Extended About Us Scrollable Container */
.about-extended-container {
  background-color: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e8ddd0;
  overflow: hidden;
}
.about-extended-scroll {
  max-height: 600px;
  overflow-y: auto;
  padding: 30px;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  .about-extended-scroll {
    padding: 50px;
  }
}
.about-extended-scroll::-webkit-scrollbar {
  width: 8px;
}
.about-extended-scroll::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}
.about-extended-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
  border: 2px solid var(--bg-light);
}
.about-extended-scroll h3 {
  font-family: "Playfair Display", serif;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
}
.about-extended-scroll h3:first-child {
  margin-top: 0;
}
.about-extended-scroll p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}
.about-extended-scroll ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.about-extended-scroll li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.about-extended-scroll li strong {
  color: var(--secondary);
}

/* Contact & Footer */
.contact-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  padding: 20px 0;
  text-align: center;
}

/* Floating Buttons */
.float-whatsapp,
.float-call {
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.float-whatsapp {
  background: #25d366;
  color: #fff;
  bottom: 22px;
  right: 22px;
  animation: pulse-wa 2s infinite;
}
.float-call {
  background: var(--primary);
  color: #fff;
  bottom: 22px;
  left: 22px;
  display: none;
  animation: pulse 2s infinite;
}
@media (max-width: 767px) {
  .float-call {
    display: flex;
  }
  .hero-btns {
    flex-direction: column !important;
    align-items: center;
    gap: 12px !important;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(181, 84, 27, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(181, 84, 27, 0);
  }
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Scroll Reveal */
.reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}
