/* Reset and Base Styles */
:root {
    --color-brand: #B87C4C;
    --color-bg: #d6dac8;  
    --color-bg-alt: #9CAFAA;
    --color-link: #d6dac8;
    --color-text-heading: #3c4a46;
    --color-text-desc: #3c4a46;
    --color-border: rgb(61 74 70 / 10%);
    --color-header-bg: #3c4a46;
    --font-family: 'Satoshi-Regular'; 
}

[data-theme="contrast"] {
    --color-bg: #111111;
    --color-bg-alt: #333333;
    --color-link: #d6dac8;
    --color-text-heading: #d6dac8;
    --color-text-desc: #d6dac8;
    --color-border: rgb(214 218 201 / 10%);
    --color-header-bg: #333333;
}


@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
    url('../fonts/Satoshi-Regular.woff') format('woff'),
    url('../fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
    url('../fonts/Satoshi-Medium.woff') format('woff'),
    url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
    url('../fonts/Satoshi-Bold.woff') format('woff'),
    url('../fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

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

a:hover {
    color: var(--color-brand);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-desc);
    overflow-x: hidden;
    position: relative;
    background: var(--color-bg);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.06;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-text-desc);
}

/* Google Translate top-bar fixes: hide banner and prevent body offset */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

#goog-gt-tt,
.goog-tooltip,
.goog-tooltip skiptranslate,
iframe.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Logo Styles */
.logo-svg {
    width: auto;
    height: 50px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Satoshi-Bold';
    line-height: 1.2;
    color: var(--color-text-heading);
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    position: relative;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.2em;
}

p {
    font-size: 1em;
}

/* Bootstrap Modal Customizations */
.modal-backdrop {
    backdrop-filter: blur(8px);
}

#myVideoModal .modal-body {
    overflow: visible;
    max-height: max-content;
}

#myVideoModal .modal-content, #myVideoModal iframe#video {
    border-radius: 16px;
}

