@charset "UTF-8";

:root {
  --default-font: "Noto Sans Thai", sans-serif;
  --heading-font: "Noto Sans Thai", sans-serif;
  --nav-font: "Noto Sans Thai", sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #40524d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0d1f1a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #DAA520; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #40524d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2f5d50; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f6f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #DAA520;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2e2b28;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #160602;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px; /*36*/
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu - ART DE SEA Luxury Style
--------------------------------------------------------------*/

/* Navmenu - Desktop (หน้าจอคอมพิวเตอร์) */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px; /* ระยะห่างระหว่างไอคอนกับข้อความ */
    white-space: nowrap;
    transition: 0.3s;
  }

  /* จัดการไอคอนเมนูหลัก */
  .navmenu a i:not(.toggle-dropdown) {
    font-size: 16px;
    width: 20px;
    text-align: center;
  }

  /* ลูกศร Dropdown */
  .navmenu a .toggle-dropdown {
    font-size: 12px;
    margin-left: 5px;
  }

  .navmenu li:hover > a,
  .navmenu .active {
    color: var(--nav-hover-color);
  }

  /* Dropdown Styling (Desktop) */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown ul li {
    min-width: 180px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    justify-content: flex-start;
  }

  .navmenu .dropdown ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--nav-dropdown-hover-color);
  }

  /* เส้นคั่นแยกเมนูภาษา */
  .navmenu .lang-selector {
    border-left: 1px solid color-mix(in srgb, var(--nav-color), transparent 85%);
    margin-left: 10px !important;
    padding-left: 5px !important;
  }
}

/* Navmenu - Mobile (หน้าจอมือถือ) */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.3s;
    margin-right: 15px;
  }

  /* เมนูหลักในมือถือ */
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 70px 20px 30px 20px; /* เว้นที่ด้านบนให้ปุ่มปิด */
    padding: 15px 0;
    margin: 0;
    border-radius: 20px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    z-index: 9998;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.3);
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 25px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex !important; /* ไอคอนและข้อความอยู่บรรทัดเดียวกัน */
    align-items: center !important;
    gap: 15px;
    transition: 0.3s;
  }

  /* ไอคอนในมือถือ */
  .navmenu a i:not(.toggle-dropdown) {
    width: 25px;
    text-align: center;
    font-size: 18px;
    opacity: 0.8;
  }

  /* ลูกศร Dropdown ในมือถือ (อยู่ขวาสุด) */
  .navmenu a .toggle-dropdown {
    margin-left: auto;
    width: 32px;
    height: 32px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ปุ่มปิดเมนู (Close Button) เมื่อเปิดเมนูแล้ว */
  .mobile-nav-active .mobile-nav-toggle {
    color: #333 !important; /* สีไอคอนเข้มเพื่อให้ชัดบนปุ่มขาว */
    position: fixed;
    top: 15px;
    right: 20px; /* ย้ายมาทางขวา */
    z-index: 9999;
    background-color: #ffffff; /* พื้นหลังสีขาวสว่าง */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
    font-size: 26px;
    margin-right: 0;
  }

  /* สไตล์เมนูภาษาในมือถือ */
  .navmenu .dropdown.lang-selector > ul {
    background-color: rgba(0,0,0,0.03);
    margin: 8px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    display: none;
    position: static;
    box-shadow: none;
  }

  .navmenu .dropdown-active {
    display: block !important;
  }

  /* ฉากหลังเมื่อเปิดเมนู */
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); /* มืดลงเพื่อให้เมนูลอยเด่น */
    z-index: 9997;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* ส่วนกลาง: จัดการรูปธงชาติ */
.navmenu img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


/* สไตล์ธงชาติที่แสดงผลหน้าเมนูหลัก */
.current-lang-flag {
  width: 22px !important;
  height: 15px !important;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2); /* เพิ่มเงาให้ธงดูนูนสวย */
  border: 1px solid rgba(0,0,0,0.05);
  display: inline-block;
  vertical-align: middle;
}

/* ปรับระยะห่างสำหรับ Dropdown ภาษา */
.navmenu .lang-selector span {
  font-weight: 500;
  font-size: 14px;
}

/* ในหน้ามือถือ ให้ธงใหญ่ขึ้นเล็กน้อยเพื่อให้เห็นชัด */
@media (max-width: 1199px) {
  .current-lang-flag {
    width: 26px !important;
    height: 18px !important;
    margin-right: 12px !important;
  }
}



/*------------------ ส่วนจองห้องพัก booking --------------------*/
/* Booking Section Static Style */
      .booking-section-static {
        background: #231f20;
        /* สีดำเดิม */
        padding: 30px 0;
        position: relative;
        z-index: 10;
        /* ถ้าต้องการให้เกยขึ้นไปบนรูป Hero เล็กน้อยแบบเว็บโรงแรมหรู ให้ใส่ margin-top: -40px; */
      }
      .booking-label {
        color: #DAA520;
        /*#b59461;  สีทอง */
        margin-bottom: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        display: block;
        text-transform: none;
      }
      .booking-section-static .form-select,
      .booking-section-static .form-control {
        background: #ffffff;
        border: 1px solid #e0d5c0;
        height: 50px;
        border-radius: 4px;
      }
      .btn-book-static {
        background: #DAA520;
        color: white;
        text-transform: none;
        font-weight: 700;
        letter-spacing: 1px;
        transition: 0.3s;
        border: none;
        width: 100%;
        height: 50px;
      }
      .btn-book-static:hover {
        background: #725002;
        color: white;
      }
      /* --- Responsive สำหรับ iPad และมือถือ --- */
      /* iPad (Tablet) ทั้งแนวตั้งและแนวนอน */
      @media (max-width: 991.98px) {
        .booking-section-static {
          padding: 25px 0;
        }
        /* บน iPad จะแบ่งเป็น 2 คอลัมน์เพื่อให้ดูไม่ยาวเกินไป */
        .col-md-6 {
          margin-bottom: 10px;
        }
      }
      /* มือถือ (Mobile) */
      @media (max-width: 575.98px) {
        .booking-section-static {
          padding: 20px 10px;
        }
        .booking-label {
          font-size: 0.8rem;
        }
        /* ให้เช็คอิน/เช็คเอาท์ อยู่บรรทัดเดียวกันเพื่อประหยัดพื้นที่ */
        .col-6 {
          margin-bottom: 10px;
        }
      }


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer Settings (Art De Sea Style)
--------------------------------------------------------------*/
:root {
  /* Colors */
  --f-bg-main: #111111;
  --f-bg-card: #1a1a1a;
  --f-gold: #d4af37;
  --f-text-white: #ffffff;
  --f-text-body: #cccccc;
  --f-border: rgba(255, 255, 255, 0.08);
  
  /* Spacing */
  --f-padding-top: 80px;
  --f-transition: all 0.3s ease;
}

/* 1. Main Layout */
.main-footer {
  background-color: var(--f-bg-main);
  color: var(--f-text-body);
  padding-top: var(--f-padding-top);
  padding-bottom: 30px;
  font-family: "Prompt", "Noto Sans Thai", sans-serif;
}

.section-padding {
  padding: 60px 0;
}

/* 2. Logo & About */
.f-logo {
  max-height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.f-about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--f-text-body);
  font-weight: 300;
}

/* 3. Typography & Titles */
.f-title {
  color: var(--f-text-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: none;
}

/* 4. Navigation Links */
.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-links li {
  margin-bottom: 12px;
}

.f-links a {
  color: var(--f-text-body);
  text-decoration: none;
  transition: var(--f-transition);
}

.f-links a:hover {
  color: var(--f-gold);
  padding-left: 8px;
}

/* 5. Contact Info */
.f-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.f-contact-item i {
  color: var(--f-gold);
  font-size: 1.2rem;
}

.f-contact-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* 6. Line Inquiry Card */
.line-card {
  background: var(--f-bg-card);
  border-radius: 12px;
  border: 1px solid var(--f-border);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.line-card-header {
  background: #06c755; /* Official Line Green */
  color: #fff;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.line-card-body {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.f-qr {
  width: 85px;
  height: 85px;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}

.line-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--f-text-white);
  margin-bottom: 5px;
}

.btn-chat-sm {
  font-size: 0.8rem;
  color: var(--f-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--f-transition);
}

.btn-chat-sm:hover {
  opacity: 0.8;
}

/* 7. Social Media Icons */
.f-social {
  margin-top: 25px;
}

.s-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--f-text-white);
  margin-right: 12px;
  transition: var(--f-transition);
}

