:root {
  --primary: #1f4f5a;
  --secondary: #8bc34a;
  --accent: #cddc39;
  --dark: #0f2f36;
  --light: #f5f9f8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
}


/* ===== NAVBAR BASE ===== */
.super-navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  z-index: 999;
}

.logo {
  height: 128px;
}

/* ===== DESKTOP MENU ===== */
.navbar-nav {
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 8px 0;
  position: relative;
}

/* DESKTOP UNDERLINE */
.nav-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  border-radius: 10px;
  transition: 0.35s ease;
}

/* ACTIVE */
.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* BOOK BUTTON */
.nav-book-btn {
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
}

/* ===== CUSTOM TOGGLER ===== */
.custom-toggler {
  border: none;
  background: transparent;
}

.custom-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  margin: 6px 0;
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    margin-top: 16px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-link {
    font-size: 18px;
    padding: 14px;
    border-radius: 12px;
  }

  /* MOBILE ACTIVE */
  .nav-link.active {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: #fff !important;
  }

  .nav-indicator {
    display: none;
  }

  .nav-book-btn {
    width: 100%;
    margin-top: 15px;
  }
}


/* ===== HERO CAROUSEL ===== */
.hero-carousel-section {
  margin-top: 80px; /* navbar space */
}

.carousel-item {
  height: 90vh;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 54, 0.6);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 35%;
}

.carousel-caption h1 {
  font-size: 50px;
  font-weight: 700;
  animation: fadeUp 1s ease;
}

.carousel-caption p {
  font-size: 18px;
  margin: 15px 0 25px;
  animation: fadeUp 1.3s ease;
}

.hero-btn {
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  animation: fadeUp 1.6s ease;
}

/* ===== CUSTOM CONTROLS ===== */
.custom-control {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.custom-control i {
  font-size: 24px;
  color: #fff;
}

.custom-control:hover {
  background: var(--secondary);
}

/* INDICATORS */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

.carousel-indicators .active {
  background-color: var(--accent);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .carousel-item {
    height: 70vh;
  }

  .carousel-caption h1 {
    font-size: 30px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .custom-control {
    width: 45px;
    height: 45px;
  }
}


/* ===== ABOUT SECTION ===== */
.home-about-section {
  padding: 100px 0;
  background: var(--light);
}

.section-tag {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title span {
  color: var(--secondary);
}

.section-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.feature-box i {
  font-size: 26px;
  color: var(--secondary);
}

.feature-box h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

/* IMAGE */
.about-image-wrapper {
  position: relative;
  padding: 15px;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.about-image-wrapper img {
  border-radius: 22px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .home-about-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .feature-box {
    padding: 15px;
  }
}


/* ===== SUPER ROOMS ===== */
.super-rooms {
  background: linear-gradient(180deg, #ffffff, #f4faf8);
}

/* CARD */
.room-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.45s ease;
}

.room-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* IMAGE */
.room-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

/* BADGE */
.room-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* CONTENT */
.room-content {
  padding: 24px;
}

.room-content h5 {
  font-weight: 600;
  margin-bottom: 14px;
}

/* ICONS */
.room-icons {
  display: flex;
  gap: 14px;
  font-size: 14px;
  margin-bottom: 16px;
}

.room-icons i {
  color: var(--secondary);
}

/* PRICE */
.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.price small {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .room-card img {
    height: 180px;
  }
}


:root {
  --secondary: #8bc34a;
  --accent: #cddc39;
}

/* VIEW COUNTER */
.view-counter {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: #fff;

  padding: 12px 18px;
  border-radius: 40px;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  animation: slideUp 1s ease;
}

.view-counter i {
  font-size: 20px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .view-counter {
    right: 12px;
    bottom: 90px;
    padding: 10px 14px;
    font-size: 14px;
  }
}


/* ===== AMENITIES SECTION ===== */
.home-amenities-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f4faf8, #ffffff);
}

.amenity-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  height: 100%;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.amenity-card i {
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 18px;
}

.amenity-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home-amenities-section {
    padding: 70px 0;
  }
}


/* ===== PARALLAX SPLIT SECTION ===== */
.parallax-split-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND */
.parallax-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      to right,
      rgba(15,47,54,0.9) 45%,
      rgba(15,47,54,0.4) 70%,
      rgba(15,47,54,0.1)
    ),
    url('./img/home-about.jpg') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* CONTENT */
.parallax-text {
  position: relative;
  z-index: 2;
  color: #fff;
}

.parallax-tag {
  display: inline-block;
  background: rgba(139,195,74,0.2);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 500;
}

.parallax-text h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
}