/* Header Styles */
.header {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 16px;
    padding: 10px 40px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.fixed {
    position: fixed;
    background: var(--color-header-bg);
   top: 0;
   padding-left: 20px;
   padding-right: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}


/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-toggler {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .bar {
    width: 25px;
    height: 2px;
    background: var(--color-link);
    margin: 5px auto;
    transition: 0.3s;
    display: block;
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.dropdown-toggle::after {
    content: none;
}

/* Button Styles with Blue Theme */
.btn {
    padding: 0.6em 1.6em;
    font-size: 1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

.btn-primary, .btn-secondary.active {
    background: var(--color-brand);
    color: var(--color-link);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.btn-primary:hover,
.btn.btn-primary:active {
    background: var(--color-brand);
    color: var(--color-link);
}

.btn-secondary,
.btn-secondary:active {
    background: transparent;
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:active:hover {
    background: var(--color-brand);
    color: var(--color-link);
    border-color: transparent;
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}

.btn.btn-outline {
    background: transparent;
    color: var(--color-brand);
    border: 1.5px solid var(--color-brand);
    padding: 0.75rem 1.5rem;
}

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

/* 
.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-color);
    border: 1px solid var(--btn-primary-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.btn-primary:hover,
.btn.btn-primary:active {
    background: var(--btn-primary-hover-bg);
    color: var(--btn-primary-hover-color);
    border-color: var(--btn-primary-hover-border);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--btn-primary-border);
    outline-offset: 2px;
}

.btn-secondary,
.btn-secondary:active {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-color);
    border: 1px solid var(--btn-secondary-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:active:hover {
    background: var(--btn-secondary-hover-bg);
    color: var(--btn-secondary-hover-color);
    border-color: var(--btn-secondary-hover-border);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--btn-secondary-border);
    outline-offset: 2px;
}

.btn.btn-outline {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-color);
    border: 1.5px solid var(--btn-secondary-border);
    padding: 0.75rem 1.5rem;
}

.btn.btn-outline:hover {
    background: var(--btn-secondary-hover-bg);
    color: var(--btn-secondary-hover-color);
    border-color: var(--btn-secondary-hover-border);
    transform: translateY(-2px);
}

.btn.btn-outline:focus-visible {
    outline: 2px solid var(--btn-secondary-border);
    outline-offset: 2px;
} */


/* Hero Section */
.hero {
    height: 100dvh;
    position: relative;
    padding-bottom: 0;
    z-index: 1;
}

.hero-about {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-about .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-about .hero-image {
    width: 100%;
    height: 100%;
}

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


.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slider .slick-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
    content: none;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-link);
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.offers-carousel.slick-slider .slick-prev,
.offers-carousel.slick-slider .slick-next {
    background: rgb(44 44 44 / 20%);
}

.slick-slider .slick-prev {
    left: 20px;
}

.slick-slider .slick-next {
    right: 20px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.booking-engine .MbsSearchWidget {
    background: transparent;
}

.hero .booking-engine {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 4;
    background: transparent;
}

.booking-engine .Configure-quickBook-Widget .MbsSearchWidget {
    margin: 0 auto;
}

.Configure-quickBook-Widget {
    margin-bottom: 50px;
}

.hero .Configure-quickBook-Widget .MbsSearchWidget  {
    background: rgb(216 220 203) !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    width: 100%;
    max-width: max-content;
}

.btn-close:focus {
    box-shadow: none;
}


/* Get In Touch Section */
.get-in-touch {
    background: var(--color-bg-alt);
    padding: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-details-grid .contact-item {
    flex-direction: column;
    align-items: start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 3;
}

.contact-icon i {
    font-size: 1.5em;
    color: var(--color-text-desc);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-label {
    font-family: 'Satoshi-Medium';
    font-size: 0.9em;
    color: var(--color-text-heading);
    text-transform: uppercase;
    display: block;
}

.contact-value {
    font-family: 'Satoshi-Regular';
    font-size: 1em;
    color: var(--color-text-desc);
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--color-bg);
    padding: 60px 0 20px;
}

.footer-title {
    font-family: 'Satoshi-Medium';
    font-size: 1.2em;
    color: var(--color-text-heading);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-brand);
}

.footer-link {
    color: var(--color-brand);
}

.footer-links {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: var(--color-text-desc);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-brand);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-brand);
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}


.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-direction: row;
    gap: 0;
}

.footer-contact .contact-item i {
    color: var(--color-brand);
    font-size: 1.2em;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-desc);
    margin-top: 40px;
}

.footer-bottom a:hover {
    color: var(--color-brand);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.lang-drop .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-link);
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--color-link);
    background: rgba(229, 229, 229, 0.2);
}

.dropdown-toggle i {
    font-size: 0.75em;
    line-height: normal;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown  .dropdown-menu {
    position: absolute;
    margin-top: 10px;
    top: 40px;
    left: auto;
    right: 0;
    background: var(--color-bg);
    min-width: 200px;
    max-height: 340px;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform:  scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: block;
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: var(--color-bg-alt);
    border-radius: 16px;
}

.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform:  scale(1);
}
.dropdown .dropdown-item, .breadcrumb-item{text-transform: capitalize;}

.dropdown .dropdown-item,
.dropdown .dropdown-item.active,
.dropdown .dropdown-item:active,
.dropdown .dropdown-item:hover {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-text-desc);
    text-decoration: none;
    font-weight: 500;   
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(61 74 70 / 10%), transparent);
    transition: left 0.5s ease;
}

.dropdown .dropdown-item:hover::before {
    left: 100%;
}


.bar {
    background-color: var(--color-bg);
}

/* Footer Styles */

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: var(--color-text-desc);
    font-size: 1.5rem;
    text-decoration: none;
    line-height: 19px;
}


.social-link i,
.social-link svg {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-link i:hover {
    color: var(--color-brand);
}

.social-link svg:hover .st0{
    fill: var(--color-brand);
}

/* About Us */

.page-badge {
    display: inline-block;
    font-size: 1em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 1rem;
    font-family: 'Satoshi-Medium';
    padding-left: 40px;
    padding-right: 40px;
}

.page-badge::before,
.page-badge::after {
    content: "";
    position: absolute;
    background-size: 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 100%;
    top: 6px;
}

.page-badge::before {
    left: 0;
    background-image: url('../img/decorative-heading.svg');
}

.page-badge::after {
    right: 0;
    background-image: url('../img/decorative-heading-r.svg');
}


.about .about-lead {
    font-family: 'Satoshi-Regular';
    font-size: 1.05em;
    color: var(--color-text-desc);
    margin-bottom: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
}

.more-btn::after,
.more-btn::before {
    content: "";
    position: absolute;
    border-bottom: 1px dashed var(--color-brand);
    height: 0.1px;
}

.more-btn:after {
    bottom: 50%;
    width: 100%;
}

.more-btn:before {
    bottom: 38%;
    width: 80%;
}

.about .more-btn img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about .about-media img {   
    display: block;
    max-height: 450px;
    margin: 0 auto;
    max-width: 400px;
}

/* Offers Section - Horizontal Carousel Design */
.offers-carousel .slick-slide:not(:first-child) .offer-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: var(--color-border);
    z-index: 1;
}

