/* RESET */
body, html {
  margin: 0;
  padding: 0;
 font-family: 'Segoe UI', 'Frank Ruhl Libre', serif;
  font-weight: 400;
}
p{
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;

}
section {
  scroll-margin-top: 80px;
}
/* HEADER */
.custom-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

/* LOGO */
.logo img {
  height: 55px;
}

/* CALL BUTTON */
.call-btn {
  background: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
}

/* HERO */
.hero {
  height: 100vh;

  /* ⚠️ IMPORTANT: Correct path */
  background: url('/images/1-11.png') center center/cover no-repeat;

  position: relative;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}

/* TEXT CENTER */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  font-family: 'Frank Ruhl Libre';
  font-weight: 400;
  letter-spacing: 2px;
}
/* FLOATING MENU (initial) */
.floating-menu {
  position: relative;
  margin-top: -60px; /* 👈 hero ke upar overlap */
  z-index: 20;
}

.menu-inner {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px; 
}

.menu-inner a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Frank Ruhl Libre', serif;
}

/* STICKY STATE */
.floating-menu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.floating-menu.sticky .menu-inner {
  border-radius: 0;
  max-width: 1400px;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-inner {
    overflow-x: auto;
    white-space: nowrap;
  }

  .menu-inner a {
    flex: 0 0 auto;
  }
}
/* SECTION */
.overview-section {
  background: #f5f5f5;
}

/* TITLE */
.overview-title {
  font-size: 42px;
  font-family: 'Frank Ruhl Libre', serif;
  color: #2c3e50;
  font-weight: 400;
}

/* IMAGE */
.overview-img {
  border-radius: 4px;
  width: 100%;
}

/* TEXT */
.overview-text {
  font-size: 15px;
  line-height: 30px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #6c757d;
  font-weight: 400;
}

/* LIST */
.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /*border-left: 1px solid #ddd;*/
  /*padding-left: 20px;*/
}

.overview-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.overview-list strong {
  color: #000;
}

.overview-list span {
  color: #6c757d;
}
/* ICON */
.amenity-icon {
  font-size: 40px;
  color: #d9534f; /* red tone */
  margin-bottom: 15px;
}

/* TEXT */
.amenity-item h5 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 30px;
  color: #2c3e50;
}

/* SPACING */
.amenity-item {
  padding: 20px 10px;
  transition: 0.3s;
}
.amenity-icon{
    font-weight: 900;
}

/* HOVER EFFECT (optional premium) */
.amenity-item:hover {
  transform: translateY(-5px);
}
/* MAP BOX */
.map-box iframe {
  border-radius: 4px;
}

/* CARD */
.location-card {
  background: #fff;
  border-radius: 6px;
}

/* HEADINGS */
.location-card h5 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  color: #2c3e50;
  letter-spacing: 1px;
  font-size: 24px;
  text-align: center;
}