.parallax-text h2 span {
  color: var(--accent);
}

.parallax-text p {
  font-size: 17px;
  color: #e0f2f1;
  margin-bottom: 22px;
}

/* POINTS */
.parallax-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.parallax-points li {
  font-size: 15px;
  margin-bottom: 10px;
}

.parallax-points i {
  color: var(--secondary);
  margin-right: 8px;
}

/* CTA */
.parallax-cta {
  display: inline-block;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {

  .parallax-bg {
    background-attachment: scroll;
    background:
      linear-gradient(
        rgba(15,47,54,0.85),
        rgba(15,47,54,0.85)
      ),
      url('./img/home-about.jpg') center/cover no-repeat;
  }

  .parallax-text h2 {
    font-size: 32px;
  }

  .parallax-split-section {
    padding: 90px 0;
  }
}


/* ===== SPLIT INFO SECTION ===== */
.split-info-section {
  padding: 100px 0;
  background: #ffffff;
}

/* IMAGE */
.split-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.split-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.split-points {
  margin: 25px 0 35px;
}

.split-points .point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.split-points i {
  color: var(--secondary);
  font-size: 18px;
}

/* BUTTON */
.split-btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.split-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .split-info-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }
}


/* ===== GALLERY SECTION ===== */
.home-gallery-section {
  padding: 100px 0;
  background: #f8fbfa;
}

/* GALLERY ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}


:root {
  --primary: #1f4f5a;
  --secondary: #8bc34a;
  --accent: #cddc39;
}

/* SECTION */
.home-gallery-section {
  padding: 100px 0;
  background: #f8fbfa;
}

/* TITLES */
.section-tag {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: var(--secondary);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
}

.section-title span {
  color: var(--secondary);
}

.section-subtitle {
  color: #666;
  margin-top: 8px;
}

/* GALLERY */
.gallery-item {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }

  .section-title {
    font-size: 30px;
  }
}

/* SECTION */
.ts-wrapper {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.ts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* TITLE */
.ts-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #6aa84f;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.ts-title {
  font-size: 36px;
  font-weight: 700;
}

.ts-title span {
  color: #6aa84f;
}

.ts-subtitle {
  font-size: 14px;
  color: #666;
}

/* CONTROLS */
.ts-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  margin-left: 8px;
}

.ts-controls i {
  font-size: 18px;
}

.ts-controls button:hover {
  background: #6aa84f;
  color: #fff;
}

/* SLIDER */
.ts-slider {
  overflow: hidden;
}

.ts-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.ts-card {
  min-width: calc(33.333% - 14px);
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.ts-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* USER */
.ts-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ts-user i {
  font-size: 26px;
  color: #6aa84f;
}

/* TABLET */
@media (max-width: 992px) {
  .ts-card {
    min-width: calc(50% - 10px);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .ts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .ts-controls {
    align-self: flex-end;
  }

  .ts-card {
    min-width: 100%;
  }
}
/* ============================= */
/* SUPER TESTIMONIAL CARD DESIGN */
/* ============================= */

.ts-card {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fdfb 100%
  );
  padding: 34px 30px;
  border-radius: 26px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    0 25px 60px rgba(0, 0, 0, 0.08);

  transition: all 0.45s ease;
  overflow: hidden;
}

/* TOP ACCENT LINE */
.ts-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #6aa84f,
    #9ad36a
  );
}

/* FLOATING QUOTE ICON */
.ts-card::after {
  content: "❝";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 60px;
  color: rgba(106, 168, 79, 0.15);
  font-family: serif;
}

/* HOVER EFFECT */
.ts-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.1),
    0 35px 80px rgba(0, 0, 0, 0.12);
}

/* TEXT */
.ts-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