.offer-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
    position: relative;
    padding: 0 8px;
}

/* Odd blocks: title on top */
.offers-carousel .slick-slide:nth-child(odd) .offer-card-inner {
    flex-direction: column;
}

.offers-carousel .slick-slide:nth-child(odd) .offer-header {
    order: 1;
    margin-bottom: 20px;
    margin-top: 0;
}

.offers-carousel .slick-slide:nth-child(odd) .offer-image-wrapper {
    order: 2;
    margin-bottom: 0;
    margin-top: 0;
}

/* Even blocks: title on bottom */
.offers-carousel .slick-slide:nth-child(even) .offer-card-inner {
    flex-direction: column;
}

.offers-carousel .slick-slide:nth-child(even) .offer-header {
    order: 2;
    margin-top: 20px;
    margin-bottom: 0;
}

.offers-carousel .slick-slide:nth-child(even) .offer-image-wrapper {
    order: 1;
    margin-bottom: 0;
    margin-top: 0;
}

.offer-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.offer-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 25px 0;
    overflow: hidden;
    border-radius: 16px;
    height: 450px;
}

.offer-image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    object-fit: cover;
}

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

.offer-header h3 {
    font-size: 1.5em;
    white-space: nowrap;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.offer-card-inner:hover h3 {
    color: var(--color-brand);
}

.gallery-img .btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 6;
}

i.bi-arrow-right {
    transform: rotate(-45deg);
    display: inline-block;
}

.slick-slider .slick-arrow i.bi-arrow-right {
    transform: rotate(0);
}

.gallery-img-container:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(60 74 70 / 35%);
    z-index: 1;
    border-radius: 16px;
}

/* Keyframe Animations for Customer Metric */
@keyframes metricFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Accommodation Section - Services Design */
.accommodation {
    position: relative;
    overflow: hidden;
}

.accommodation-title {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-image {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-bg);
}

.service-card:nth-child(odd) {
    margin-top: 60px;
}

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

.service-card:hover .service-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2em;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-bg);
}

.service-overlay a.service-badge {
    border: 1px solid var(--color-link);
    color: var(--color-link);
    padding: 6px 20px;
    border-radius: 16px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Satoshi-Bold';
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-title {
    font-family: 'Satoshi-Bold';
    color: var(--color-link);
    margin: 0;
    font-size: 1.3em;
}

.service-title > a {
    color: inherit;
}

.service-button-container {
    margin-top: -40px;
}

/* Show button only on mobile devices (768px and below) */
.accommodation-header {
    padding: 0 30px;
}

.slide-image {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 400px;
}

.slide-image img {
    width: 100%;
    height: 100%;

    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-bg);
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide-image:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-family: 'Satoshi-Medium';
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-bg);
    border-top: 1px solid var(--color-bg-alt);
    padding-top: 15px;
    font-weight: 500;
}

.slide-overlay p {
    font-family: 'Satoshi-Regular';
    font-size: 0.95em;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Slick Slider Custom Styles */
.accommodation-slider .slick-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* Accommodation Detail Page Styles */
.breadcrumb-section {
    background: transparent;
    padding: 30px 0;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--color-text-desc);
}

.breadcrumb-item.active {
    color: var(--color-brand);
}

/* Room Features Grid */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-brand);
}

.feature-content h4 {
    font-family: 'Satoshi-Medium';
    font-size: 1em;
    margin-bottom: 0.5rem;
    color: var(--color-text-desc);
    font-weight: 500;
}

.feature-content p {
    color: var(--color-text-desc);
    margin: 0;
}

/* Text Truncation Utility Classes */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.scale-in {
    transform: translateY(30px) scale(0.9);
}

.scroll-animate.scale-in.animate-in {
    transform: translateY(0) scale(1);
}

.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.slide-left.animate-in {
    transform: translateX(0);
}

.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.slide-right.animate-in {
    transform: translateX(0);
}

.scroll-animate.delay-100 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-200 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-300 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-400 {
    transition-delay: 0.4s;
}

.scroll-animate.delay-500 {
    transition-delay: 0.5s;
}

/* Staggered animation for lists */
.scroll-animate.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.stagger.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.stagger>*:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-animate.stagger>*:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-animate.stagger>*:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-animate.stagger>*:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-animate.stagger>*:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-animate.stagger>*:nth-child(6) {
    transition-delay: 0.6s;
}