.s-link:hover {
  background: var(--f-gold);
  color: #000;
  transform: translateY(-5px);
}

/* 8. Footer Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  /*border-top: 1px solid var(--f-border);*/
}

.copyright-text {
  color: #777;
  font-size: 0.85rem;
}

.bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.bottom-links a {
  color: #777;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--f-transition);
}

.bottom-links a:hover {
  color: var(--f-text-body);
}

/* 9. Responsive Adjustments */
@media (max-width: 991px) {
  .main-footer {
    padding-top: 50px;
    text-align: center;
  }

  .f-title {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .f-contact-item {
    justify-content: center;
  }

  .line-card-body {
    justify-content: center;
  }

  .bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  .f-links a:hover {
    padding-left: 0; /* ยกเลิกการดันไปข้างหน้าเมื่ออยู่ตรงกลาง */
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility:hidden; /* visible*/
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Floating Contact Menu Settings
--------------------------------------------------------------*/
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

/* ปุ่มหลัก */
.contact-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--f-gold, #d4af37);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.contact-toggle i {
  font-size: 24px;
}

.contact-label {
  position: absolute;
  right: 65px;
  background: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.contact-toggle:hover .contact-label {
  opacity: 1;
  visibility: visible;
}

/* เมนูย่อย */
.contact-menu-items {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* เมื่อคลิกเปิดเมนู */
.floating-contact.active .contact-menu-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact.active .contact-toggle {
  transform: rotate(90deg);
  background: #333;
}

/* สไตล์แต่ละปุ่ม */
.contact-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.contact-item i { font-size: 20px; }

.contact-item.phone { background: #007bff; }
.contact-item.line { background: #06c755; }
.contact-item.messenger { background: #0084ff; }

/* ป้ายชื่อปุ่มย่อย */
.item-label {
  position: absolute;
  right: 60px;
  background: #fff;
  color: #333;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
}

.contact-item:hover .item-label {
  opacity: 1;
  visibility: visible;
}

/* ปรับขนาดสำหรับมือถือ */
@media (max-width: 576px) {
  .contact-toggle { width: 50px; height: 50px; }
  .contact-item { width: 44px; height: 44px; }
  /* แสดง Label เสมอในมือถือถ้าต้องการ หรือซ่อนไว้ตามเดิม */
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: none;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hotel Hero Section
--------------------------------------------------------------
.hotel-hero {
  padding-top: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.hotel-hero .hero-content {
  position: relative;
  z-index: 2;
}

.hotel-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hotel-hero .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hotel-hero .hero-content h1 {
    font-size: 2.2rem;
  }
}

.hotel-hero .hero-content .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .hotel-hero .hero-content .lead {
    font-size: 1.1rem;
  }
}

.hotel-hero .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hotel-hero .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}

.hotel-hero .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--default-color);
}

.hotel-hero .hero-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hotel-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hotel-hero .hero-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hotel-hero .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hotel-hero .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hotel-hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hotel-hero .hero-buttons .btn.btn-outline:hover {
  transform: translateY(-2px);
}

.hotel-hero .hero-images {
  position: relative;
  z-index: 2;
}

.hotel-hero .hero-images .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hotel-hero .hero-images .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .hotel-hero .hero-images .main-image img {
    height: 400px;
  }
}

.hotel-hero .hero-images .main-image:hover img {
  transform: scale(1.05);
}

.hotel-hero .hero-images .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  max-width: 280px;
  z-index: 10;
}

@media (max-width: 992px) {
  .hotel-hero .hero-images .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    max-width: none;
  }
}

.hotel-hero .hero-images .floating-card .rating {
  margin-bottom: 0.5rem;
}

.hotel-hero .hero-images .floating-card .rating i {
  color: #ffc107;
  margin-right: 0.2rem;
}

.hotel-hero .hero-images .floating-card h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.hotel-hero .hero-images .floating-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--default-color);
}

.hotel-hero .hero-images .floating-card .guest-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hotel-hero .hero-images .floating-card .guest-info .guest-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.hotel-hero .hero-images .floating-card .guest-info span {
  font-weight: 500;
  color: var(--heading-color);
}

.hotel-hero .hero-stats {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hotel-hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hotel-hero .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}

.hotel-hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .hotel-hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .hotel-hero .row {
    min-height: auto;
  }

  .hotel-hero::before {
    display: none;
  }
} */

/*=================== Hotel Hero ==============================*/

.hotel-hero .hero-slider {
  width: 100%;
  height: 80vh; /* ปรับความสูงได้ตามต้องการ */
  position: relative;
}

.hotel-hero .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* เพิ่มแผ่นกรองแสงสีดำให้ข้อความอ่านง่ายขึ้น */
.hotel-hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hotel-hero .container {
  position: relative;
  z-index: 3;
  color: #fff;
}