/* TEXT */
.location-card p {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}
.location-card p strong{
    font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  font-family: 'Frank Ruhl Libre', serif;
}
.location-card p span{
    font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* TAB STYLE */
.layout-tabs .nav-link {
  border: none;
  background: none;
  font-weight: 400;
  color: #2c3e50;
  letter-spacing: 1px;
  padding: 10px 20px;
}

/* ACTIVE TAB */
.layout-tabs .nav-link.active {
  color: #b89b72; /* gold tone */
}

/* IMAGE */
.layout-img {
  border-radius: 4px;
  transition: 0.3s;
  height: 300px;
}

.layout-img:hover {
  transform: scale(1.03);
}
.layout-img {
  cursor: zoom-in;
  cursor: pointer;
}
/* MOBILE TAB FIX (your requirement 🔥) */
@media (max-width: 768px) {
  .layout-tabs {
    flex-direction: row;
    align-items: center;
  }

  .layout-tabs .nav-link {
    padding: 8px 0;
    margin: 0 10px;
  }
}
/* IMAGE */
.gallery-img {
  width: 100%;
  border-radius: 4px;
  transition: 0.3s;
}

/* HOVER */
.gallery-img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX FIX (no crop) */
.glightbox-container img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.gallery-img {
  position: relative;
}

.gallery-img:hover {
  filter: brightness(0.8);
}
@media (min-width: 992px) {
  .custom-5 {
    width: 20%;
  }
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px; 
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* INPUT */
.custom-input {
  padding: 15px;
  background: #e9ecef;
  border: none;
  border-radius: 6px;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: #d64541;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border: none;
}
.submit-btn:hover {
  background: #c0392b;
  transition: 0.3s;
  color: #fff;
}

/* BROCHURE BUTTON */
.brochure-btn {
  border: 1px solid #d64541;
  padding: 15px 30px;
  border-radius: 50px;
  color: #000;
  font-weight: 600;
}
.brochure-btn:hover {
  background: #d64541;
  color: #fff;
  transition: 0.3s;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .submit-btn {
    width: 100%;
  }

  .brochure-btn {
    width: 100%;
    display: block;
  }
}
.text-contact{
   color: #bda588;
   font-size: 20px;
    font-family: 'Frank Ruhl Libre', serif;
}
/* FOOTER */
.footer {
  background: #f4f1eb;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

/* LINKS */
.footer-link {
  margin-left: 15px;
  text-decoration: none;
  color: #2c3e50;
  transition: 0.3s;
}

.footer-link:hover {
  color: #d64541;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-link {
    display: inline-block;
    margin: 5px 10px;
  }
}
/* ================= DESKTOP BUTTON ================= */
.fixed-enquiry-desktop {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #dd2d19;
  color: #fff;
  padding: 15px 10px;
  font-weight: 400;
  z-index: 9999;
  letter-spacing: 2px;
  border-radius: 6px 0 0 6px;
  text-decoration: none;
  font-family: 'Frank Ruhl Libre', serif;
}

/* ================= MOBILE BAR ================= */
.fixed-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 999;
}

.fixed-mobile-bar a {
  width: 50%;
  text-align: center;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.enquire-btn {
  background: #3a2b97; 
}

.call-btn-fixed {
  background: #dd2d19; 
}
/* SECTION */
.contact-banner{
  height: 400px;
  background: url('/images/Untitled-design-2.jpg') center center/cover no-repeat;
}
.contact-page {
  background: #f4f1eb;
  min-height: 100vh;
}

/* TITLE */
.contact-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 42px;
  color: #2c3e50;
}

/* INFO BOX */
.contact-info {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* FORM BOX */
.contact-form {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* INPUT */
.custom-input {
  padding: 14px;
  border: none;
  background: #f1f1f1;
  border-radius: 5px;
}

/* BUTTON */
.submit-btn {
  background: #dd2d19;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border: none;
}

/* LINKS */
.contact-info a {
  color: #dd2d19;
  text-decoration: none;
}
.privacy-banner{
  height: 400px;
  background: url('/images/Untitled-design-2.jpg') center center/cover no-repeat;
}
.term-banner{
  height: 400px;
  background: url('/images/Untitled-design-2.jpg') center center/cover no-repeat;
}
 
@media (min-width: 768px) {
   
  .fixed-mobile-bar {
    display: none;
  }
}

/* Mobile → show bottom bar, hide side button */
@media (max-width: 767px) {
  .fixed-enquiry-desktop {
    display: none;
  }

  .fixed-mobile-bar {
    display: flex;
  }
  .amenity-item h5{
    font-size: 20px;
  }
  .contact-banner{
    height: 200px;
  }
  .privacy-banner{
    height: 200px;
  }
  .term-banner{
    height: 200px;
  }
  body {
    padding-bottom: 53px; 
  } 
}

/* PAGE */
.privacy-page { 
  min-height: 100vh;
}

/* TITLE */
.privacy-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 42px;
  color: #2c3e50;
  text-align: start;
}
 
 

/* HEADINGS */
.privacy-content h4 {
  margin-top: 20px;
  color: #2c3e50; 
}
 .privacy-content p {
  font-size: 15px;
  line-height: 30px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #6c757d;
  font-weight: 400; 
 }
.privacy-content ul {
  padding-left: 20px;
  font-size: 15px;
  line-height: 30px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #6c757d;
  font-weight: 400; 
  list-style: none;
}
.provacy-content li {
  margin-bottom: 10px; 
}
.privacy-content li::before {
  content: "\2013";
  color: #6c757d; 
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* MOBILE */
@media (max-width: 768px) {
  .privacy-content {
    padding: 20px;
  }

  .privacy-title {
    font-size: 30px;
  }
}
/* PAGE */
.thankyou-page {
  min-height: 100vh;
  background: #f4f1eb;
}
 

/* ICON */
.thankyou-icon {
  font-size: 60px;
  color: #28a745;
}

/* TITLE */
.thankyou-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 42px;
  color: #2c3e50;
}

/* TEXT */
.thankyou-text {
  font-size: 16px;
  color: #6c757d;
}

/* BUTTONS */
.btn-home {
  background: #2c3e50;
  color: #fff;
  padding: 12px 25px;
}

.btn-call {
  background: #dd2d19;
  color: #fff;
  padding: 12px 25px;
}
.btn-home:hover{
  background: #2c3e50;
  color: #fff;
  padding: 12px 25px;
}

.btn-call:hover {
  background: #dd2d19;
  color: #fff;
  padding: 12px 25px;
}
/* MOBILE */
@media (max-width: 768px) {
  .thankyou-box {
    padding: 25px;
  }

  .thankyou-title {
    font-size: 30px;
  }
  .header-inner{
      padding: 15px 7px;
  }
}
/* MODAL BOX */
.custom-modal-box {
  border-radius: 6px;
  background: #fff;
  position: relative;
}

/* CLOSE BUTTON */
.custom-close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

/* INPUT */
.custom-input-box {
  width: 100%;
  padding: 14px;
  background: #eee;
  border: none;
  border-radius: 5px;
}

/* BUTTON */
.custom-submit-btn {
  width: 100%;
  background: #d64541;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: 600;
  border-radius: 4px;
}

/* LABEL */
.custom-field label {
  margin-bottom: 5px;
  display: block;
}

/* OPEN BUTTON */
.custom-open-btn {
  background: #d64541;
  color: #fff;
  padding: 10px 20px;
  border: none;
}