.room-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.room-categories .room-images {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--color-border);
    border-radius: 16px;
}

.room-categories .room-images img {
    object-fit: cover;
    height: 100%;
}

.room-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.room-categories .room-content {
    padding: 30px;
    margin-top: -40px;
    margin-left: 30px;
    position: relative;
    background: var(--color-bg);
    border-radius: 0 0 16px 16px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-header h3 {
    font-size: 1.2em;
    color: var(--color-text-heading);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-description {
    color: var(--color-text-desc);
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.room-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.room-categories .btn {
    flex: 1;
}

/* Page Header Styles */


/* Wedding Page Styles */
.wedding-card {
    background-color: var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Wedding Grid Layout - Override default room card to horizontal layout */
.wedding-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.wedding-grid .room-images {
    width: 50%;
    flex-shrink: 0;
    background-color: var(--color-border);
}

.wedding-grid .room-content {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg);
    margin-left: -30px;
    margin-top: 30px;
    border-radius: 0 16px 16px 0;
}

.wedding-slider {
    height: 100%;
}

.wedding-slider .slide img {
    width: 100%;
    height: 100%;

}

.wedding-content {
    padding: 30px;
}

.wedding-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.wedding-header h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0;
    flex: 1;
    min-width: 200px;
}



.wedding-description {
    color: var(--color-text-desc);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1em;
}

/* Dining Page Styles */
.dining-experience {
    padding: 80px 0;
}

.dining-card {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.dining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dining-card--large {
    grid-row: span 2;
}

.dining-card--large .dining-image {
    height: 450px;
}

.dining-image img {
    width: 100%;
    height: 100%;

    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.dining-card:hover .dining-image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.dining-overlay {
    color: var(--color-bg);
    padding: 20px;
    text-align: center;
}

.dining-overlay h3 {
    margin: 0;
    font-family: 'Satoshi-Bold', sans-serif;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.dining-content {
    padding: 25px;
}

.dining-content h4 {
    font-size: 1.5em;
    color: var(--color-text-heading);
    margin-bottom: 15px;
}

.dining-content p {
    color: var(--color-text-desc);
    line-height: 1.6;
    margin-bottom: 20px;
}

.dining-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

/* Special Dining Section */
.special-dining {
    padding: 80px 0;
    background: var(--color-bg);
}

.section-subtitle {
    color: var(--color-text-desc);
    font-size: 1.1em;
    margin-bottom: 0;
}

/* Page Header with Background Images */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.page-header-bg {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 16px;
}

.hero-slider .slide-bg::before,
.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 40%), rgb(0 0 0 / 20%), rgb(0 0 0 / 25%), rgb(0 0 0 / 30%) 100%);
    z-index: 0;
    border-radius: 16px;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header .page-badge {
    color: var(--color-brand);
    font-family: 'Satoshi-Bold';
}

.page-header .page-badge::before,
.page-header .page-badge::after {
    top: 2px;
}

.page-title {
    font-family: 'Satoshi-Bold';
    font-size: 3.5em;
    color: var(--color-bg);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Satoshi-Regular';
    font-size: 1.2em;
    color: var(--color-bg);
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* Dining Grid Section */
.dining-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
}

.dining-grid-item:hover {
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dining-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
  }

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dining Overlay */
.dining-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden; /* Ensures backdrop-filter stays clipped to rounded corners */
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dining-grid-item:hover .dining-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--color-text-desc);
    padding: 20px;
    background: var(--color-bg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 95%;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dining-grid-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--color-text-heading);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overlay-content p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-text-desc);
    font-weight: 300;
}

/* Contact Page Styles */
.contact-header {
    margin-bottom: 50px;
}