.hotel-hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hotel-hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hotel-hero .btn-get-started {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--accent-color, #007bff); /* ใช้สีหลักของธีมคุณ */
  border: 2px solid var(--accent-color, #007bff);
  text-decoration: none;
}

.hotel-hero .btn-get-started:hover {
  background: transparent;
  color: #fff;
}

/* ปรับแต่งปุ่ม Swiper */
.hotel-hero .swiper-button-prev,
.hotel-hero .swiper-button-next {
  color: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

.hotel-hero .swiper-button-prev:hover,
.hotel-hero .swiper-button-next:hover {
  opacity: 1;
}

.hotel-hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.hotel-hero .swiper-pagination-bullet-active {
  opacity: 1;
}

/*=================== END Hotel Hero ==============================*/

/*--------------------------------------------------------------
# About Home Section
--------------------------------------------------------------*/
.about-home .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-home .about-content .lead {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-home .about-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-home .about-content .stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 576px) {
  .about-home .about-content .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.about-home .about-content .stats-row .stat-item {
  text-align: center;
}

.about-home .about-content .stats-row .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about-home .about-content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.about-home .about-content .about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about-home .about-content .about-actions {
    flex-direction: column;
  }
}

.about-home .about-content .about-actions .btn-primary,
.about-home .about-content .about-actions .btn-secondary {
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}



.about-home .about-content .about-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.about-home .about-content .about-actions .btn-primary:hover {
 /* background-color: color-mix(in srgb, var(--accent-color), black 15%);*/
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about-home .about-content .about-actions .btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.about-home .about-content .about-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about-home .about-images {
  position: relative;
  height: 500px;
}

.about-home .about-images .main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 70%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-home .about-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-home .about-images .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .experience-badge {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
}

.about-home .about-images .experience-badge .badge-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-home .about-images .experience-badge .badge-content .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-home .about-images .experience-badge .badge-content .badge-text {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-home .about-images {
    height: 400px;
    margin-top: 2rem;
  }

  .about-home .about-images .main-image {
    width: 80%;
    height: 65%;
  }

  .about-home .about-images .secondary-image {
    width: 65%;
    height: 45%;
  }

  .about-home .about-images .experience-badge {
    right: 5%;
  }

  .about-home .about-images .experience-badge .badge-content {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-number {
    font-size: 1.25rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-text {
    font-size: 0.6rem;
  }
}

@media (max-width: 992px) {
  .about-home .row {
    flex-direction: column-reverse;
  }

  .about-home .about-content {
    margin-top: 2rem;
    text-align: center;
  }

  .about-home .about-content .stats-row {
    justify-content: center;
  }
}

/* การปรับแต่งส่วน About Features (WiFi, Parking, Welcome Drink) */
.about-home .about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
}

.about-home .feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(var(--accent-color-rgb), 0.05); /* ใช้สี Accent อ่อนๆ เป็นพื้นหลัง */
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: 0.3s;
}

.about-home .feature-item:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

.about-home .feature-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.about-home .feature-item:hover i {
  color: #fff; /* เปลี่ยนสี Icon เป็นขาวเมื่อ Hover */
}

.about-home .feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ปรับตำแหน่งให้อยู่กึ่งกลางเมื่อแสดงบนมือถือ */
@media (max-width: 992px) {
  .about-home .about-features {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Rooms Showcase Section
--------------------------------------------------------------*/
.rooms-showcase .mt-6 {
  margin-top: 5rem;
}

.rooms-showcase .hero-room-showcase {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease;
  height: 100%;
}

.rooms-showcase .hero-room-showcase:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.rooms-showcase .hero-room-showcase .showcase-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.rooms-showcase .hero-room-showcase .showcase-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rooms-showcase .hero-room-showcase .showcase-image-container:hover img {
  transform: scale(1.03);
}

.rooms-showcase .hero-room-showcase .showcase-image-container .room-category-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rooms-showcase .hero-room-showcase .showcase-image-container .room-details-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.rooms-showcase .hero-room-showcase .showcase-image-container .room-details-overlay .room-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rooms-showcase .hero-room-showcase .showcase-image-container .room-details-overlay .room-specs .spec-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--heading-color);
}

.rooms-showcase .hero-room-showcase .showcase-image-container .room-details-overlay .room-specs .spec-item i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.rooms-showcase .hero-room-showcase .showcase-content {
  padding: 40px;
}

.rooms-showcase .hero-room-showcase .showcase-content .room-title-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rooms-showcase .hero-room-showcase .showcase-content .room-title-section h2 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}

.rooms-showcase .hero-room-showcase .showcase-content .room-title-section .room-rating {
  text-align: right;
  white-space: nowrap;
}

.rooms-showcase .hero-room-showcase .showcase-content .room-title-section .room-rating .stars {
  color: #ffc107;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.rooms-showcase .hero-room-showcase .showcase-content .room-title-section .room-rating .rating-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.75rem;
  font-weight: 500;
}

.rooms-showcase .hero-room-showcase .showcase-content .room-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.rooms-showcase .hero-room-showcase .showcase-content .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.rooms-showcase .hero-room-showcase .showcase-content .amenities-grid .amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.rooms-showcase .hero-room-showcase .showcase-content .amenities-grid .amenity-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.rooms-showcase .hero-room-showcase .showcase-content .amenities-grid .amenity-item span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.85rem;
  font-weight: 500;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section .price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section .price-display .currency {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 400;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section .price-display .amount {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 200;
  letter-spacing: -1px;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section .price-display .period {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-left: 8px;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section .primary-booking-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
}

.rooms-showcase .hero-room-showcase .showcase-content .booking-section .primary-booking-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.rooms-showcase .room-list-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.rooms-showcase .standard-room-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  transition: all 0.4s ease;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.rooms-showcase .standard-room-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.rooms-showcase .standard-room-card .card-image {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}

.rooms-showcase .standard-room-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-showcase .standard-room-card .card-image .view-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.rooms-showcase .standard-room-card .card-image:hover .view-link {
  opacity: 1;
}

.rooms-showcase .standard-room-card .card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rooms-showcase .standard-room-card .card-content h4 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
}

.rooms-showcase .standard-room-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.rooms-showcase .standard-room-card .card-content .features-list {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.rooms-showcase .standard-room-card .card-content .features-list span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rooms-showcase .standard-room-card .card-content .features-list span i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.rooms-showcase .standard-room-card .card-content .booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rooms-showcase .standard-room-card .card-content .booking-row .price {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
}

.rooms-showcase .standard-room-card .card-content .booking-row .price small {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.65rem;
  font-weight: 400;
}

.rooms-showcase .standard-room-card .card-content .booking-row .book-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.rooms-showcase .standard-room-card .card-content .booking-row .book-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.rooms-showcase .minimal-room-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.rooms-showcase .minimal-room-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.rooms-showcase .minimal-room-card .room-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.rooms-showcase .minimal-room-card .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 144, 231, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay .view-room {
  color: var(--contrast-color);
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay .view-room:hover {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.rooms-showcase .minimal-room-card .room-image:hover .hover-overlay {
  opacity: 1;
}

.rooms-showcase .minimal-room-card .room-image:hover img {
  transform: scale(1.04);
}

.rooms-showcase .minimal-room-card .room-summary {
  padding: 24px 20px;
  text-align: center;
}

.rooms-showcase .minimal-room-card .room-summary h5 {
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.rooms-showcase .minimal-room-card .room-summary .price-tag {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}

.rooms-showcase .minimal-room-card .room-summary .price-tag span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.7rem;
  font-weight: 400;
}

.rooms-showcase .minimal-room-card .room-summary .basic-amenities {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.rooms-showcase .minimal-room-card .room-summary .basic-amenities i {
  color: var(--accent-color);
  font-size: 1rem;
  opacity: 0.8;
}

.rooms-showcase .explore-all-link {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.rooms-showcase .explore-all-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  transform: translateX(4px);
}

.rooms-showcase .explore-all-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.rooms-showcase .explore-all-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .rooms-showcase .hero-room-showcase .showcase-content .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .rooms-showcase .standard-room-card {
    flex-direction: column;
  }

  .rooms-showcase .standard-room-card .card-image {
    width: 100%;
    height: 120px;
  }

  .rooms-showcase .hero-room-showcase .showcase-content .room-title-section {
    flex-direction: column;
    gap: 12px;
  }

  .rooms-showcase .hero-room-showcase .showcase-content .room-title-section .room-rating {
    text-align: left;
  }

  .rooms-showcase .hero-room-showcase .showcase-content .booking-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .rooms-showcase .mt-6 {
    margin-top: 3rem;
  }

  .rooms-showcase .hero-room-showcase .showcase-image-container {
    height: 280px;
  }

  .rooms-showcase .hero-room-showcase .showcase-image-container .room-details-overlay .room-specs {
    gap: 8px;
  }

  .rooms-showcase .hero-room-showcase .showcase-image-container .room-details-overlay .room-specs .spec-item {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .rooms-showcase .hero-room-showcase .showcase-content {
    padding: 24px;
  }

  .rooms-showcase .hero-room-showcase .showcase-content .room-title-section h2 {
    font-size: 1.4rem;
  }

  .rooms-showcase .hero-room-showcase .showcase-content .amenities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* สไตล์ปุ่มจองตอนปกติ (ก่อนเอาเมาส์วาง) */
.btn-booking-main {
    background-color: #DAA520 !important; /* สีทองหลัก */
    color: #ffffff !important;           /* ตัวอักษรสีขาว */
    border: none !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;           /* ทำให้การเปลี่ยนสีนุ่มนวล */
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.35); /* ใส่เงาสีทองจางๆ */
}

/* สไตล์ปุ่มตอนเอาเมาส์วาง (Hover) */
.btn-booking-main:hover {
    background-color: #b8860b !important; /* เปลี่ยนเป็นสีทองเข้มขึ้น */
    color: #ffffff !important;
    transform: translateY(-3px);          /* ตัวปุ่มลอยขึ้นเล็กน้อย */
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.5); /* เงาเข้มขึ้นและฟุ้งขึ้น */
}

/* ปรับสีไอคอนในปุ่ม */
.btn-booking-main i {
    font-size: 1.1rem;
}
/*--------------------------------------------------------------
# Amenities Cards Section
--------------------------------------------------------------*/
.amenities-cards .facility-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.4s ease;
  position: relative;
}

.amenities-cards .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.amenities-cards .facility-card:hover .facility-image .facility-overlay {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.amenities-cards .facility-card:hover .facility-image img {
  transform: scale(1.05);
}

.amenities-cards .facility-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.amenities-cards .facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.amenities-cards .facility-image .facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.amenities-cards .facility-image .facility-overlay i {
  font-size: 48px;
  color: var(--contrast-color);
}

.amenities-cards .facility-info {
  padding: 30px 25px;
}

.amenities-cards .facility-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities-cards .facility-info p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.amenities-cards .facility-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.amenities-cards .facility-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
}

.amenities-cards .facility-features span i {
  font-size: 14px;
}

@media (max-width: 992px) {
  .amenities-cards .facility-image {
    height: 200px;
  }

  .amenities-cards .facility-info {
    padding: 25px 20px;
  }

  .amenities-cards .facility-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .amenities-cards .facility-info p {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .amenities-cards .facility-image {
    height: 180px;
  }

  .amenities-cards .facility-image .facility-overlay i {
    font-size: 40px;
  }

  .amenities-cards .facility-info {
    padding: 22px 18px;
  }

  .amenities-cards .facility-info h4 {
    font-size: 18px;
  }

  .amenities-cards .facility-info p {
    font-size: 13px;
    line-height: 1.6;
  }

  .amenities-cards .facility-features {
    gap: 12px;
  }

  .amenities-cards .facility-features span {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  /* Responsive Styles */
}

.testimonials .testimonials-wrapper {
  padding: 20px 0;
}

.testimonials .testimonial-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-card:hover .quote-mark {
  color: var(--accent-color);
}

.testimonials .quote-mark {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 2.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: color 0.3s ease;
  opacity: 0.8;
}

.testimonials .quote-mark i {
  transform: scaleX(-1);
}

.testimonials .testimonial-content {
  margin-bottom: 25px;
  padding-top: 10px;
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-style: italic;
  margin-bottom: 0;
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-right: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonials .testimonial-author .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials .testimonial-author .author-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: block;
}

@media (max-width: 1199px) {
  .testimonials .testimonial-card {
    padding: 35px 25px 25px;
  }

  .testimonials .quote-mark {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-card {
    margin-bottom: 20px;
  }

  .testimonials .testimonial-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-card {
    padding: 30px 20px 20px;
  }

  .testimonials .quote-mark {
    font-size: 2rem;
    top: 15px;
    left: 20px;
  }

  .testimonials .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  .testimonials .testimonial-author .author-info h4 {
    font-size: 1rem;
  }

  .testimonials .testimonial-author .author-info span {
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-card {
    padding: 25px 18px 18px;
  }

  .testimonials .quote-mark {
    font-size: 1.8rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-author img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
}

/*--------------------------------------------------------------
# Offer Cards Section
--------------------------------------------------------------*/
.offer-cards .offer-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-cards .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.offer-cards .offer-card.featured {
  border: 2px solid var(--accent-color);
}

.offer-cards .offer-card.featured .offer-badge .discount {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
}

.offer-cards .offer-card.featured .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.offer-cards .offer-card.featured .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.offer-cards .offer-card .offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.offer-cards .offer-card .offer-badge .discount {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-cards .offer-card .offer-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.offer-cards .offer-card .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-cards .offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-cards .offer-card .offer-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-cards .offer-card .offer-content h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.offer-cards .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.offer-cards .offer-card .offer-content .offer-details {
  margin-bottom: 20px;
}

.offer-cards .offer-card .offer-content .offer-details .price-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.offer-cards .offer-card .offer-content .offer-details .price-info .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
}

.offer-cards .offer-card .offer-content .offer-details .price-info .offer-price {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
}

.offer-cards .offer-card .offer-content .offer-details .price-info .per-night {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
}

.offer-cards .offer-card .offer-content .offer-details .validity {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}

.offer-cards .offer-card .offer-content .offer-details .validity i {
  color: var(--accent-color);
}

.offer-cards .offer-card .offer-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.offer-cards .offer-card .offer-content .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .offer-cards .offer-card .offer-content {
    padding: 20px;
  }
}

.offer-cards .offer-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 30%) 100%);
  color: var(--contrast-color);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.offer-cards .offer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.offer-cards .offer-banner .banner-content {
  position: relative;
  z-index: 2;
}

.offer-cards .offer-banner .banner-content h2 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offer-cards .offer-banner .banner-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.offer-cards .offer-banner .banner-action {
  position: relative;
  z-index: 2;
  text-align: center;
}

.offer-cards .offer-banner .banner-action .countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.offer-cards .offer-banner .banner-action .countdown div {
  text-align: center;
}

.offer-cards .offer-banner .banner-action .countdown div span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
}

.offer-cards .offer-banner .banner-action .countdown div label {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.offer-cards .offer-banner .banner-action .btn-cta {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.offer-cards .offer-banner .banner-action .btn-cta:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .offer-cards .offer-banner {
    text-align: center;
  }

  .offer-cards .offer-banner .banner-action {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .offer-cards .offer-banner {
    padding: 30px 20px;
  }

  .offer-cards .offer-banner .banner-content h2 {
    font-size: 24px;
  }

  .offer-cards .offer-banner .banner-action .countdown {
    gap: 15px;
  }

  .offer-cards .offer-banner .banner-action .countdown div span {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action .container {
  position: relative;
  z-index: 1;
}

.call-to-action .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 2rem;
  }
}

.call-to-action .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.call-to-action .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.call-to-action .features-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}

.call-to-action .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.call-to-action .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.call-to-action .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.call-to-action .image-wrapper:hover img {
  transform: scale(1.05);
}

.call-to-action .image-wrapper .overlay-content {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.call-to-action .image-wrapper .special-offer {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .image-wrapper .special-offer .label {
  display: block;
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 0.9;
}

.call-to-action .image-wrapper .special-offer .discount {
  display: block;
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .call-to-action .image-wrapper {
    margin-top: 2rem;
  }

  .call-to-action .image-wrapper .overlay-content {
    top: 20px;
    right: 20px;
  }

  .call-to-action .image-wrapper .special-offer {
    padding: 12px 16px;
  }

  .call-to-action .image-wrapper .special-offer .label {
    font-size: 0.8rem;
  }

  .call-to-action .image-wrapper .special-offer .discount {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .call-to-action .content {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Events Cards Section
--------------------------------------------------------------*/
.events-cards .event-item {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.4s ease;
  height: 100%;
}

.events-cards .event-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 75%);
}

.events-cards .event-item .event-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.events-cards .event-item .event-header .event-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events-cards .event-item .event-header .event-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.events-cards .event-item .event-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events-cards .event-item .event-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, color-mix(in srgb, var(--default-color), transparent 80%));
  z-index: 1;
}

.events-cards .event-item .event-content {
  padding: 25px;
}

.events-cards .event-item .event-content h4 {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.events-cards .event-item .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.events-cards .event-item .event-content .event-features {
  margin-bottom: 25px;
}

.events-cards .event-item .event-content .event-features .feature-item {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  margin-bottom: 8px;
}

.events-cards .event-item .event-content .event-features .feature-item i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 12px;
}

.events-cards .event-item .event-content .event-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.events-cards .event-item .event-content .event-link i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.events-cards .event-item .event-content .event-link:hover {
  color: var(--heading-color);
}

.events-cards .event-item .event-content .event-link:hover i {
  transform: translateX(5px);
}

.events-cards .event-item:hover .event-header img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .events-cards .event-item .event-header {
    height: 180px;
  }

  .events-cards .event-item .event-header .event-icon {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
  }

  .events-cards .event-item .event-header .event-icon i {
    font-size: 18px;
  }

  .events-cards .event-item .event-content {
    padding: 20px;
  }

  .events-cards .event-item .event-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .events-cards .event-item .event-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .events-cards .event-item .event-content .event-features {
    margin-bottom: 20px;
  }

  .events-cards .event-item .event-content .event-features .feature-item {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .events-cards .event-item .event-content .event-link {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .events-cards .row>div:nth-child(n+5) {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# Location & Rooms Section Styles
--------------------------------------------------------------*/
.location-cards .room-item-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-cards .room-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-cards .room-img-box {
  height: 200px;
  overflow: hidden;
}

.location-cards .room-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-cards .room-details {
  padding: 20px;
}

.location-cards .room-details h5 {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.location-cards .room-details p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* Amenity Styling */
.location-cards .amenity-wrapper {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.location-cards .amenity-title {
  display: block;
  font-size: 0.7rem;
  color: #b59461;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}


.location-cards .amenity-list {
  display: grid;
  /* ค่าเริ่มต้นสำหรับ Desktop/Tablet ให้เป็น 3 คอลัมน์ */
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px 5px;
}

.location-cards .amenity-list span {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
}

.location-cards .amenity-list i {
  color: #b59461;
  margin-right: 6px;
  font-size: 0.8rem;
}

/* Sidebar Styling (Right Side) */
.location-cards .checkin-sidebar {
  background: #fff;
  border: 1px solid #e0d5c0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.location-cards .sidebar-header {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #f8f5f0;
  padding-bottom: 20px;
}

.location-cards .sidebar-header i {
  font-size: 2.5rem;
  color: #b59461;
}

.location-cards .sidebar-header h3 {
  font-weight: 700;
  margin-top: 10px;
}

.location-cards .sidebar-header p {
  font-size: 0.85rem;
  color: #64748b;
}

.location-cards .checkin-item {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #eee4d1;
}

.location-cards .checkin-item.no-border {
  border-bottom: none;
  margin-bottom: 0;
}

.location-cards .icon-box {
  width: 40px;
  height: 40px;
  background: #faf7f2;
  color: #b59461;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px solid #eee4d1;
  flex-shrink: 0;
}

.location-cards .text-box h6 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.location-cards .text-box span {
  font-size: 0.8rem;
  color: #64748b;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .location-cards .amenity-list {
    /*grid-template-columns: 1fr;*/
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/*--------------------------------------------------------------
# Gallery Showcase Section
--------------------------------------------------------------*/
.gallery-showcase .gallery-carousel {
  margin-bottom: 2rem;
}

.gallery-showcase .gallery-carousel .swiper-wrapper {
  height: auto !important;
}

.gallery-showcase .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-showcase .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-showcase .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-showcase .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery-showcase .gallery-item img {
    height: 200px;
  }
}

.gallery-showcase .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}

.gallery-showcase .btn-gallery {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .btn-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000000 10%), color-mix(in srgb, var(--accent-color), #000000 30%));
}

.gallery-showcase .btn-gallery i {
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  .gallery-showcase .btn-gallery {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-stack {
  position: relative;
}

.about .image-stack .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about .image-stack .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about .image-stack .main-image-wrapper .floating-card {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.about .image-stack .main-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.about .image-stack .main-image-wrapper .floating-card .card-icon i {
  color: #b8860b;
  font-size: 1.2rem;
}

.about .image-stack .main-image-wrapper .floating-card h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .image-stack .main-image-wrapper .floating-card p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .image-stack .secondary-image {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid var(--surface-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about .image-stack .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .content-wrapper {
  padding-left: 3rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.about .content-wrapper .badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .content-wrapper h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .content-wrapper h2 {
    font-size: 2.2rem;
  }
}

.about .content-wrapper .lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .milestone-timeline {
  margin: 3rem 0;
}

.about .milestone-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .milestone-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about .milestone-item .milestone-year {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

.about .milestone-item .milestone-content h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .milestone-item .milestone-content p {
  font-size: 0.95rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .action-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about .action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.about .action-buttons .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about .action-buttons .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about .action-buttons .btn-video {
  background: transparent;
  color: var(--accent-color);
  padding: 14px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about .action-buttons .btn-video:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-showcase {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.about .features-showcase .features-header h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about .features-showcase .features-header h3 {
    font-size: 2rem;
  }
}

.about .features-showcase .features-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about .feature-card {
  margin-bottom: 2rem;
}

.about .feature-card .feature-visual {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 1.5rem;
}

.about .feature-card .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .feature-card .feature-visual .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .feature-card .feature-visual .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .feature-card .feature-visual .feature-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.about .feature-card .feature-visual:hover .feature-overlay {
  opacity: 1;
}

.about .feature-card .feature-visual:hover img {
  transform: scale(1.05);
}

.about .feature-card .feature-details h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-card .feature-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .achievements-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 25px;
}

.about .achievements-section .achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .about .achievements-section .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .achievements-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about .achievements-section .achievement-stat {
  text-align: center;
}

.about .achievements-section .achievement-stat .stat-counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .achievements-section .achievement-stat .stat-description {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

@media (max-width: 992px) {
  .about .image-stack {
    margin-bottom: 2rem;
  }

  .about .image-stack .secondary-image {
    position: static;
    width: 100%;
    height: 200px;
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# Rooms 2 Section
--------------------------------------------------------------*/
.rooms-2 .room-filters {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.rooms-2 .room-filters .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.rooms-2 .room-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.rooms-2 .room-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.rooms-2 .rooms-grid .room-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
  height: 100%;
}

.rooms-2 .rooms-grid .room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.rooms-2 .rooms-grid .room-card .room-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.rooms-2 .rooms-grid .room-card .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rooms-2 .rooms-grid .room-card .room-image:hover img {
  transform: scale(1.05);
}

.rooms-2 .rooms-grid .room-card .room-image .room-features {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.ocean {
  background-color: #007bff;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.popular {
  background-color: #ff6b35;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.business {
  background-color: #6c757d;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.family {
  background-color: #28a745;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.garden {
  background-color: #20c997;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.romantic {
  background-color: #e91e63;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.premium {
  background-color: #ffc107;
  color: var(--default-color);
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.city {
  background-color: #17a2b8;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.luxury {
  background-color: #6f42c1;
}

.rooms-2 .rooms-grid .room-card .room-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rooms-2 .rooms-grid .room-card .room-content .room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.rooms-2 .rooms-grid .room-card .room-content .room-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-header .room-rating {
  display: flex;
  gap: 3px;
  font-size: 14px;
  color: #ffd700;
}

.rooms-2 .rooms-grid .room-card .room-content .room-description {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.rooms-2 .rooms-grid .room-card .room-content .room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.rooms-2 .rooms-grid .room-card .room-content .room-amenities span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--default-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-amenities span i {
  color: var(--accent-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price .price-from {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price .price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price .price-period {
  font-size: 14px;
  color: var(--default-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .btn-room-details {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .btn-room-details:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.rooms-2 .load-more-section {
  margin-top: 50px;
}

.rooms-2 .load-more-section .btn-load-more {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rooms-2 .load-more-section .btn-load-more i {
  font-size: 18px;
}

.rooms-2 .load-more-section .btn-load-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .rooms-2 .room-filters {
    padding: 20px;
  }

  .rooms-2 .rooms-grid .room-card .room-content {
    padding: 20px;
  }

  .rooms-2 .rooms-grid .room-card .room-content .room-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .rooms-2 .rooms-grid .room-card .room-content .room-footer .btn-room-details {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Room Details Section
--------------------------------------------------------------*/
.room-details .room-header-image {
  position: relative;
}

.room-details .room-header-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-details .room-header-image .room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.room-details .room-header-content {
  padding-left: 30px;
}

@media (max-width: 992px) {
  .room-details .room-header-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.room-details .room-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.room-details .room-rating .rating-score {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}

.room-details .room-rating .stars {
  color: #ffc107;
  font-size: 18px;
}

.room-details .room-rating .stars i {
  margin-right: 2px;
}

.room-details .room-rating .reviews-count {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.room-details .room-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .room-details .room-title {
    font-size: 2rem;
  }
}

.room-details .room-tagline {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.room-details .room-capacity {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.room-details .room-capacity .capacity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.room-details .room-capacity .capacity-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.room-details .room-price {
  margin-bottom: 25px;
}

.room-details .room-price .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.room-details .room-price .price-period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 8px;
}

.room-details .btn-book-now {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.room-details .btn-book-now:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.room-details .section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .room-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .room-details .room-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.room-details .room-gallery .gallery-main img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-details .room-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.room-details .room-gallery .gallery-thumbnails img {
  border-radius: 8px;
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform 0.3s;
}

.room-details .room-gallery .gallery-thumbnails img:hover {
  transform: scale(1.05);
}

.room-details .room-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-details .highlight-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
}

.room-details .highlight-box .highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.room-details .highlight-box .highlight-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.room-details .highlight-box h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .highlight-box .quote-author {
  margin-top: 15px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.room-details .room-amenities .amenity-category h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.room-details .room-amenities .amenity-category ul {
  list-style: none;
  padding: 0;
}

.room-details .room-amenities .amenity-category ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.room-details .room-amenities .amenity-category ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.room-details .room-tabs .nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.room-details .room-tabs .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--default-color);
  padding: 15px 30px;
  font-weight: 500;
  border-radius: 8px;
  margin-right: 10px;
}

.room-details .room-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.room-details .room-tabs .nav-tabs .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.room-details .room-tabs .tab-content-wrapper {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.room-details .room-tabs .tab-content-wrapper h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.room-details .room-tabs .tab-content-wrapper ul {
  list-style: none;
  padding: 0;
}

.room-details .room-tabs .tab-content-wrapper ul li {
  padding: 5px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.room-details .room-addons .addon-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.room-details .room-addons .addon-card:hover {
  transform: translateY(-5px);
}

.room-details .room-addons .addon-card .addon-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.room-details .room-addons .addon-card .addon-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.room-details .room-addons .addon-card h5 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .room-addons .addon-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.room-details .room-addons .addon-card .addon-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
}

.room-details .booking-cta .booking-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 40px;
  border-radius: 15px;
}

.room-details .booking-cta .booking-card h4 {
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.room-details .booking-cta .booking-card p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}

.room-details .booking-cta .booking-card .price-display {
  margin-bottom: 20px;
  text-align: right;
}

@media (max-width: 992px) {
  .room-details .booking-cta .booking-card .price-display {
    text-align: center;
    margin-top: 20px;
  }
}

.room-details .booking-cta .booking-card .price-display .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
}

.room-details .booking-cta .booking-card .price-display .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  display: block;
}

.room-details .booking-cta .booking-card .btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
}

.room-details .booking-cta .booking-card .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
}

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities .amenity-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amenities .amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.amenities .amenity-card .amenity-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.amenities .amenity-card .amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.amenities .amenity-card .amenity-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenities .amenity-card:hover .amenity-image img {
  transform: scale(1.05);
}

.amenities .amenity-card:hover .amenity-image::after {
  opacity: 1;
}

.amenities .amenity-card .amenity-content {
  padding: 30px;
}

.amenities .amenity-card .amenity-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities .amenity-card .amenity-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.amenities .amenity-card .amenity-content .amenity-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities .amenity-card .amenity-content .amenity-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--default-color);
}

.amenities .amenity-card .amenity-content .amenity-features li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.amenities .amenity-card .amenity-content .amenity-features li:last-child {
  margin-bottom: 0;
}

.amenities .amenities-grid {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities .amenities-grid h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.amenities .amenities-grid .service-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.amenities .amenities-grid .service-item:hover {
  transform: translateY(-3px);
}

.amenities .amenities-grid .service-item .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.amenities .amenities-grid .service-item .service-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.amenities .amenities-grid .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.amenities .amenities-grid .service-item:hover .service-icon::before {
  opacity: 1;
  transform: scale(1);
}

.amenities .amenities-grid .service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.amenities .amenities-grid .service-item p {
  color: var(--default-color);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .amenities .amenity-card .amenity-content {
    padding: 20px;
  }

  .amenities .amenity-card .amenity-content h3 {
    font-size: 20px;
  }

  .amenities .amenities-grid {
    padding: 30px 20px;
  }

  .amenities .amenities-grid h3 {
    font-size: 28px;
  }

  .amenities .amenities-grid .service-item {
    padding: 15px;
  }

  .amenities .amenities-grid .service-item .service-icon {
    width: 60px;
    height: 60px;
  }

  .amenities .amenities-grid .service-item .service-icon i {
    font-size: 24px;
  }

  .amenities .amenities-grid .service-item h4 {
    font-size: 16px;
  }

  .amenities .amenities-grid .service-item p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
.offers .offer-card {
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.offers .offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.offers .offer-card .offer-image {
  position: relative;
  overflow: hidden;
}

.offers .offer-card .offer-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offers .offer-card .offer-image:hover img {
  transform: scale(1.05);
}

.offers .offer-card .offer-image .offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.offers .offer-card .offer-image .offer-badge .discount {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(54, 144, 231, 0.3);
}

.offers .offer-card .offer-content {
  padding: 30px;
}

.offers .offer-card .offer-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.offers .offer-card .offer-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.offers .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.offers .offer-card .offer-content .offer-details {
  margin-bottom: 25px;
}

.offers .offer-card .offer-content .offer-details .price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.offers .offer-card .offer-content .offer-details .price-info .original-price {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

.offers .offer-card .offer-content .offer-details .price-info .discounted-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.offers .offer-card .offer-content .offer-details .price-info .per-night {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.offers .offer-card .offer-content .offer-details .validity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.offers .offer-card .offer-content .offer-details .validity i {
  color: var(--accent-color);
}

.offers .offer-card .offer-content .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.offers .offer-card .offer-content .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.offers .offer-card .offer-content .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.offers .offer-card .offer-content .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.offers .offer-card .offer-content .btn.btn-outline-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.offers .offer-card.compact .offer-image img {
  height: 180px;
}

.offers .offer-card.compact .offer-content {
  padding: 25px;
}

.offers .offer-card.compact .offer-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.offers .offer-card.compact .offer-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

.offers .offer-card.compact .offer-content .offer-details {
  margin-bottom: 20px;
}

.offers .offer-card.compact .offer-content .btn {
  padding: 10px 25px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .offers .offer-card .offer-content {
    padding: 25px 20px;
  }

  .offers .offer-card .offer-content h3 {
    font-size: 22px;
  }

  .offers .offer-card .offer-content .offer-details .price-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .offers .offer-card .offer-content .offer-details .price-info .discounted-price {
    font-size: 24px;
  }

  .offers .offer-card.compact .offer-content {
    padding: 20px 15px;
  }
}

/*--------------------------------------------------------------
# Restaurant Section
--------------------------------------------------------------*/
.restaurant .about-content h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.restaurant .about-content .fst-italic {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.restaurant .about-content .feature-item {
  margin-bottom: 1.5rem;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.restaurant .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.restaurant .about-content .feature-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.restaurant .about-content .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.restaurant .about-content .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.restaurant .about-content .signature .chef-name {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.restaurant .about-content .signature img {
  max-width: 180px;
  height: auto;
  margin-top: 5px;
}

.restaurant .about-gallery {
  position: relative;
}

.restaurant .about-gallery .years-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.restaurant .about-gallery .years-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.restaurant .about-gallery .years-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.restaurant .about-gallery img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.restaurant .about-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .restaurant .about-gallery {
    margin-top: 2rem;
  }

  .restaurant .about-gallery .years-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .restaurant .about-gallery .years-badge .number {
    font-size: 2rem;
  }

  .restaurant .about-gallery .years-badge .text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .restaurant .about-gallery .years-badge {
    bottom: 15px;
    right: 15px;
  }

  .restaurant .about-content .signature img {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu .menu-filters ul li {
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 25px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu .menu-filters ul li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.menu .menu-filters ul li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .menu .menu-filters ul {
    gap: 8px;
  }

  .menu .menu-filters ul li {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

.menu .menu-container {
  position: relative;
}

.menu .specials-badge {
  margin-bottom: 15px;
}

.menu .specials-badge span {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 20px;
}

.menu .specials-badge span i {
  color: var(--accent-color);
  margin-right: 8px;
}

.menu .specials-container {
  margin-bottom: 2rem;
}

.menu .special-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background-color: var(--surface-color);
}

.menu .special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu .special-item .menu-item-img {
  position: relative;
  overflow: hidden;
}

.menu .special-item .menu-item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu .special-item .menu-item-img:hover img {
  transform: scale(1.05);
}

.menu .special-item .menu-item-img .menu-item-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
}

.menu .special-item .menu-item-img .menu-item-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu .special-item .menu-item-img .menu-item-badges .badge-special {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-img .menu-item-badges .badge-vegan {
  background-color: color-mix(in srgb, green, transparent 30%);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-img .menu-item-badges .badge-spicy {
  background-color: color-mix(in srgb, red, transparent 30%);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-content {
  padding: 20px;
}

.menu .special-item .menu-item-content h4 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 1.25rem;
}

.menu .special-item .menu-item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.menu .special-item .menu-item-content .menu-item-price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.menu .menu-item {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu .menu-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.menu .menu-item .menu-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.menu .menu-item .menu-img:hover {
  transform: scale(1.05);
}

.menu .menu-item .menu-content {
  flex: 1;
}

.menu .menu-item .menu-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu .menu-item .menu-content .menu-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
}

.menu .menu-item .menu-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.menu .menu-item .menu-content .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.menu .download-menu {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.menu .download-menu i {
  margin-right: 8px;
}

.menu .download-menu:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .menu .menu-item .menu-img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .menu .specials-container .row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .menu .menu-item {
    flex-direction: column;
  }

  .menu .menu-item .menu-img {
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
}

.booking .reservation-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.booking .reservation-header {
  margin-bottom: 4rem;
}

.booking .reservation-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .booking .reservation-header h2 {
    font-size: 2rem;
  }
}

.booking .reservation-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}

.booking .booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .booking .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.booking .booking-form-section .form-container {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .booking .booking-form-section .form-container {
    padding: 2rem;
  }
}

.booking .reservation-form .form-section {
  margin-bottom: 2.5rem;
}

.booking .reservation-form .form-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
}

.booking .reservation-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .booking .reservation-form .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.booking .reservation-form .form-grid .full-width {
  grid-column: 1/-1;
}

.booking .reservation-form .form-group {
  margin-bottom: 1.5rem;
}

.booking .reservation-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking .reservation-form input[type=date],
.booking .reservation-form input[type=text],
.booking .reservation-form input[type=email],
.booking .reservation-form input[type=tel],
.booking .reservation-form textarea,
.booking .reservation-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.booking .reservation-form input[type=date]:focus,
.booking .reservation-form input[type=text]:focus,
.booking .reservation-form input[type=email]:focus,
.booking .reservation-form input[type=tel]:focus,
.booking .reservation-form textarea:focus,
.booking .reservation-form select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.125rem color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.booking .reservation-form input[type=date]::placeholder,
.booking .reservation-form input[type=text]::placeholder,
.booking .reservation-form input[type=email]::placeholder,
.booking .reservation-form input[type=tel]::placeholder,
.booking .reservation-form textarea::placeholder,
.booking .reservation-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.booking .reservation-form textarea {
  resize: vertical;
  min-height: 100px;
}

.booking .reservation-form .form-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking .reservation-form .btn-primary {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
}

.booking .reservation-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000000 10%);
  transform: translateY(-1px);
}

.booking .reservation-form .btn-primary:focus {
  box-shadow: 0 0 0 0.125rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.booking .hotel-showcase .showcase-image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.booking .hotel-showcase .showcase-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.booking .hotel-showcase .hotel-highlights {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.booking .hotel-showcase .hotel-highlights h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking .hotel-showcase .hotel-highlights .highlights-grid {
  display: grid;
  gap: 1.5rem;
}

.booking .hotel-showcase .hotel-highlights .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

.booking .hotel-showcase .booking-guarantees {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .booking .hotel-showcase .booking-guarantees {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.booking .hotel-showcase .booking-guarantees .guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.booking .hotel-showcase .booking-guarantees .guarantee-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .booking .hotel-showcase {
    order: -1;
  }

  .booking .hotel-showcase .showcase-image img {
    height: 240px;
  }

  .booking .hotel-showcase .hotel-highlights .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content h5 {
    font-size: 0.95rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content p {
    font-size: 0.85rem;
  }

  .booking .hotel-showcase .booking-guarantees {
    justify-content: center;
  }

  .booking .hotel-showcase .booking-guarantees .guarantee-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .booking .hotel-highlights .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .hotel-filters {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery .hotel-filters li {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery .hotel-filters li:hover,
.gallery .hotel-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .gallery .hotel-filters li {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-item .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery .gallery-item .gallery-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item .gallery-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery .gallery-item .gallery-wrapper img {
    height: 250px;
  }
}

.gallery .gallery-item .gallery-wrapper:hover img {
  transform: scale(1.1);
}

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-overlay a {
  color: var(--contrast-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery .gallery-overlay a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.gallery .gallery-wrapper:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .hero-content {
  margin-bottom: 60px;
}

.events .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .events .hero-content h2 {
    font-size: 2.2rem;
  }
}

.events .hero-content .lead {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.events .event-venues-grid {
  margin-bottom: 80px;
}

.events .event-venues-grid .venue-card {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.events .event-venues-grid .venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.events .event-venues-grid .venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.events .event-venues-grid .venue-card:hover .venue-overlay {
  opacity: 1;
}

.events .event-venues-grid .venue-card .venue-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.events .event-venues-grid .venue-card .venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info {
  text-align: center;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info .capacity {
  font-size: 1rem;
  opacity: 0.9;
}

.events .features-section {
  margin-bottom: 80px;
}

.events .features-section .features-content h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .features-section .features-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .features-section .feature-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.events .features-section .feature-list .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.events .features-section .feature-list .feature-item .feature-icon i {
  font-size: 1.7rem;
  color: var(--contrast-color);
}

.events .features-section .feature-list .feature-item .feature-details h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.events .features-section .feature-list .feature-item .feature-details p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.events .features-section .features-gallery .gallery-main {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.events .features-section .features-gallery .gallery-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.events .features-section .features-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .events .features-section .row {
    flex-direction: column-reverse;
  }

  .events .features-section .features-gallery {
    margin-bottom: 40px;
  }
}

.events .event-packages {
  margin-bottom: 80px;
}

.events .event-packages .section-header {
  margin-bottom: 60px;
}

.events .event-packages .section-header h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .event-packages .section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-packages .package-item {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
}

.events .event-packages .package-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.events .event-packages .package-item.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.events .event-packages .package-item.featured .featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.events .event-packages .package-item .package-content {
  text-align: center;
}

.events .event-packages .package-item .package-content .package-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.events .event-packages .package-item .package-content .package-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.events .event-packages .package-item .package-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.events .event-packages .package-item .package-content p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-packages .package-item .package-content .package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.events .event-packages .package-item .package-content .package-highlights .highlight {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.events .event-packages .package-item .package-content .package-price {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-packages .package-item .package-content .package-price strong {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.events .event-packages .package-item .package-content .btn-package {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.events .event-packages .package-item .package-content .btn-package:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .planning-services .planning-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .planning-services .planning-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .planning-services .planning-content .btn-contact {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.events .planning-services .planning-content .btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .planning-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.events .planning-services .services-grid .service-box {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.events .planning-services .services-grid .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.events .planning-services .services-grid .service-box .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.events .planning-services .services-grid .service-box .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.events .planning-services .services-grid .service-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.events .planning-services .services-grid .service-box p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .events .hero-content {
    margin-bottom: 40px;
  }

  .events .hero-content .lead {
    font-size: 1rem;
  }

  .events .event-venues-grid,
  .events .features-section,
  .events .event-packages,
  .events .planning-services {
    margin-bottom: 60px;
  }

  .events .venue-card {
    height: 250px;
  }

  .events .features-gallery .gallery-main img {
    height: 250px;
  }

  .events .features-gallery .gallery-thumbnails .thumbnail-item img {
    height: 100px;
  }

  .events .package-item {
    padding: 30px 20px;
  }

  .events .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events .services-grid .service-box {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Hotel Location Section
--------------------------------------------------------------*/
.hotel-location .location-content {
  padding: 40px 0;
}

.hotel-location .location-content .location-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}

.hotel-location .location-content .location-badge i {
  margin-right: 8px;
  font-size: 16px;
}

.hotel-location .location-content .location-title {
  font-size: 42px;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hotel-location .location-content .location-description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hotel-location .location-content .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.hotel-location .location-content .info-grid .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hotel-location .location-content .info-grid .info-item .info-icon {
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
  flex-shrink: 0;
}

.hotel-location .location-content .info-grid .info-item .info-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.hotel-location .location-content .info-grid .info-item .info-text h6 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.hotel-location .location-content .info-grid .info-item .info-text p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.hotel-location .location-content .action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hotel-location .location-content .action-buttons .btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hotel-location .location-content .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hotel-location .location-content .action-buttons .btn.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.hotel-location .location-content .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .location-content .action-buttons .btn.btn-outline:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
  border-color: var(--heading-color);
  transform: translateY(-2px);
}

.hotel-location .map-container {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hotel-location .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hotel-location .map-container .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hotel-location .map-container .hotel-marker {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-location .map-container .hotel-marker i {
  font-size: 18px;
}

.hotel-location .transportation-hub {
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 25px;
  padding: 60px 40px;
  margin: 80px 0;
}

.hotel-location .transportation-hub .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.hotel-location .transportation-hub .section-header h3 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 15px;
}

.hotel-location .transportation-hub .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 16px;
  margin: 0;
}

.hotel-location .transportation-hub .transport-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.hotel-location .transportation-hub .transport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .transportation-hub .transport-card .transport-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box i {
  color: var(--accent-color);
  font-size: 24px;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-title h5 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 5px;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-title .transport-time {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.hotel-location .transportation-hub .transport-card .transport-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hotel-location .transportation-hub .transport-card .transport-details .transport-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hotel-location .transportation-hub .transport-card .transport-details .transport-features .feature-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.hotel-location .attractions-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hotel-location .attractions-section .section-header h3 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 15px;
}

.hotel-location .attractions-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 16px;
  margin: 0;
}

.hotel-location .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
}

.hotel-location .attractions-section .attraction-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .attractions-section .attraction-item:hover .attraction-photo img {
  transform: scale(1.05);
}

.hotel-location .attractions-section .attraction-item .attraction-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hotel-location .attractions-section .attraction-item .attraction-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-location .attractions-section .attraction-item .attraction-photo .distance-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-location .attractions-section .attraction-item .attraction-photo .distance-badge i {
  font-size: 12px;
}

.hotel-location .attractions-section .attraction-item .attraction-info {
  padding: 25px;
}

.hotel-location .attractions-section .attraction-item .attraction-info h5 {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 10px;
}

.hotel-location .attractions-section .attraction-item .attraction-info .walk-time {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-location .attractions-section .attraction-item .attraction-info .walk-time i {
  font-size: 13px;
}

.hotel-location .attractions-section .attraction-item .attraction-info p:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

@media (max-width: 992px) {
  .hotel-location .location-content {
    padding: 30px 0;
  }

  .hotel-location .location-content .location-title {
    font-size: 36px;
  }

  .hotel-location .location-content .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hotel-location .map-container {
    height: 400px;
    margin-bottom: 40px;
  }

  .hotel-location .transportation-hub {
    padding: 50px 30px;
    margin: 60px 0;
  }
}

@media (max-width: 768px) {
  .hotel-location .location-content .location-title {
    font-size: 32px;
  }

  .hotel-location .location-content .action-buttons {
    flex-direction: column;
  }

  .hotel-location .location-content .action-buttons .btn {
    text-align: center;
  }

  .hotel-location .map-container {
    height: 350px;
  }

  .hotel-location .map-container .hotel-marker {
    top: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hotel-location .transportation-hub {
    padding: 40px 20px;
  }

  .hotel-location .transportation-hub .section-header h3 {
    font-size: 28px;
  }

  .hotel-location .transportation-hub .transport-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .hotel-location .transportation-hub .transport-card .transport-header {
    gap: 15px;
  }

  .hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box {
    width: 50px;
    height: 50px;
  }

  .hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box i {
    font-size: 20px;
  }

  .hotel-location .attractions-section .section-header h3 {
    font-size: 28px;
  }

  .hotel-location .attractions-section .attraction-item .attraction-photo {
    height: 200px;
  }

  .hotel-location .attractions-section .attraction-item .attraction-info {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hotel-location .transportation-hub .transport-card .transport-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 13px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-info-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact .contact-info-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-5px);
}

.contact .contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-card .icon-box i {
  font-size: 26px;
}

.contact .contact-info-card .info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact .contact-info-card .info-content p {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

.contact .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 30px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact .contact-info-card {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .contact-info-card .icon-box {
    margin-bottom: 15px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact .contact-info-card {
    padding: 20px;
  }

  .contact .map-container iframe {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*---contact--------*/
/* CSS เพิ่มเติมสำหรับหน้า Contact */
    .contact-info-box {
      padding: 30px;
      background: #fff;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
      border-radius: 15px;
      height: 100%;
    }
    .info-item i {
      font-size: 24px;
      color: #b59461;
      float: left;
      width: 44px;
      height: 44px;
      background: #f4f0e8;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50px;
      transition: all 0.3s ease-in-out;
    }
    .info-item h4 {
      padding: 0 0 0 60px;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 5px;
      font-family: 'Poppins', sans-serif;
    }
    .info-item p {
      padding: 0 0 0 60px;
      margin-bottom: 0;
      font-size: 0.9rem;
      color: #6c757d;
    }
    .contact-image-container {
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
      height: 100%;
    }
    .contact-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* ให้รูปภาพคลุมพื้นที่ทั้งหมด */
      transition: transform 0.3s ease;
    }
    .contact-image-container:hover img {
      transform: scale(1.05); /* ลูกเล่นขยายรูปเมื่อชี้ */
    }


    /*---location---*/
    /* --- Header Section --- */
      .location-header-simple {
        padding: 80px 0 60px;
        text-align: center;
      }

      .location-header-simple h1 {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .location-header-simple h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background-color: #b59461;
      }

      /* --- Main Card Structure --- */
      .location-main-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: none;
        margin-bottom: 100px;
        text-align: left; /* บังคับเนื้อหาในการ์ดชิดซ้าย */
      }

      /* Map Side */
      .map-wrapper {
        position: relative;
        min-height: 500px;
      }

      .map-wrapper iframe {
        width: 100%;
        height: 100%;
        min-height: 500px;
        display: block;
        border: 0;
        filter: grayscale(0.1);
        transition: 0.5s ease;
      }

      .map-wrapper:hover iframe {
        filter: grayscale(0);
      }

      /* Info Side */
      .info-content {
        padding: 60px 50px;
        background: #ffffff;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      /* Address Section */
      .address-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid #f1f5f9;
      }

      .address-section h4 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px !important;
      }

      .address-section p {
        color: #64748b;
        line-height: 1.8;
        font-size: 1rem;
      }

      /* Transportation Section */
      .transportation h4 {
        font-size: 0.85rem !important;
        color: #b59461 !important;
        font-weight: 800;
        letter-spacing: 1.5px;
        margin-bottom: 25px !important;
        text-transform: uppercase;
      }

      .transport-item {
        position: relative;
        padding-left: 25px;
        border-left: 2px solid #f1f5f9;
        margin-bottom: 30px;
        transition: all 0.3s ease;
      }

      .transport-item:last-child {
        margin-bottom: 0;
      }

      .transport-item:hover {
        border-left-color: #b59461;
        transform: translateX(5px);
      }

      .transport-item h5 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #334155;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .transport-item h5 i {
        color: #b59461;
        font-size: 1.2rem;
      }

      .step-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
      }

      .step-list li {
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 6px;
        display: flex;
        align-items: baseline;
      }

      .step-list li::before {
        content: "•";
        color: #b59461;
        font-weight: bold;
        display: inline-block; 
        width: 15px;
        flex-shrink: 0;
      }

      /* Button Style */
      .btn-maps {
        background: #2c3e50;
        color: #ffffff !important;
        padding: 14px 32px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 10px 20px rgba(44, 62, 80, 0.15);
      }

      .btn-maps:hover {
        background: #b59461;
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(181, 148, 97, 0.25);
      }

      /* --- Responsive --- */
      @media (max-width: 991.98px) {
        .map-wrapper, .map-wrapper iframe {
          min-height: 400px;
        }
        .info-content {
          padding: 40px 30px;
        }
      }

      /*---rates---------*/
      /* Custom Table Styling */
    .table-pricing {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .table-pricing thead {
      background-color: #b59461;
      color: white;
    }

    .table-pricing th {
      font-weight: 600;
      padding: 20px;
      vertical-align: middle;
    }

    .table-pricing td {
      padding: 20px;
      vertical-align: middle;
    }

    .price-tag {
      font-weight: 700;
      color: #b59461;
      font-size: 1.1rem;
    }

    .policy-box {
      background: #fff;
      border-left: 5px solid #b59461;
      padding: 25px;
      border-radius: 0 15px 15px 0;
      height: 100%;
    }

    .policy-title {
      color: #b59461;
      font-weight: 700;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .policy-title i {
      margin-right: 10px;
      font-size: 1.5rem;
    }

    .nav-pills .nav-link {
    color: #DAA520;
    background: white;
    border: 1px solid #b59461;
    transition: all 0.3s ease;
    }

    .nav-pills .nav-link.active {
    background-color: #DAA520 !important;
    color: white !important;
    transform: translateY(-2px);
    }

    .price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4d4a41;
    }

    .table-responsive {
    border: 1px solid #f1f1f1;
    }

    /* Style ใหม่สำหรับ Policies Section */
    .policy-item {
        padding: 20px;
        border-radius: 12px;
        background: #fff;
        transition: all 0.3s ease;
        border: 1px solid #eee;
    }

    .policy-item:hover {
        border-color: #b59461;
        box-shadow: 0 5px 15px rgba(181, 148, 97, 0.1);
    }

    .policy-icon-wrapper {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Timeline สำหรับเงื่อนไขการยกเลิก */
    .cancel-timeline {
        position: relative;
        padding-left: 30px;
    }

    .cancel-timeline::before {
        content: '';
        position: absolute;
        left: 7px;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: #e9ecef;
    }

    .timeline-dot {
        position: absolute;
        left: 0;
        width: 16px;
        height: 16px;
        background: #fff;
        border: 3px solid #dc3545;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-dot.success { border-color: #198754; }
    .timeline-dot.warning { border-color: #ffc107; }

    /* สไตล์สำหรับราคาในตาราง */
    .old-price {
        font-size: 0.8rem;
        color: #bbb;
        text-decoration: line-through;
        font-weight: 400;
        display: block;
        margin-bottom: -2px;
    }

    .price-unit {
        font-size: 0.7rem;
        color: #999;
        font-weight: 400;
        display: block;
    }


    /*--+++++++++++++++ Price Table --+++++++++++++++++++*/
    /* ปรับแต่งการจัดวางราคาในช่องตารางให้สวยงามเป็นสัดส่วน */
.rate-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.rate-box {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* สไตล์ห้องพักที่ไม่รวมอาหารเช้า (Without Breakfast) */
.rate-no-bf {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 1px dashed #dee2e6;
}
.rate-no-bf i {
  color: #dc3545;
  font-size: 0.8rem;
  margin-right: 4px;
}

/* สไตล์ห้องพักที่รวมอาหารเช้า (With Breakfast) - เน้นโทนสีทอง Luxury */
.rate-with-bf {
  background-color: #fffdf5;
  color: #2b2b2b;
  border: 1px solid #f1e4cc;
  box-shadow: 0 2px 4px rgba(181, 148, 97, 0.05);
}
.rate-with-bf i {
  color: #b59461; /* สีทองธีมโรงแรม */
  margin-right: 4px;
}

/* ไฮไลต์พิเศษสำหรับห้อง Executive */
.rate-executive-highlight {
  background-color: #fcf6e8;
  border-color: #DAA520;
}
.rate-executive-highlight .price-amount {
  color: #DAA520 !important;
  font-weight: 700;
}

.price-amount {
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}

/* ตกแต่งส่วนหัวตารางและไอคอนห้องพัก */
.table th i {
  color: #b59461;
  margin-right: 6px;
}

/* ปรับแต่งป้ายสัญลักษณ์ด้านล่างตาราง */
.legend-item {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  border: 1px solid #eee;
}