/* USER */
.ts-user {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* USER ICON */
.ts-user i {
  font-size: 34px;
  color: #6aa84f;
 
  padding: 8px;
  
}

/* USER NAME */
.ts-user span {
  font-weight: 600;
  font-size: 15px;
  color: #1f3d2b;
}



/* ============================= */
/* MOBILE TUNING */
/* ============================= */
@media (max-width: 576px) {
  .ts-card {
    padding: 30px 24px;
  }

  .ts-card::after {
    font-size: 46px;
  }

  .ts-card p {
    font-size: 15px;
  }
}



/* ================= FOOTER ================= */
.site-footer {
  background: #0f2f36;
  color: #cfd8dc;
  padding: 80px 0 30px;
  font-size: 14px;
}

/* LOGO */
.footer-logo {
  max-width: 110px;
  margin-bottom: 18px;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 4px;
}

/* TITLES */
.footer-title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ABOUT */
.footer-brand p {
  line-height: 1.8;
  color: #b0bec5;
}

/* LINKS */
.footer-links,
.footer-list,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b0bec5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #8bc34a;
}

/* LIST */
.footer-list li {
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-list i {
  color: #8bc34a;
}

/* CONTACT */
.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: #8bc34a;
  margin-top: 4px;
}

.footer-contact a {
  color: #b0bec5;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #8bc34a;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* DESIGN CREDIT */
.design-credit a {
  color: #8bc34a;
  text-decoration: none;
  font-weight: 600;
}

.design-credit a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}


/* ================= WHATSAPP FLOAT LEFT ================= */
.whatsapp-float-left {
  position: fixed;
  left: 20px;
  bottom: 90px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: #fff;

  padding: 12px 16px;
  border-radius: 40px;

  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* ICON */
.whatsapp-float-left i {
  font-size: 22px;
}

/* HOVER EFFECT */
.whatsapp-float-left:hover {
  transform: translateY(-4px);
  background: #1ebe5d;
}

/* TEXT ANIMATION */
.wa-text {
  white-space: nowrap;
}

/* MOBILE VIEW – ICON ONLY */
@media (max-width: 576px) {
  .whatsapp-float-left {

   
  }

  .wa-text {
    display: none;
  }

  .whatsapp-float-left i {
    font-size: 24px;
  }
}


/* ===== ABOUT PARALLAX HEADER ===== */
.about-parallax-header {
  position: relative;
  height: 65vh;
  background-image: url("./img/home-about.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 47, 54, 0.75),
    rgba(15, 47, 54, 0.75)
  );
}

/* CONTENT */
.about-header-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.about-header-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-header-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* BREADCRUMB */
.about-parallax-header .breadcrumb {
  background: transparent;
}

.about-parallax-header .breadcrumb a {
  color: #8bc34a;
  text-decoration: none;
  font-weight: 500;
}

.about-parallax-header .breadcrumb .active {
  color: #ffffff;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .about-parallax-header {
    height: auto;
    padding: 100px 0;
    background-attachment: scroll; /* IMPORTANT */
  }

  .about-header-content h1 {
    font-size: 34px;
  }

  .about-header-content p {
    font-size: 16px;
  }
}


/* ===== ABOUT CONTENT SECTION ===== */
.about-content-section {
  padding: 100px 0;
  background: #ffffff;
}

/* IMAGE */
.about-image-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image-box img {
  width: 100%;

  transition: transform 0.6s ease;
}

.about-image-box {
  max-width: 520px;      /* 👈 reduce image size */
  margin: 0 auto;        /* center image */
}


.about-image-box:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.about-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #8bc34a;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-title span {
  color: #8bc34a;
}

.about-text {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
}

/* FEATURES */
.about-features {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-item i {
  font-size: 20px;
  color: #8bc34a;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-content-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 30px;
  }
}



/* ===== MISSION VISION VALUES ===== */
.mvv-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbfa, #ffffff);
}

/* HEADER */
.mvv-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #8bc34a;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.mvv-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mvv-title span {
  color: #8bc34a;
}

.mvv-subtitle {
  font-size: 15px;
  color: #666;
}

/* CARD */
.mvv-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;
  height: 100%;

  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.mvv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* ICON */