.contact-subtitle {
    font-size: 1.1em;
    color: var(--color-text-desc);
    margin-bottom: 0;
    font-weight: 300;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-column .contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-category {
    font-size: 1em;
    color: var(--color-text-desc);
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
}


.contact-image {
    border-radius: 16px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;

    border-radius: 16px;
}

/* Facilities Page Styles */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.facilities-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.facility-item span {
    color: var(--color-text-desc);
    font-size: 0.95em;
    font-weight: 400;
    line-height: 1.4;
}

/* Modal Animation Styles */
.modal-slide-down {
    animation: slideDownFromTop 0.6s ease-out;
}

@keyframes slideDownFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced modal content animation */
.luxury-modal-content {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Staggered animation for modal elements */
.luxury-modal-hero-content {
    animation: slideInFromLeft 0.6s ease-out 0.4s both;
}

.luxury-modal-badge {
    animation: slideInFromRight 0.6s ease-out 0.5s both;
}

.luxury-modal-offer-section {
    animation: slideInFromBottom 0.6s ease-out 0.6s both;
}

.luxury-modal-actions {
    animation: slideInFromBottom 0.6s ease-out 0.7s both;
}

.luxury-modal-timer {
    animation: slideInFromBottom 0.6s ease-out 0.8s both;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success/Error Animations */
.animate-success {
    animation: bounceIn 0.6s ease-out;
    color: #28a745;
}

.animate-error {
    animation: shake 0.6s ease-out;
    color: #dc3545;
}

.gallery-container iframe,
.gallery-container video {
    width: 100%;
    height: 100%;
}

.gallery-container .gallery {
    column-count: 3;       
    column-gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Masonry Gallery Layout */
.gallery-masonry {
    margin: 0 auto;
    position: relative;
}

.gallery-col {
    width: 100%;
    margin-bottom: 12px;
    break-inside: avoid;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s;
    display: inline-block;
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.gallery-col.filtering-out {
    opacity: 0;
    transform: scale(0.8);
    visibility: hidden;
}

.gallery-col.filtering-in {
    opacity: 0;
    transform: scale(0.9);
    animation: filterIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes filterIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-col .item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-border);
}

.gallery-col .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-col .item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    min-height: 150px;

    background-color: #f5f5f5;
}

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

/* Masonry sizer for responsive columns */
.gallery-masonry::after {
    content: '';
    display: block;
    clear: both;
}

/* Notification Animations */
.notification-enter {
    animation: slideInRight 0.5s ease-out;
}

.notification-exit {
    animation: slideOutRight 0.5s ease-in;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}


.footer-logo img {
    margin-bottom: 30px;
}

/* Privacy Policy Modal Styling - Matching Newsletter Modal */
.modal-content {
    border-radius: 16px;
    border: 1px solid var(--color-bg);
  max-height: 90vh;
    background-color: var(--color-bg);
}

.modal-header {
    background-color: var(--color-header-bg);
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
    border-bottom: var(--color-border);
    border-radius: 16px 16px 0 0;
}

.modal-title {
  font-weight: bold;
   color: var(--color-link);
  margin: 0;
}

.modal-body {
    padding: 20px;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

.modal-header .btn-close {
  font-weight: bold;
    color: var(--color-text-desc);
    background-color: var(--color-bg);
    opacity: 1;
    border-radius: 50px;
    background-image: none;
}

.close:hover {
   color: var(--color-link);
}

.policy-modal  {
  height: 100%;
}

/* Gallery Tabs */
.gallery-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
    border-radius: 16px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: capitalize;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--color-link);
    background: linear-gradient(135deg, var(--color-brand) 0%, #D4A574 100%);
    border-color: var(--color-brand);
    box-shadow: 0 8px 25px rgba(184, 124, 76, 0.4);
    transform: translateY(-3px);
    letter-spacing: 1px;
}

.tab-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 124, 76, 0.3);
}

/* Responsive Tab Styles */

.gallery-item {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Tab Animation - Removed old animation styles */

/* Gallery filtering styles */
.gallery-item.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Ensure proper masonry layout after filtering */
.masonry-gallery {
    transition: height 0.3s ease;
}

.form-control, .form-control:focus, .form-select, .form-select:focus {
    background: var(--color-bg);
    border-color: var(--color-border);
    height: 46px;
    box-shadow: none;
    color: var(--color-text-desc);
  }

.form-control::placeholder , .form-select::placeholder {
    color: var(--color-text-desc);
  }

.form-control:focus, .form-select:focus {
    border-color: var(--color-text-desc);
  }

  /* review page style */

.ReviewConteiner .reviewSlideerWrap {
    background: var(--color-bg);
    box-shadow: 0 6px 20px rgba(89, 89, 89, 0.15);
}

.reviewSlideerWrap .reviewtabs li a {
    color: var(--color-text-heading);
    border-bottom-color: var(--color-border);
    background: var(--color-bg);
}

.reviewSlideerWrap .reviewtabs .active {
    background: var(--color-bg-alt);
}

.reviewSlideerWrap .reviewTitle, .reviewSlideerWrap .reviewCnt, .reviewSlideerWrap .reviewMmore,
.reviewSlideerWrap .guestName, .reviewSlideerWrap .sourceWrap span {
    color: var(--color-text-heading);
}

.reviewSlideerWrap .w3-button.w3-black {
    color: var(--color-text-heading);
    background: var(--color-bg);
}