.mvv-icon {
  width: 80px;
  height: 80px;
  background: rgba(139,195,74,0.15);
  border-radius: 50%;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-icon i {
  font-size: 34px;
  color: #8bc34a;
}

/* TEXT */
.mvv-card h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.mvv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .mvv-section {
    padding: 70px 0;
  }

  .mvv-title {
    font-size: 30px;
  }
}


/* ===== ROOM TARIFF ===== */
.room-tariff-section {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.tariff-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #8bc34a;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.tariff-title {
  font-size: 38px;
  font-weight: 700;
}

.tariff-title span {
  color: #8bc34a;
}

.tariff-subtitle {
  font-size: 14px;
  color: #666;
}

/* TARIFF BOX */
.tariff-box {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* ROW */
.tariff-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid #f0f0f0;
}

.tariff-row:last-child {
  border-bottom: none;
}

/* ROOM NAME */
.room-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* PRICE */
.room-price {
  font-size: 18px;
  font-weight: 700;
  color: #8bc34a;
}

/* HOVER EFFECT */
.tariff-row:hover {
  background: #f8fbfa;
}

/* MOBILE */
@media (max-width: 576px) {
  .tariff-title {
    font-size: 30px;
  }

  .tariff-row {
    padding: 16px 18px;
  }

  .room-name {
    font-size: 15px;
  }
}

/* ===== ROOM FACILITIES ===== */
.room-facilities-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbfa, #ffffff);
}

/* HEADER */
.facilities-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #8bc34a;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.facilities-title {
  font-size: 38px;
  font-weight: 700;
}

.facilities-title span {
  color: #8bc34a;
}

.facilities-subtitle {
  font-size: 14px;
  color: #666;
}

/* CARD */
.facility-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 22px;
  text-align: center;
  height: 100%;

  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

/* ICON */
.facility-card i {
  font-size: 34px;
  color: #8bc34a;
  margin-bottom: 12px;
}

/* TEXT */
.facility-card h6 {
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .facilities-title {
    font-size: 30px;
  }

  .facility-card {
    padding: 24px 14px;
  }

  .facility-card i {
    font-size: 30px;
  }
}


/* ===== BOOK YOUR STAY CTA ===== */
.book-stay-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/book-bg.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* OVERLAY */
.book-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 54, 0.8);
}

/* CONTENT */
.book-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  color: #ffffff;
}

.book-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.book-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* BUTTONS */
.book-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-whatsapp,
.btn-call {
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

/* WHATSAPP */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* CALL */
.btn-call {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-call:hover {
  background: #ffffff;
  color: #0f2f36;
  transform: translateY(-3px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .book-stay-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .book-content h2 {
    font-size: 32px;
  }

  .book-content p {
    font-size: 15px;
  }
}

/* ===== ROOMS GALLERY ===== */
.rooms-gallery-section {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.gallery-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #8bc34a;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 38px;
  font-weight: 700;
}

.gallery-title span {
  color: #8bc34a;
}

.gallery-subtitle {
  font-size: 14px;
  color: #666;
}

/* ITEM */
.room-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.room-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.room-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0),
    rgba(0,0,0,0.55)
  );
}

/* TAG */
.room-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;

  background: rgba(0,0,0,0.6);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 30px;
  }

  .room-gallery-item img {
    height: 220px;
  }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbfa, #ffffff);
}

/* HEADER */
.contact-badge {
  display: inline-block;
  background: rgba(139,195,74,0.15);
  color: #8bc34a;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
}

.contact-title {
  font-size: 38px;
  font-weight: 700;
}

.contact-title span {
  color: #8bc34a;
}

.contact-subtitle {
  font-size: 14px;
  color: #666;
}

/* INFO CARD */
.contact-info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.contact-info-card h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* CONTACT ITEM */
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  font-size: 22px;
  color: #8bc34a;
}

.contact-item span {
  font-size: 13px;
  color: #888;
}

.contact-item a {
  display: block;
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* GOOGLE BTN */
.google-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 40px;
  border: 2px solid #ddd;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.google-profile-btn img {
  width: 22px;
}

/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.contact-form-card h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-form-card .form-control {
  border-radius: 12px;
  padding: 12px;
}

/* SUBMIT BTN */
.contact-submit-btn {
  background: #8bc34a;
  color: #ffffff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

.contact-submit-btn:hover {
  background: #7cb342;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 26px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 30px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px;
  }
}
