/* Add to your main.css */
@import 'swiper/css';
@import 'swiper/css/navigation';
@import 'swiper/css/pagination';
@import 'swiper/css/autoplay';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Montserrat';
}

:root {
    --navy: #484745;
    --gold: #c6ab7d;
    --light-gold: #d4c5a8;
    --dark-gray: #d4c5a8;
    --medium-gray: #5a5a5a;
    --light-gray: #eaeaea;
    --white: #ffffff;
    --black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bgIntense: rgba(0, 0, 0, 0.337);

    --glass-border: rgba(255, 255, 255, 0.15);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat';
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    width: 100%;
    position: relative;
}

.user-icon {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;

}
.user-icon:hover {
  display: flex;
  align-items: center;
  gap: 7px; /* space between icon and text */
  cursor: pointer;
transition: all 0.3s ease;
}

.account-text {
    font-size: 12px;
        font-family: 'Montserrat', sans-serif !important;

    color: white;
}

.account-text:hover{
    font-size: 12px;
    font-weight: 500;
    color: #c6ab7d !important;
    transition: all 0.3s ease;
}

#language-select{

    font-family: 'Montserrat', sans-serif !important;

}


#language-select:hover{

color: #c6ab7d !important;}



#language-selector{

    font-family: 'Montserrat', sans-serif !important;
}



.header-right {

    
    width: 100%;


    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 20px !important;
    position: relative !important; /* important: no absolute */


}

.right-controls {
    display: flex;
    align-items: center;
    gap: 20px; /* space between toggle button and icons */
}

.header-right {
    display: flex !important;
    justify-content: flex-end !important;  /* Push everything to right */
    align-items: center !important;
    width: 100% !important;
}

.right-controls {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important; /* space between toggle button and icons */
}



/* Toggle Button Styling - Sticky Bottom Right */
.toggle-booking {
    position: fixed;       /* Make it fixed on screen */
    bottom: 20px;          /* Distance from bottom */
    right: 20px;           /* Distance from right */
    padding: 14px 32px !important;
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
    border: none !important;
    background: black !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    z-index: 9999;         /* Make sure it stays on top */
}

.toggle-booking:hover {
    background: #c6ab7d !important;
}

.social-icons {
    display: flex !important;
    gap: 12px !important;
    position: static !important;  /* IMPORTANT */
}


.social-icons img {
    width: 24px !important;
    height: 24px !important;
}

/* Main Navigation */
.header-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: transparent;
    backdrop-filter: blur(15px);
    transition: var(--transition-medium);
    

}
.header-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

/* Right side container */
.header-right {
    display: flex !important;
    align-items: center !important;
}

/* Align toggle button + social media icons in one line */
.right-controls {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Fix social icons alignment */
.social-icons {
    display: flex !important;
    gap: 12px !important;
}

.social-icons img {
    width: 24px !important;
    height: 24px !important;
}

/* ======================================================= */
/* FIX 1: Ensure Account Hover is GOLD (Overrides Black Scroll State) */
/* ======================================================= */
/* ======================================================= */
/* FIX 4: Reset Positioning and Align Audio Toggle Next to Account */
/* ======================================================= */



/* Logo on the left */
.mobile-logo {
    flex: 1;
}

/* Audio toggle and hamburger container */
.audio-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: 15px; /* Space between audio toggle and hamburger */
}

.audio-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px;
}



.audio-toggle {
    /* 1. REMOVE conflicting absolute positioning from the previous attempt */
    position: static !important;
    top: auto !important;
    transform: none !important;
    right: auto !important;
    z-index: auto !important; 

    /* 2. Keep the size fixed to prevent overlap (from previous fix) */
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important; 
    
    /* 3. Ensure proper alignment and flow (Flex properties are often needed here) */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    
    /* 4. SET THE MARGIN to control spacing: This pushes the toggle away from the language switcher 
       and places it next to the account profile. Adjust 'margin-right' to fine-tune placement. */
    margin-right: 15px !important; 
    margin-left: 0 !important;
}
/* Target the Account Text when hovering the account element in all states (scrolled or not) 
   This ensures the gold color is applied and overrides the black color rule on scroll/header hover. */


/* Target the Account Icon (SVG) when hovering the account element in all states */
.user-icon:hover svg path,
.user-icon:hover svg circle,
.header-top:hover .user-icon:hover svg path,
.header-top:hover .user-icon:hover svg circle,
header.scrolled .header-top .user-icon:hover svg path,
header.scrolled .header-top .user-icon:hover svg circle {
    stroke: var(--gold) !important; /* Gold icon stroke */
}

/* ======================================================= */
/* FIX 3: Prevent Audio Toggle from Overlapping Account (Limit Hit Area) */
/* ======================================================= */

/*
The issue is that .audio-toggle's bounding box is too large and overlaps the account link.
We need to explicitly set a small, fixed size for the audio toggle.
Adjust these values to match the actual size of the icon (e.g., 30px x 30px).
*/

/* Increase the z-index of the audio toggle to ensure it is always on top of the account link,
   though reducing its size should be the main fix. */
.audio-toggle {
    z-index: 2001 !important; /* Ensure it is higher than the default z-index of 2000 in your file */
}
/* ======================================================= */
/* FIX 2: Ensure Audio Toggle Hover is GOLD (Overrides filter: none) */
/* ======================================================= */


#language-selector:hover{

color: #c6ab7d !important;}


.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat' ;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 500;
        font-family: 'Montserrat' ;

}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-medium);
    font-family: 'Montserrat' ;

}

.section-title:hover h2:after {
    width: 120px;
}

.section-title p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
}
/* Fixed Header Structure */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    position: relative;
    height: 80px; /* Fixed height for consistency */
    transition: all var(--transition-medium);
}

/* Hover/Scroll state - icons turn black */
.header-top:hover,
header.scrolled .header-top {
    background: white;
    color: black;
}

.header-top:hover .language-switcher select,
header.scrolled .header-top .language-switcher select {
    color: black !important;
}

.header-top:hover .account-text,
header.scrolled .header-top .account-text {
    color: black !important;
}

.header-top:hover .user-icon svg,
header.scrolled .header-top .user-icon svg {
    color: black !important;
}

.header-top:hover .user-icon svg path,
.header-top:hover .user-icon svg circle,
header.scrolled .header-top .user-icon svg path,
header.scrolled .header-top .user-icon svg circle {
    stroke: black !important;
}

.header-top:hover .social-icons a,
header.scrolled .header-top .social-icons a {
    border-color: black;
}

.header-top:hover .social-icons a img,
header.scrolled .header-top .social-icons a img {
    filter: brightness(0) invert(0);
}

.header-top:hover .social-icons a:hover,
header.scrolled .header-top .social-icons a:hover {
    border-color: #ffdf94;
}
/* Final V Arrow Upgrade */
.header-top .language-switcher::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-45%);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5L7 8.5L10.5 5' stroke='%230D1E3F' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    color: black;
    background-repeat: no-repeat;
}

/* Center logo with proper sizing */
.header-top-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 1000;
        pointer-events: none; /* Allow clicks to pass through */

}

/* Right group absolutely placed */
.header-right {
    

    display: flex;
    align-items: center;
    gap: 10px;
}



/* Left contact absolutely placed */
.header-top-contact {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Montserrat', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.progress-bar {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    animation: loading 2.5s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Fixed Header */
header {
    background: transparent;
    position: fixed; /* Changed back to fixed for proper sticking */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
    padding: 0;
}

.header-top:hover {
    background: white;
    transition: var(--transition-slow);
    color: black;
    
}

.header-top .user-profile .user-icon {
    color: var(--navy);
}

.header-top .user-profile:hover .user-icon:hover {
    color: var(--gold);
        transition: var(--transition-slow);

}

.header-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.header-top::after {
   color: black;
}





/* Fixed Logo Size */
.logo {
    font-family: 'Montserrat', serif;
    color: var(--gold);
    letter-spacing: 3px;
    position: relative;
    transition: var(--transition-medium);
    width: 180px; /* Reduced from 300px for better proportion */
    display: inline-block;
    padding: 8px 10px;
    font-size: 1.8rem; /* Added font size control */
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
}


.logo:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-medium);
}

.logo:hover:after {
 text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-right: 14px;
    color:white;
}

.language-switcher select {
    font-size: 0.92rem;
   font-family: 'Montserrat', serif;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    color:white;
    padding: 6px 20px 6px 4px;
    
}


.language-switcher::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-45%);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5L7 8.5L10.5 5' stroke='%230D1E3F' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* White by default */
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
    transition: all 0.3s ease;
}

/* Hover state - Black */
.language-switcher:hover::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* When header is scrolled - Black */
header.scrolled .language-switcher::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* When header is scrolled and hovered - Black (same as scrolled state) */
header.scrolled .language-switcher:hover::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.language-switcher:hover::after,
.language-switcher select:hover {
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%);
}



/* SOCIAL ICONS TOP RIGHT */
.social-icons {
    
    display: flex;
    gap: 15px;
    z-index: 10;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1.7px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Default: icons appear white */
.social-icons a img {
    width: 20px;
    height: 20px;
filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* On hover: show original icon colors */
.social-icons a:hover img {
    filter: none !important;
}

.social-icons a:hover {
    transform: scale(1.2);
    border:2px solid #c6ab7d !important ;
}

/* Scrolled state for the entire header */
social-icons a:hover img {
    filter: none !important;
}

.social-icons a:hover {
    transform: scale(1.2);
    border:2px solid #c6ab7d !important ;
}

/* Scrolled state for the entire header */
header.scrolled {
    background: var(--gold) ;
}

.header-main.scrolled {
    padding: 10px 40px;
    background: var(--gold) ;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    position: relative;
    padding: 10px 0;
            font-family: 'Montserrat', sans-serif !important;

}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-medium);
}

nav ul li a:hover {
    color: var(--gold) !important;
}

nav ul li a:hover:after {
    width: 100%;
}

.nav-btns {
    display: flex;
    gap: 15px;
}

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--black);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 0;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 0.8rem;
            letter-spacing: 2px;
            transition: all var(--transition-medium);
            border: 1px solid var(--navy);
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
            transition: var(--transition-slow);
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn:hover {
            color: var(--navy);
            background-color: var(--white);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid white;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--navy);
        }

        .btn i {
            margin-left: 10px;
            transition: var(--transition-medium);
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        /* Hero Section with Enhanced Design */
        .hero {
            height: 100vh;
            /* background: linear-gradient(rgba(10, 31, 58, 0.7), rgba(10, 31, 58, 0.7)), url('https://images.unsplash.com/photo-1564507004663-b6dfb3c824d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-attachment: fixed; */
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 150px;
        }
        
        /* NEW: Hero Video Background */
        .hero-video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .hero-video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(1, 1, 1, 0.2), rgba(10, 10, 10, 0.3));
            z-index: 1;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagmonds.png');
            opacity: 0.1;
            animation: backgroundMove 100s linear infinite;
            z-index: 2; /* Above video overlay */
        }

        @keyframes backgroundMove {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 1000px 1000px;
            }
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.2s ease forwards 0.8s;
            margin-bottom: 80px;
            position: relative;
            z-index: 3; /* Above overlay and texture */
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 25px;
            line-height: 1.1;
            font-weight: 300;
            letter-spacing: 2px;
                font-family: 'Montserrat' ;

        }

        .hero h1 span {
            font-weight: 500;
            color: var(--gold);
            position: relative;
            display: inline-block;
                font-family: 'Montserrat' ;

        }

        .hero h1 span:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
                font-family: 'Montserrat' ;

        }

        .hero h1 span:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
    

.hero-booking-widget {
    position: relative;
}

.close-booking-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    background-color: transparent;
    justify-content: center;
}

.close-booking-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}




    .hero-booking-widget {
    background: var(--glass-bgIntense);
    backdrop-filter: blur(150px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid var(--glass-border);
    width: 320px;              /* Fixed width for vertical layout */
    height: 70%;               /* Taller widget */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;    /* Vertical layout */
    justify-content: center;   /* Center the form vertically */
    align-items: center;       /* Center content horizontally */
    position: absolute;
    top: 20%;
    right: 1%;                 /* Right side */
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: var(--transition-medium);
}

.hero-booking-widget:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.booking-form {
    width: 100%;
    display: flex;
    flex-direction: column;    /* Stack forms vertically */
    gap: 25px;                 /* Space between form groups */
    align-items: center;       /* Center the inputs */
}

.booking-form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    text-align: center;        /* Center labels */
}

.form-group input,
.form-group select {
    width: 90%;                /* Inputs slightly narrower than widget */
    padding: 14px;
    font-size: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    transition: all var(--transition-medium);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group button {
    width: 100%;
    margin-top: 10px;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
}

.form-group button:hover {
    background: #d4b980;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198,171,125,0.3);
}

        /* NEW: Fairmont Style Slider */
        .fairmont-slider-section {
            width: 100%;
            padding: 120px 0;
            background-color: var(--white);
            overflow: hidden; /* This will clip the partial slides, which is fine */
        }

        .fairmont-slider {
            width: 100%;
            overflow: visible; /* IMPORTANT: Swiper container needs this */
        }

        .fairmont-slider .swiper-slide {
            width: 70vw; /* Key for the 1 full, 2 partial look */
            max-width: 2100px; /* Max width for a slide */
            height: 70vh; /* Give it a good height */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
            transition: all var(--transition-slow);
            transform: scale(0.85);
            opacity: 0.7;
        }

        .fairmont-slider .swiper-slide-active {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
        }

        .fairmont-slider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fairmont-slider .slide-text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 50px 40px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            color: var(--white);
            transform: translateY(100%);
            transition: all var(--transition-slow) 0.2s;
            opacity: 0;
        }

        .fairmont-slider .swiper-slide-active .slide-text-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .fairmont-slider .slide-text-overlay h3 {
            font-family: 'Montserrat', serif;
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .fairmont-slider .slide-text-overlay p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.9;
        }
        
        /* Enhanced Rooms Slider */
        .rooms-slider {
            position: relative;
            height: 700px;
            overflow: hidden;
            margin: 100px 0;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
        }

        .slide:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10, 31, 58, 0.7) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition-slow);
        }

        .slide.active {
            opacity: 1;
        }

        .slide.active:before {
            opacity: 1;
        }

        .slide-content {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 50px;
            color: var(--white);
            width: 100%;
            transform: translateY(120px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            position: relative;
            z-index: 2;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .slide-content p {
            margin-bottom: 30px;
            max-width: 600px;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .slider-nav {
            position: absolute;
            bottom: 40px;
            right: 40px;
            display: flex;
            gap: 15px;
            z-index: 20;
        }

        .slider-btn {
            width: 60px;
            height: 60px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-medium);
        }

        .slider-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .slider-dots {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 20;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition-medium);
        }

        .slider-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }



.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    
    /* Force horizontal alignment */
    display: flex !important; 
    flex-direction: row !important; 
    align-items: center;
    justify-content: center;
    gap: 15px; /* Spacing between the two buttons */
    
    z-index: 20;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    
    /* Center the icons inside buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Mobile Adjustment to keep them horizontal on small screens too */
@media (max-width: 768px) {
    .slider-nav {
        right: 50%;
        transform: translateX(50%); /* Centers the button group */
        bottom: 20px;
        width: auto; /* Ensures container doesn't stretch to full width */
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
}




/* Mobile Adjustment to keep them on the left on small screens */
@media (max-width: 768px) {
    .slider-nav {
        right: 10px; /* Closer to the edge on mobile */
        bottom: 20px;
        transform: none; /* Removes centering logic from previous step */
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}


        .audio-toggle {
  position: fixed;
  z-index: 2000;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px ;
  
  color: white;

}



/* NEW RULE: Only turn black when hovering the *top* header element */
.header-top:hover .audio-toggle {
    filter: brightness(0) invert(0) !important;
}
/* Make the audio toggle black when hovering the top header area */
.header-top:hover .audio-toggle,
header.scrolled .header-top .audio-toggle {
    filter: brightness(0) invert(0) !important; /* Black */
}
/* The previous rule 'header:hover .audio-toggle' has been removed to prevent the whole header (including header-main) from triggering the black icon color. */



/* FORCE AUDIO TOGGLE TO GOLD ON HOVER (Overrides all scroll/header-hover black states) */

/* The base rule for unscrolled/unhovered header */
.audio-toggle:hover{
        transition: var(--transition-slow);

}



/* FORCE audio toggle to always be black */
.audio-toggle,
.audio-toggle i,
.audio-toggle svg,
.audio-toggle svg path,
.audio-toggle svg circle {
    color: black !important;
    stroke: black !important;
    fill: black !important;
    filter: none !important;
}


/* Audio toggle → gold on hover */
.audio-toggle:hover,
.audio-toggle:hover i,
.audio-toggle:hover svg,
.audio-toggle:hover svg path,
.audio-toggle:hover svg circle {
    color: var(--gold) !important;
    stroke: var(--gold) !important;
    fill: var(--gold) !important;
    filter: none !important;
    transition: color 0.3s ease, stroke 0.3s ease, fill 0.3s ease;
}


/* FIX: Gold on hover EVEN AFTER scrolling */
header.scrolled .audio-toggle:hover,
header.scrolled .audio-toggle:hover i,
header.scrolled .audio-toggle:hover svg,
header.scrolled .audio-toggle:hover svg path,
header.scrolled .audio-toggle:hover svg circle {
    color: var(--gold) !important;
    stroke: var(--gold) !important;
    fill: var(--gold) !important;
    filter: none !important;
}


/* The rule to override the black filter when the header is in the 'scrolled' state */
header.scrolled .audio-toggle:hover,

/* The rule to override the black filter when the parent '.header-top' is hovered */
.header-top:hover .audio-toggle:hover,

/* Target the icon inside, if it has a class like .audio-icon */
.audio-toggle:hover .audio-icon,
header.scrolled .audio-toggle:hover .audio-icon,
.header-top:hover .audio-toggle:hover .audio-icon {
    
    /* 1. Set the color (for font-based icons) */
    color: var(--gold) !important; 
        transition: var(--transition-slow);

    
    /* 2. Apply the gold filter (for SVG/image icons), using the pre-defined filter in your file */
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

/* Optional: Add a subtle scale effect for better visual feedback on direct hover */
.audio-toggle:hover {
    transform: scale(1.1);
    transition: transform var(--transition-slow);
}


/* --- Language Selector Fix --- */

/* FIX: Language selector text color to GOLD on hover in all header states.
   This overrides the 'color: black' rule when the header is scrolled/hovered. */
.language-switcher:hover select,
header.scrolled .language-switcher:hover select {
    color: var(--gold) !important; /* Gold text */
        transition: var(--transition-slow);

}

/* FIX: Language selector arrow color to GOLD on hover in all header states
   by re-applying the gold filter. */
.language-switcher:hover::after,
header.scrolled .language-switcher:hover::after {
    /* This filter turns a white or black SVG/image icon gold (#c6ab7d) */
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

/* Language selector text on hover - gold */
.header-top-contact .language-switcher:hover select,
.header-top-contact:hover .language-switcher:hover select,
header.scrolled .header-top-contact .language-switcher:hover select,
header.scrolled .header-top-contact:hover .language-switcher:hover select {
    color: var(--gold) !important;
}

/* Language selector arrow on hover - gold */
.header-top-contact .language-switcher:hover::after,
.header-top-contact:hover .language-switcher:hover::after,
header.scrolled .header-top-contact .language-switcher:hover::after,
header.scrolled .header-top-contact:hover .language-switcher:hover::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) 
            hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

/* 🏆 FINAL FIX - MAXIMUM SPECIFICITY OVERRIDE */

/* This targets the icon element (be it .audio-icon, an <i>, or an <svg>) 
   when its wrapper (.audio-toggle) is hovered, and the header is scrolled.
   It should override any black or gray color/filter defined by header.scrolled. */

header.scrolled .audio-toggle:hover i,
header.scrolled .audio-toggle:hover .audio-icon,
header.scrolled .audio-toggle:hover svg {
    /* 1. Force the color for font-based icons */
    color: var(--gold) !important; 
    
    /* 2. Force the filter for SVG/image icons */
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

/* If the scale effect was lost, re-add it with high specificity */
header.scrolled .audio-toggle:hover {
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
    transition: var(--transition-slow);

}
/* 👑 ABSOLUTE FINAL OVERRIDE - FOR SPECIFICITY CONFLICTS */

/* This targets the icon using a unique combination of classes and the icon element itself
   to guarantee a specificity score higher than almost anything else. */
header.scrolled .audio-toggle-wrapper-fix .audio-toggle:hover i,
header.scrolled .audio-toggle-wrapper-fix .audio-toggle:hover .audio-icon,
header.scrolled .audio-toggle-wrapper-fix .audio-toggle:hover svg {
    /* 1. Force the color for font-based icons */
    color: var(--gold) !important; 
        transition: var(--transition-slow);

    
    /* 2. Force the filter for SVG/image icons */
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

.audio-icon{
    width:20px !important;
}


.audio-icon.scrolled{
    width:20px !important;
        transition: var(--transition-slow);

}
        /* Enhanced Reviews Section */
        .reviews-section {
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .reviews-section:before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 300px;
            height: 300px;
            background: var(--gold);
            opacity: 0.03;
            border-radius: 50%;
        }

        .reviews-section:after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
            background: var(--navy);
            opacity: 0.03;
            border-radius: 50%;
        }

        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .review-card {
            background: var(--white);
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all var(--transition-medium);
            overflow: hidden;
        }

        .review-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--gold);
            transition: var(--transition-slow);
        }

        .review-card:hover:before {
            height: 100%;
        }

        .review-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .review-card:after {
            content: '"';
            font-family: 'Montserrat', serif;
            font-size: 12rem;
            color: var(--gold);
            position: absolute;
            top: -30px;
            right: 20px;
            line-height: 1;
            opacity: 0.05;
            transition: var(--transition-medium);
        }

        .review-card:hover:after {
            opacity: 0.1;
            transform: scale(1.1);
        }

        .review-text {
            font-style: italic;
            margin-bottom: 30px;
            color: var(--dark-gray);
            line-height: 1.8;
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
        }

        .reviewer {
            display: flex;
            align-items: center;
        }

        .reviewer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 2px solid var(--light-gray);
            transition: var(--transition-medium);
        }

        .review-card:hover .reviewer-avatar {
            border-color: var(--gold);
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-medium);
        }

        .review-card:hover .reviewer-avatar img {
            transform: scale(1.1);
        }

        .reviewer-info h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .reviewer-info p {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        .rating {
            color: var(--gold);
            margin-top: 8px;
            font-size: 0.9rem;
        }

        /* Enhanced FAQ Section */
        .faq-section {
            background-color: var(--black);
            color: var(--white);
            position: relative;
        }

        .faq-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/black-paper.png');
            opacity: 0.1;
        }

        .faq-section .section-title h2 {
            color: var(--white);
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .faq-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
            transition: var(--transition-slow);
        }

        .faq-item:hover:before {
            left: 100%;
        }

        .faq-question {
            padding: 25px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Montserrat', serif;
            font-size: 1.2rem;
            font-weight: 200;
            transition: var(--transition-medium);
        }

        .faq-question:hover {
            color: var(--gold);
        }

        .faq-question i {
            transition: all var(--transition-medium);
            font-size: 1.2rem;
        }

        .faq-answer {
            padding: 0 0 30px 0;
            color: var(--gold);
            line-height: 1.8;
            display: none;
            font-size: 1.05rem;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: fadeIn 0.6s ease forwards;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Enhanced Experience Cards */
        .experience-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 70px;
        }

        .exp-card {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-medium);
            height: 480px;
            position: relative;
            overflow: hidden;
        }

        .exp-card:hover {
            transform: translateY(-15px);
            height: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .exp-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, var(--navy) 100%);
            opacity: 0;
            z-index: 1;
            transition: var(--transition-slow);
        }

        .exp-card:hover:before {
            opacity: 0.8;
        }

        .exp-card-img {
            height: 270px;
            background-size: cover;
            background-position: center;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .exp-card:hover .exp-card-img {
            transform: scale(1.1);
        }

        .exp-card-content {
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .exp-card-content h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 15px;
            transition: var(--transition-medium);
        }

        .exp-card:hover .exp-card-content h3 {
            color: var(--white);
        }

        .exp-card-content p {
            color: var(--medium-gray);
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.7;
            transition: var(--transition-medium);
        }

        .exp-card:hover .exp-card-content p {
            color: rgba(255, 255, 255, 0.8);
        }

        .exp-card-content .btn {
            opacity: 0;
            transform: translateY(10px);
            transition: all var(--transition-medium);
        }

        .exp-card:hover .exp-card-content .btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Text Highlight Section */
        .text-highlight {
            background-color: var(--black) !important;
            color: var(--white);
            padding: 150px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .text-highlight:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black !important;
            opacity: 0.1;
        }

        .text-highlight h2 {
            font-size: 3.2rem;
            max-width: 900px;
            margin: 0 auto 50px;
            font-weight: 300;
            line-height: 1.4;
            position: relative;
            z-index: 2;
        }

        .text-highlight h2 span {
            color: var(--gold);
            font-weight: 500;
            position: relative;
        }

        .text-highlight h2 span:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .text-highlight h2 span:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .text-highlight p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Two Column Section */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .column-content h2 {
            font-size: 2.8rem;
            color: var(--navy);
            margin-bottom: 35px;
            line-height: 1.3;
            font-weight: 500;
        }

        .column-content p {
            color: var(--medium-gray);
            margin-bottom: 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .column-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            position: relative;
        }

        .column-images:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid var(--gold);
            z-index: -1;
            opacity: 0.5;
        }

        .column-images img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all var(--transition-medium);
            filter: grayscale(20%);
        }

        .column-images img:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
            filter: grayscale(0%);
        }

        /* Enhanced Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .service-card {
            text-align: center;
            padding: 50px 30px;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-medium);
            position: relative;
            overflow: hidden;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gold);
            z-index: 0;
            transition: var(--transition-slow);
        }

        .service-card:hover:before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            font-size: 50px;
            color: var(--black);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            transition: var(--transition-medium);
        }

        .service-card:hover .service-icon {
            color: var(--white);
            transform: scale(1.1) translateY(-5px);
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: var(--navy);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            transition: var(--transition-medium);
        }

        .service-card:hover h3 {
            color: var(--white);
        }

        .service-card p {
            color: var(--medium-gray);
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
            transition: var(--transition-medium);
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Enhanced Happenings Section */
        .happenings {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .happenings-content h2 {
            font-size: 2.8rem;
            color: var(--navy);
            margin-bottom: 35px;
            font-weight: 500;
        }

        .happenings-content p {
            color: var(--medium-gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .happenings-image {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        .happenings-image:before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: 15px;
            bottom: 15px;
            border: 1px solid var(--gold);
            z-index: -1;
            opacity: 0.5;
        }

        .happenings-image img {
            width: 100%;
            display: block;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: grayscale(20%);
        }

        .happenings-image:hover img {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        /* Enhanced Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
        }

        .contact-card {
            padding: 50px 40px;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--gold);
            transition: all var(--transition-medium);
            position: relative;
            overflow: hidden;
        }

        .contact-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(198, 171, 125, 0.05), transparent);
            transition: var(--transition-slow);
        }

        .contact-card:hover:before {
            left: 100%;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .contact-card h3 {
            font-size: 1.7rem;
            color: var(--navy);
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .contact-info {
            margin-bottom: 30px;
        }

        .contact-info h4 {
            color: var(--navy);
            margin-bottom: 12px;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .contact-info p {
            color: var(--medium-gray);
            margin-bottom: 10px;
            transition: var(--transition-medium);
        }

        .contact-info p:hover {
            color: var(--navy);
        }

        /* Enhanced Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 120px 0 50px;
            position: relative;
            overflow: hidden;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/black-paper.png');
            opacity: 0.1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Montserrat', serif;
            font-weight: 500;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
            transition: var(--transition-medium);
        }

        .footer-column:hover h3:after {
            width: 80px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-column ul li i {
            margin-right: 15px;
            color: var(--gold);
            font-size: 0.9rem;
            width: 16px;
        }

        .footer-column ul li a {
            color: var(--light-gray);
            transition: all var(--transition-fast);
            font-family: 'Montserrat', sans-serif;
            position: relative;
        }

        .footer-column ul li a:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: var(--transition-medium);
        }

        .footer-column ul li a:hover {
            color: var(--gold);
        }

        .footer-column ul li a:hover:after {
            width: 100%;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--light-gray);
            position: relative;
            z-index: 2;
        }

        .footer::before{
            background-color: black !important;
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--navy);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-medium);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: var(--gold);
            transform: translateY(-5px);
        }


        
        /* Particles background */
        .particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* NEW STYLES FOR ADDED FEATURES */

        /* User Profile Dropdown */
        .user-profile {
            position: relative;
            cursor: pointer;
        }

        .user-icon {
            font-size: 1.5rem;
            transition: var(--transition-fast);
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all var(--transition-medium);
            z-index: 9999;
        }

        .user-profile.active .user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .user-dropdown a {
            display: block;
            color: var(--navy);
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-fast);
        }

        .user-dropdown a:last-child {
            border-bottom: none;
        }

        .user-dropdown a:hover {
            color: var(--gold);
        }

        /* Modal Styles for Login and Signup */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 20, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-medium);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--white);
            width: 90%;
            max-width: 500px;
            padding: 50px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: translateY(30px);
            transition: all var(--transition-medium);
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--medium-gray);
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .close-modal:hover {
            color: var(--navy);
        }

        .modal h2 {
            color: var(--navy);
            margin-bottom: 30px;
            text-align: center;
            font-size: 2.2rem;
        }

        .modal .form-group {
            margin-bottom: 25px;
        }

        .modal label {
            color: var(--navy);
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--light-gray);
            color: var(--dark-gray);
            font-family: 'Montserrat', sans-serif;
            transition: all var(--transition-medium);
        }

        .modal input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .modal .btn {
            width: 100%;
            margin-top: 10px;
        }

        .modal-footer {
            text-align: center;
            margin-top: 30px;
            color: var(--medium-gray);
        }

        .modal-footer a {
            color: var(--gold);
            font-weight: 500;
            transition: var(--transition-fast);
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        /* Discover Hotel Slider */
        .discover-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
            margin: 80px 0;
        }

        .discover-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .discover-slide:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 58, 0.6);
            opacity: 0;
            transition: var(--transition-slow);
        }

        .discover-slide.active {
            opacity: 1;
        }

        .discover-slide.active:before {
            opacity: 1;
        }

        .discover-content {
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 40px;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            position: relative;
            z-index: 2;
        }

        .discover-slide.active .discover-content {
            transform: translateY(0);
            opacity: 1;
        }

        .discover-content h3 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .discover-content p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* Payment Gateways Section */
        .payment-section {
            background: var(--light-gray);
            padding: 100px 0;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 60px;
        }

        .payment-method {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-medium);
            width: 150px;
            text-align: center;
        }

        .payment-method:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .payment-icon {
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .payment-method h4 {
            font-size: 1rem;
            color: var(--navy);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        /* Partners Slider Section */
        .partners-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .partners-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin-top: 60px;
            -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
            mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
        }

        .partners-slide-track {
            display: flex;
            width: calc(250px * 16);
            /* 250px per logo * 8 logos * 2 for seamless loop */
            animation: scroll 40s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 8));
            }
        }

        .partner-logo-slide {
            height: 100px;
            width: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
        }

        .partner-logo-slide img {
            max-height: 80px;
            max-width: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition-medium);
        }

        .partner-logo-slide:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Rooms Page Specific Styles */
        .page-hero {
            height: 60vh;
            background: linear-gradient(rgba(10, 31, 58, 0.7), rgba(10, 31, 58, 0.7)), url('https://images.unsplash.com/photo-1564507004663-b6dfb3c824d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .page-hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 300;
                font-family: 'Montserrat' ;

        }

        .page-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            font-weight: 300;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .room-card {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-medium);
            overflow: hidden;
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .room-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            transition: var(--transition-medium);
        }

        .room-card:hover .room-image {
            transform: scale(1.05);
        }

        .room-content {
            padding: 30px;
        }

        .room-content h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .room-price {
            color: var(--gold);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            font-family: 'Montserrat', serif;
        }

        .room-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .room-features li {
            margin-bottom: 10px;
            color: var(--medium-gray);
            display: flex;
            align-items: center;
        }

        .room-features li i {
            margin-right: 10px;
            color: var(--gold);
        }

        .search-filters {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 60px;
        }

        .filter-group {
            margin-bottom: 25px;
        }

        .filter-group h3 {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filter-option {
            padding: 10px 20px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 30px;
            cursor: pointer;
            transition: all var(--transition-medium);
        }

        .filter-option.active,
        .filter-option:hover {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
        }

        /* About Us Page Styles */
        .about-hero {
            height: 60vh;
            background: linear-gradient(rgba(10, 31, 58, 0.7), rgba(10, 31, 58, 0.7)), url('https://images.unsplash.com/photo-1564507004663-b6dfb3c824d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .about-hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 300;
                font-family: 'Montserrat' ;

        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            font-weight: 300;
        }

        .history-section {
            padding: 100px 0;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 100px auto 0;
        }

        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: var(--gold);
            transform: translateX(-50%);
        }

        .timeline-item {
            padding: 10px 50px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 30px;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .timeline-content:before {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: var(--gold);
            border-radius: 50%;
        }

        .timeline-item:nth-child(odd) .timeline-content:before {
            right: -50px;
        }

        .timeline-item:nth-child(even) .timeline-content:before {
            left: -50px;
        }

        .timeline-year {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .map-container {
            height: 500px;
            margin-top: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .social-media-section {
            background: var(--light-gray);
            padding: 100px 0;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .social-card {
            background: var(--white);
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-medium);
            border-top: 4px solid var(--gold);
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .social-icon {
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .social-card h3 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .social-card p {
            color: var(--medium-gray);
            margin-bottom: 25px;
        }

        /* Dining Page Styles */
        .restaurant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .restaurant-card {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-medium);
            overflow: hidden;
            position: relative;
        }

        .restaurant-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .restaurant-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            transition: var(--transition-medium);
        }

        .restaurant-card:hover .restaurant-image {
            transform: scale(1.05);
        }

        .restaurant-content {
            padding: 30px;
        }

        .restaurant-content h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .restaurant-cuisine {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .restaurant-description {
            color: var(--medium-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .restaurant-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .restaurant-detail {
            display: flex;
            align-items: center;
            color: var(--medium-gray);
        }

        .restaurant-detail i {
            margin-right: 8px;
            color: var(--gold);
        }

        /* New Fairmont-style Gallery */
        .gallery-section {
            padding: 120px 0;
            background-color: #f8f8f8;
            height: 1400px !important;
        }

        .gallery-grid-fairmont {
            display: grid;
            grid-gap: 1.5rem;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 250px;
            width: 100%;
            margin: 0 auto;
        }

        .gallery-item-fairmont {
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform var(--transition-medium);
        }

        .gallery-item-fairmont:hover {
            transform: scale(1.03);
        }

        .gallery-item-fairmont--h-2 {
            grid-row: span 2;
        }

        .gallery-item-fairmont--w-2 {
            grid-column: span 2;
        }

        .gallery-item-fairmont:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        .gallery-item-fairmont:nth-child(2) {
            grid-column: 3 / 4;
            grid-row: 1 / 2;
        }

        .gallery-item-fairmont:nth-child(3) {
            grid-column: 4 / 5;
            grid-row: 1 / 3;
        }

        .gallery-item-fairmont:nth-child(4) {
            grid-column: 1 / 2;
            grid-row: 3 / 5;
        }

        .gallery-item-fairmont:nth-child(5) {
            grid-column: 2 / 4;
            grid-row: 3 / 4;
        }

        .gallery-item-fairmont:nth-child(6) {
            grid-column: 4 / 5;
            grid-row: 3 / 4;
        }

        .gallery-item-fairmont:nth-child(7) {
            grid-column: 2 / 3;
            grid-row: 4 / 5;
        }

        .gallery-item-fairmont:nth-child(8) {
            grid-column: 3 / 5;
            grid-row: 4 / 5;
        }

        .gallery-item-fairmont img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item-fairmont:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 31, 58, 0.8), transparent);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            opacity: 0;
            transition: all var(--transition-medium);
            color: white;
            padding: 30px;
            text-align: left;
        }

        .gallery-item-fairmont:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            font-size: 1.8rem;
            transform: translateY(20px);
            transition: all var(--transition-medium) 0.1s;
        }

        .gallery-overlay p {
            font-size: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all var(--transition-medium) 0.2s;
            color: var(--light-gray);
        }

        .gallery-item-fairmont:hover .gallery-overlay h3,
        .gallery-item-fairmont:hover .gallery-overlay p {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 60px;
        }

        .gallery-category {
            padding: 12px 25px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 0px;
            cursor: pointer;
            transition: all var(--transition-medium);
            font-weight: 500;
            color: var(--black);
        }

        .gallery-category.active{
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }
       
       
        .gallery-category:hover {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }

        /* Fairmont Style Loyalty Program */
        .loyalty-section {
            background: var(--white);
        }

        .loyalty-tiers-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 60px;
        }

        .loyalty-tier-card {
            background: var(--white);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            display: flex;
            overflow: hidden;
            transition: all var(--transition-medium);
        }

        .loyalty-tier-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .tier-header {
            flex-basis: 300px;
            flex-shrink: 0;
            padding: 40px;
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .tier-header.silver {
            background-color: #aeb4b8;
        }

        .tier-header.gold {
            background-color: #d4af37;
        }

        .tier-header.platinum {
            background-color: var(--navy);
        }

        .tier-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .tier-header h3 {
            font-size: 2.5rem;
            line-height: 1.2;
            font-family: 'Montserrat', serif;
        }

        .tier-body {
            padding: 40px;
            flex-grow: 1;
        }

        .tier-body h4 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .tier-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .tier-body ul li {
            color: var(--medium-gray);
            display: flex;
            align-items: center;
        }

        .tier-body ul li i {
            color: var(--gold);
            margin-right: 12px;
        }

        /* Page Navigation */
        .page-navigation {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .page-nav-item {
            padding: 12px 20px;
            margin: 0 5px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            cursor: pointer;
            transition: all var(--transition-medium);
        }

        .page-nav-item.active,
        .page-nav-item:hover {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4.2rem;
            }

            .two-column,
            .happenings {
                gap: 60px;
            }

            .gallery-grid-fairmont {
                grid-template-columns: repeat(3, 1fr);
                grid-auto-rows: 200px;
            }

            .gallery-item-fairmont:nth-child(n) {
                grid-column: auto;
                grid-row: auto;
            }

            /* Reset grid placement */
        }

        @media (max-width: 992px) {

            .header-top,
            .header-main {
                padding: 10px 25px;
            }

            nav ul {
                gap: 20px;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .booking-form {
                grid-template-columns: 1fr 1fr;
            }
            
            .fairmont-slider .swiper-slide {
                width: 80vw; /* Increase width on tablets */
                height: 60vh;
            }

            .two-column,
            .happenings {
                grid-template-columns: 1fr;
            }

            .column-images {
                margin-top: 50px;
            }

            .happenings-image {
                margin-top: 50px;
            }

            .rooms-slider {
                height: 600px;
            }

            .slide-content {
                padding: 40px;
            }

            .timeline:before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 20px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item:nth-child(odd) .timeline-content:before,
            .timeline-item:nth-child(even) .timeline-content:before {
                left: -50px;
            }

            .restaurant-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid-fairmont {
                grid-template-columns: repeat(2, 1fr);
            }

            .loyalty-tier-card {
                flex-direction: column;
            }

            .tier-header {
                flex-basis: auto;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }

            .header-main {
                flex-direction: column;
                gap: 20px;
                padding: 15px 25px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
                
            }

            .hero-content {
                padding: 0 25px;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section {
                padding: 100px 0;
            }

            .section-title h2 {
                font-size: 2.8rem;
            }

            .booking-form {
                grid-template-columns: 1fr;
            }

            .hero-booking-widget {
                padding: 30px;
            }

            .fairmont-slider .swiper-slide {
                width: 85vw; /* Even wider on mobile */
                height: 55vh;
            }

            .fairmont-slider .slide-text-overlay h3 {
                font-size: 2rem;
            }
            .fairmont-slider .slide-text-overlay p {
                font-size: 1rem;
            }

            .rooms-slider {
                height: 500px;
            }

            .slide-content {
                padding: 30px;
            }

            .slide-content h3 {
                font-size: 2rem;
            }

            .reviews-container {
                grid-template-columns: 1fr;
            }

            .text-highlight h2 {
                font-size: 2.5rem;
            }

            .discover-content h3 {
                font-size: 2.5rem;
            }

            .about-hero h1 {
                font-size: 3rem;
            }

            .page-hero h1 {
                font-size: 2.8rem;
            }

            .gallery-grid-fairmont {
                grid-template-columns: 1fr;
            }

            .tier-body ul {
                grid-template-columns: 1fr;
            }

        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2.3rem;
            }

            .rooms-slider {
                height: 450px;
            }

            .slide-content {
                padding: 25px;
            }

            .slide-content h3 {
                font-size: 1.8rem;
            }

            .text-highlight h2 {
                font-size: 2rem;
            }

            .header-top-center {
                flex-direction: column;
                gap: 10px;
            }

            .faq-question {
                font-size: 1.3rem;
            }

            .exp-card,
            .review-card,
            .contact-card {
                padding: 10px 15px;
            }

            .discover-content h3 {
                font-size: 2rem;
            }

            .about-hero h1 {
                font-size: 2.5rem;
            }

            .page-hero h1 {
                font-size: 2.3rem;
            }

            .modal-content {
                padding: 30px;
            }
        }



/* CSS Styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #f5f5f0;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
}

/* ===== HERO CONTAINER ===== */
.hero-container {
  position: relative;
  height: 100vh;
  background: #f5f5f0;
  overflow: hidden;
}

/* Top Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 99999;
  background: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(10px);
}

.hamburger,
.lang-book {
  flex: 0 0 auto;
}

/* Center brand absolutely */
.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
            font-family: 'Montserrat', serif;
}

.lang-book {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang {
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.lang:hover {
  color: #333;
}

.separator {
  color: #ccc;
}

.book-btn {
  background: #8b8378;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: lowercase;
}

.book-btn:hover {
  background: #6d6459;
  transform: translateY(-2px);
}

/* Social Icons - Left Side */
.social-icons-left {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 100;
}

.social-icons-left a {
  color: #666;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icons-left a:hover {
  color: #333;
  transform: translateX(5px);
}

/* Video Wrapper */
.video-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.ethereal {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: white;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
            font-family: 'Montserrat', serif;

}




/* Left Content Area */
.left-content {
  position: absolute;
  left: 8%;
  top: 35%;
  z-index: 50;
}

.look-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.look-word {
  font-size: 10rem;
  font-weight: 300;
  line-height: 0.85;
  color: #b8b5ad;
  letter-spacing: -5px;
  font-family: 'Montserrat', sans-serif;
}

.find-word {
  font-size: 2.5rem;
  font-weight: 300;
  color: #8b8378;
  letter-spacing: 2px;
  margin-top: -15px;
  padding-left: 5px;
}

.beyond-text {
  font-size: 2rem;
  font-weight: 300;
  color: #666;
  letter-spacing: 3px;
  margin-top: 10px;
}



/* True Perfection - Bottom Center */
.true-perfection {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 50;
}

.true-perfection h2 {
  font-size: 4rem;
  font-weight: 300;
  color: #b8b5ad;
  letter-spacing: 12px;
  text-transform: uppercase;
}

/* Bottom Icons */
.email-icon, .chat-icon {
  position: fixed;
  bottom: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(139, 131, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 100;
}

.email-icon {
  left: 40px;
}

.chat-icon {
  right: 40px;
}

.email-icon i, .chat-icon i {
  font-size: 1.2rem;
  color: #666;
}

.email-icon:hover, .chat-icon:hover {
  background: #8b8378;
  transform: translateY(-3px);
}

.email-icon:hover i, .chat-icon:hover i {
  color: white;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c6ab7d, #d4c5a8);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 99999;
  box-shadow: 0 2px 10px rgba(198, 171, 125, 0.5);
}

.morph-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 171, 125, 0.15), transparent);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  animation: rotate 20s linear infinite;
  top: 20%;
  right: 10%;
  z-index: 1;
}

/* Performance optimizations */
.exp-card, .review-card, .room-card,
.gallery-item, .vision-img,
nav ul li, .btn {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}




.ripple-effect {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 2px solid #c6ab7d;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.breathing-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 50%, 
    rgba(0, 0, 0, 0.1) 0%, 
    transparent 50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.section {
  position: relative;
  overflow: hidden;
}

.spotlight-follow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, 
    rgba(198, 171, 125, 0.15) 0%, 
    transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(40px);
  mix-blend-mode: screen;
}

.floating-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #c6ab7d;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(198, 171, 125, 0.5);
}
.burst-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #c6ab7d, #d4c5a8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 0 10px rgba(198, 171, 125, 0.8);
}
.typing-cursor {
  color: #c6ab7d;
  font-weight: bold;
  margin-left: 2px;
}
.iris-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, 
    rgba(198, 171, 125, 0.1) 0%, 
    rgba(198, 171, 125, 0.3) 40%,
    rgba(139, 131, 120, 0.6) 100%);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
}

/* Add subtle eyelash effect */
.eyelid::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(198, 171, 125, 0.4) 50%, 
    transparent 100%);
}

.eyelid-top::after {
  bottom: 0;
}

.eyelid-bottom::after {
  top: 0;
}

/* Disable animations on low-performance devices */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  position: relative;
  height: auto !important;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
}


.exp-card, .review-card, .room-card {
  transform-style: preserve-3d;
  position: relative;
  overflow: visible !important;
}

.card-shine {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(198, 171, 125, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
  filter: blur(20px);
}
.gallery-title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: rgb(0, 0, 0);
  letter-spacing: 3px;
   font-family: 'Montserrat', serif;
}



.gallery-track {
  display: flex;
  gap: 30px;
  height: 100%;
  align-items: center;
  will-change: transform;
  padding: 0 10vw;

}

.gallery-item {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  margin-inline: 40px;
  margin-top: 30px;

}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.portrait {
  width: 30vw;
  height: 80vh;
}

.gallery-item.landscape {
  width: 55vw;
  height: 60vh;
}



.audio-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left:140px;
    filter: brightness(0) invert(1);

}

.speaker-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    filter: brightness(0) invert(1);

}

.audio-toggle.scrolled{
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: black

}

.audio-toggle:hover .speaker-icon {
    transform: scale(1.2);
    filter: none
}









.vision-section {
  min-height: 350vh; /* you already have this */
  position: relative;
  padding-top: 200px; /* add enough top padding for pinning */
    overflow: hidden;   /* prevent any pseudo-element overflow */

}

#vision2,
#vision3 {
  min-height: 320vh;
}

.vision-content {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding: 20px;

}

.vision-content-right{
      display: flex;
  justify-content: space-between;
  gap: 70px;
  padding: 200px;
    flex-direction: row-reverse;

}

.vision-text-wrapper {
  width: 35%;
  padding-top: 15vh;
  align-self: flex-start;
}

.vision-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
  color: rgb(0, 0, 0);
            font-family: 'Montserrat', serif;

}

.vision-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
  margin-right:30px;
            font-family: 'Montserrat', serif;
}

.vision-images {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 150px;

}
/* Add this to your main stylesheet */

.vision-img video {
  /* Inherit general image styles for layout */
  display: block;
  width: 60%;
  height: 70%;
  /* Essential for covering the container and centering the content */
  object-fit: cover;
  /* Ensure no extra padding/border issues */
  margin: 0;
  padding: 0;
}

/* Specific centering for portrait videos, if needed (often handled by object-fit: cover) */
.vision-img.portrait-group {
  /* This ensures the container itself can center the video if it's smaller, 
     though `object-fit: cover` is usually enough if the video is 100% width/height */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  overflow: hidden; /* Prevent video overflow */
}

.vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-img.landscape-group {
  height: auto;
}

.vision-img.landscape-group img {
  height: 60vh;
  margin-bottom: 15px;
}



.vision-img.portrait-group img {
  width: calc(50% - 10px);
  height: 70vh;
  margin-bottom: 0;
}

.image-description {
  display: block;
  text-align: left;
  font-size: 1.4em;
  font-weight: bolder;
  color: rgb(0, 0, 0);
  padding: 0 20px;
            font-family: 'Montserrat', serif;
  margin-top: 15px;
}




/* Responsive Design */
@media (max-width: 1024px) {
  .look-word {
    font-size: 7rem;
  }
  
  .true-perfection h2 {
    font-size: 3rem;
  }
  
  .mountain-image {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .look-word {
    font-size: 5rem;
    margin-bottom: 20px;
  }
  
  .beyond-text {
    font-size: 1.5rem;
    margin-top: 10px;
  }


  .true-perfection h2 {
    font-size: 2rem;
  }
  
 
}

/* Enhanced styles for animations */
.img-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  z-index: 1;
}

/* Ensure 3D transforms work smoothly */
.gallery-item,
.vision-img,
.social-icons-left a {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Smooth transitions for interactive elements */
.lang, .book-btn, .hamburger span {
  transition: all 0.3s ease;
}

/* Enhanced vision text styling */
.vision-text p {
  position: relative;
  margin-bottom: 2rem;
}


.text-section {
  width: 40%;
  padding: 50px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
.media-section {
  width: 60%;
  overflow: hidden;
  display: flex;          /* <-- add this */
  flex-wrap: nowrap;      /* <-- horizontal layout */
  position: relative;
  height:300vh !important;
}

.media-wrapper {
  min-width: 100%;        /* <-- each wrapper takes full container width */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-wrapper video,
.media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* cover the container */
  display: block;
}


/* Disable animations on mobile */
@media (max-width: 767px) {
  /* Stop all GSAP animations */
  .vision-section {
    animation: none !important;
    transition: none !important;
  }
  
  /* Remove transforms and pins */
  .vision-text-wrapper {
    position: relative !important;
    transform: none !important;
    top: auto !important;
  }
  
  /* Stack layout */
  .vision-content,
  .vision-content-right {
    display: block !important;
  }
  
  .vision-images {
    display: block !important;
  }
  
  .vision-img {
    margin-bottom: 20px;
    display: block !important;
  }
}

/* Navigation booking button */
.booking-toggle-item {
    margin-left: auto !important;
}

.toggle-booking-nav {
    background: transparent !important;
    border: 0.5px solid var(--white) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    font-size: 0.7rem !important;
    margin-left: 20px;
}

.toggle-booking-nav:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    border: 0.5px solid var(--gold) !important;
}

/* Keep the floating toggle button styles but make it hidden */
.toggle-booking {
    display: none !important; /* Hide the floating one since we have it in nav now */
}

#gallery-section.section.gallery-section {
    height: auto !important;
    min-height: 100vh !important;
    padding: 120px 0 !important;
}




.footer::before{
    background:black !important;
}

.fotter{background-color: black !important;}

.text-highlight::before{

    background-color: black;
}


/* Language switcher hover - gold */
.language-switcher:hover select {
    color: #c6ab7d;
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;

}

/* Language switcher arrow hover - gold */
.language-switcher:hover::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

/* Account text hover - gold */
.user-profile:hover .account-text {
    color: #c6ab7d !important;
}

/* Account icon hover - gold */
.user-profile:hover .user-icon svg,
.user-profile:hover .user-icon svg path,
.user-profile:hover .user-icon svg circle {
    stroke: #c6ab7d !important;
    color: #c6ab7d !important;
}

li a[data-translate="dining"] {
    cursor: pointer;
}


/* Minimal Room Images Popup */
.minimal-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.minimal-popup.active {
  display: block;
}

.minimal-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:black;
  backdrop-filter: blur(5px);
}

.minimal-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  opacity: 0.7;
}

.minimal-close-btn:hover {
  opacity: 1;
}

.minimal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 20px;
  opacity: 0.7;
}

.minimal-nav-btn:hover {
  opacity: 1;
}

.minimal-prev-btn {
  left: 20px;
}

.minimal-next-btn {
  right: 20px;
}

.minimal-slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.minimal-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

.minimal-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimal-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.minimal-slider-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.7;
}

.minimal-slash {
  margin: 0 5px;
}


/* Fix Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s ease-out;
  pointer-events: none;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: 'Montserrat', serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 30px;
  animation: preloaderPulse 2s infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.progress-bar {
  width: 300px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loading 2.5s ease-in-out forwards;
}

@keyframes loading {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Lazy Loading Styles */
.lazy-media {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-media.loaded {
  opacity: 1;
}

.lazy-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Optimize images */
img {
  max-width: 100%;
  height: auto;
}

/* Critical CSS - Load above the fold content first */
.hero-container,
.header-top,
.header-main {
  will-change: transform;
}

/* Minimal Popup Styles */
.minimal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.minimal-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.minimal-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.minimal-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.minimal-close-btn:hover {
  opacity: 1;
}

.minimal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 20px;
  z-index: 10;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.minimal-nav-btn:hover {
  opacity: 1;
}

.minimal-prev-btn {
  left: 20px;
}

.minimal-next-btn {
  right: 20px;
}

.minimal-slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.minimal-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimal-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.minimal-slider-info {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Mobile touch improvements */
@media (max-width: 768px) {
  .minimal-nav-btn {
    padding: 15px;
  }
  
  .minimal-popup-content {
    width: 95%;
    height: 85vh;
  }
}



/* Set video wrapper to minimized state from the start */
.video-wrapper {
    position: absolute;
    top: 30vh;
    left: 45.8vw;
    width: 52vw;
    height: 32vh;
    transform: none !important;
    border-radius: 0 !important;
    overflow: hidden;
    z-index: 1;
}

/* Adjust the center overlay initial state */
.center-overlay {
    opacity: 0 !important; /* Start hidden since we want it minimized */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Adjust left content positioning */
.left-content {
    position: absolute;
    left: 4vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

/* Adjust true perfection positioning */
.true-perfection {
    position: absolute;
    right: 4vw;
    bottom: 10vh;
    z-index: 3;
}



/* Set header to always be in scrolled state */
#header {
    background: white !important;
}

.header-top {
    background: white !important;
    color: black !important;
}

.header-top .language-switcher select {
    color: black !important;
}

.header-top .account-text {
    color: black !important;
}

.header-top .user-icon svg path,
.header-top .user-icon svg circle {
    stroke: black !important;
}

.header-top .social-icons a {
    border-color: black !important;
}

.header-top .social-icons a img {
    filter: brightness(0) invert(0) !important;
}

/* Language switcher arrow - black by default */
.language-switcher::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%) !important;
}

/* Audio toggle - black by default */
.audio-toggle .audio-icon {
    filter: brightness(0) invert(0) !important;
}

/* Main navigation - always scrolled */
.header-main {
    background: black !important;
    padding: 10px 20px !important;
}

nav ul li a {
    color: white !important; /* Navigation links stay white on black background */
}

nav ul li a:hover {
    color: var(--gold) !important;
}

/* Remove hover effects that change to white */
.header-top:hover {
    background: white !important;
    color: var(--gold) !important;
}

.header-top:hover .social-icons a img {
    filter: brightness(0) invert(0) !important;
}

/* Keep gold hover effects */
.header-top .user-icon:hover .account-text,
.header-top:hover .user-icon:hover .account-text {
    color: var(--gold) !important;
}

.header-top .user-icon:hover svg path,
.header-top .user-icon:hover svg circle,
.header-top:hover .user-icon:hover svg path,
.header-top:hover .user-icon:hover svg circle {
    stroke: var(--gold) !important;
}

.language-switcher:hover select {
    color: var(--gold) !important;
}

.language-switcher:hover::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

.audio-toggle:hover .audio-icon {
    filter: brightness(0) saturate(100%) invert(73%) sepia(23%) saturate(536%) hue-rotate(359deg) brightness(93%) contrast(88%) !important;
}

.social-icons a:hover {
    border-color: var(--gold) !important;
}

.social-icons a:hover img {
    filter: none !important;
}





/* Add to your main.css - Mobile Optimizations */

/* ============================================
   MOBILE HEADER - Logo + Hamburger Only
============================================ */

/* Show mobile header only on mobile */
.mobile-header {
    display: none;
}

/* Desktop header - hide on mobile */
@media (max-width: 992px) {
    /* Hide desktop header on mobile */
    #header {
        display: none !important;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: white;
        z-index: 1000;
        padding: 0 20px;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    /* Mobile logo */
    .mobile-logo {
        height: 60px;
        display: flex;
        align-items: center;
    }
    
    .mobile-logo img {
        height: 100%;
        width: auto;
    }
    
   .hamburger-menu {
    width: 35px;
    height: 16px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
    transform: scale(0.7);
}

.hamburger-menu.active {
    transform: scale(0.45); /* Scale down when active */
}
    
    .hamburger-menu span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: black;
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.25s ease-in-out;
    }
    
    .hamburger-menu span:nth-child(1) {
        top: 0px;
    }
    
    .hamburger-menu span:nth-child(2) {
        top: 9px;
    }
    
    .hamburger-menu span:nth-child(3) {
        top: 18px;
    }
    
    /* Hamburger menu active state */
    .hamburger-menu.active span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        top: 9px;
        transform: rotate(-45deg);
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu content */
    .mobile-menu-content {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 30px 20px;
        background: black;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateY(0);
    }
    
    /* Mobile menu list */
    .mobile-menu-list {
        list-style: none;
    }
    
    .mobile-menu-list li {
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active .mobile-menu-list li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Add delay for each menu item */
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.3s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.35s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(7) { transition-delay: 0.4s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(8) { transition-delay: 0.45s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(9) { transition-delay: 0.5s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(10) { transition-delay: 0.55s; }
    


    /* Fix for rooms slider links */

/* Ensure slide content has higher z-index and is clickable */
.rooms-slider .slide {
    position: relative;
    z-index: 1;
}

.rooms-slider .slide.active {
    z-index: 2;
}

.rooms-slider .slide-content {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

/* Make sure links are clickable */
.rooms-slider .slide-content a {
    position: relative;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto !important;
    display: inline-block; /* Ensure the link has proper dimensions */
}

/* Fix slider navigation - lower z-index so it doesn't block links */
.slider-nav {
    z-index: 5 !important; /* Lower than the links (which should be 20) */
}

.slider-btn {
    pointer-events: auto;
    z-index: 6;
}


.btn btn-outline explore-link{
    z-index: 1000;
}

/* Fix for rooms slider links - Make sure links are clickable */
.rooms-slider .slide {
    position: relative;
    z-index: 1;
}

.rooms-slider .slide.active {
    z-index: 10;
}

.rooms-slider .slide-content {
    position: relative;
    z-index: 20;
    pointer-events: none; /* Allow clicks to pass through to links */
}

.rooms-slider .slide-content a.btn,
.rooms-slider .slide-content a {
    position: relative;
    z-index: 30;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block;
    position: relative;
}

/* Ensure the link is above any overlays */
.rooms-slider .slide:before {
    pointer-events: none; /* Don't block clicks */
}

/* Fix slider navigation - lower z-index so it doesn't block links */
.slider-nav {
    z-index: 15 !important;
}

.slider-btn {
    pointer-events: auto;
    z-index: 16;
}

/* Ensure the explore button is visible and clickable on hover */
.rooms-slider .slide-content a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Fix for any potential overlapping issues */
.rooms-slider {
    position: relative;
    pointer-events: auto;
}
/* Ultimate fix for explore suite links */
.rooms-slider .slide-content a,
.rooms-slider .slide-content .btn,
.rooms-slider .slide-content .btn-outline,
.rooms-slider .slide-content [data-explore-btn],
.rooms-slider .slide-content [routerLink] {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Make sure the slide doesn't block clicks */
.rooms-slider .slide,
.rooms-slider .slide-content {
    pointer-events: none;
}

/* But allow clicks on the links inside */
.rooms-slider .slide-content a,
.rooms-slider .slide-content button,
.rooms-slider .slide-content .btn {
    pointer-events: auto !important;
}

/* Ensure the slider navigation is clickable but doesn't block */
.slider-nav,
.slider-btn {
    pointer-events: auto !important;
    z-index: 1000 !important;
}

/* Debug - add a visual indicator when hovering clickable elements */
.rooms-slider .slide-content a:hover {
    background-color: var(--gold) !important;
    color: var(--black) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}
/* Ensure the slider container doesn't block clicks */
.rooms-slider {
    position: relative;
    pointer-events: auto;
}

/* Add hover effect to make it obvious links are clickable */
.rooms-slider .slide-content a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}
    .mobile-menu-list a {
        color: white;
        font-size: 1.1rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
        font-family: 'Montserrat', sans-serif;
    }
    
    .mobile-menu-list a:hover {
        color: var(--gold);
        padding-left: 10px;
    }
    
    /* Mobile language switcher and audio toggle */
    .mobile-top-controls {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-language-switcher select {
        background: transparent;
        color: black;
        border: 1px solid rgba(255,255,255,0.3);
        padding: 8px 12px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
    }
    
    .mobile-audio-toggle {
        background: transparent;
        border: none;
        color: white;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-audio-toggle img {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile social icons */
    .mobile-social-icons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .mobile-social-icons a {
        color: white;
        font-size: 1.2rem;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .mobile-social-icons a:hover {
        opacity: 1;
        color: var(--gold);
    }
}

/* ============================================
   HIDE VISION SECTIONS ON MOBILE
============================================ */

@media (max-width: 768px) {
    /* Hide all vision sections on mobile */
    .vision-section {
        /*display: none !important;*/
    }
    
    /* Hide the spacing divs between vision sections */
    .vision-section + div[style*="height: 50px"] {
        /*display: none !important;*/
    }
    
    /* If there are specific vision sections with IDs, target them too */
    #vision, #vision1, #vision2, #vision3 {
        /*display: none !important;*/
    }
}

/* ============================================
   MOBILE-SPECIFIC ADJUSTMENTS FOR OTHER SECTIONS
============================================ */

@media (max-width: 768px) {
    /* Adjust hero section for mobile */
    .hero-container {
        height: 100vh;
        padding-top: 70px; /* Account for mobile header height */
    }
    
    /* Adjust video wrapper for mobile */
    .video-wrapper {
        top: 20vh;
        left: 5%;
        width: 90%;
        height: 40vh;
    }
    
    /* Adjust left content for mobile */
    .left-content {
        left: 5%;
        top: 65%;
        transform: translateY(0);
    }
    
    .look-word {
        font-size: 3.5rem !important;
        letter-spacing: -2px !important;
    }
    
    .find-word {
        font-size: 1.5rem !important;
    }
    
    .beyond-text {
        font-size: 1.2rem !important;
    }
    
    /* Adjust true perfection text for mobile */
    .true-perfection {
        right: 5%;
        bottom: 5%;
    }
    
    .true-perfection h2 {
        font-size: 1.5rem !important;
        letter-spacing: 5px !important;
    }
    
    /* Adjust gallery section for mobile */
    .gallery-title {
        font-size: 2rem !important;
        top: 15px !important;
        font-weight: 700;
        color: #484745;
    }
    
    .gallery-track {
        flex-direction: column;
        gap: 20px;
        padding: 0 5%;
    }
    
    .gallery-item.portrait,
    .gallery-item.landscape {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3/4;
    }
    
    /* Adjust rooms slider for mobile */
    .rooms-slider {
        height: 400px !important;
    }
    
    .slide-content h3 {
        font-size: 1.5rem !important;
    }
    
    .slide-content p {
        font-size: 0.9rem !important;
    }
    
    /* Adjust booking widget for mobile */
    .hero-booking-widget {
        position: relative !important;
        width: 90% !important;
        margin: 20px auto !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    /* Adjust services grid for mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .service-card {
        padding: 20px 15px !important;
    }
    
    /* Adjust loyalty tiers for mobile */
    .loyalty-tier-card {
        flex-direction: column !important;
    }
    
    .tier-header {
        flex-basis: auto !important;
        padding: 30px 20px !important;
    }
    
    /* Adjust partners slider for mobile */
    .partners-slide-track {
        animation: scroll 60s linear infinite !important;
    }
    
    .partner-logo-slide {
        width: 200px !important;
    }
    
    /* Adjust FAQ section for mobile */
    .faq-question {
        font-size: 1rem !important;
        padding: 20px 0 !important;
    }
    
    /* Adjust footer for mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* ============================================
   SMALL MOBILE ADJUSTMENTS
============================================ */

@media (max-width: 480px) {
    .mobile-header {
        height: 60px;
        padding: 0 15px;
    }
    
    .mobile-logo {
        height: 55px;
    }
    
    .hamburger-menu {
        width: 35px;
        height: 18px;
    }
    
    .hamburger-menu span:nth-child(2) {
        top: 8px;
    }
    
    .hamburger-menu span:nth-child(3) {
        top: 16px;
    }
    
    .mobile-menu-list a {
        font-size: 1rem;
    }
    
    /* Adjust hero text for very small screens */
    .look-word {
        font-size: 2.8rem !important;
    }
    
    .find-word {
        font-size: 1.2rem !important;
    }
    
    .true-perfection h2 {
        font-size: 1.2rem !important;
        letter-spacing: 3px !important;
    }
    
    /* Adjust services grid for very small screens */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   TABLET-SPECIFIC ADJUSTMENTS
============================================ */

@media (min-width: 769px) and (max-width: 992px) {
    /* Show vision sections on tablet but with adjustments */
    .vision-content,
    .vision-content-right {
        flex-direction: column !important;
        padding: 50px 20px !important;
    }
    
    .vision-text-wrapper,
    .vision-images {
        width: 100% !important;
    }
    
    .vision-text-wrapper {
        padding-top: 0 !important;
        margin-bottom: 50px;
    }
    
    .vision-images {
        gap: 50px !important;
    }
    
    .vision-img.portrait-group img {
        width: 100% !important;
        height: 50vh !important;
    }
    
    .vision-img.landscape-group img {
        height: 40vh !important;
    }
}


/* Mobile Menu Styles */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 16px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  overflow-y: auto;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mobile-menu-list li {
  margin-bottom: 20px;
}

.mobile-menu-list a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.mobile-menu-list a:hover {
  color: #c6ab7d;
}

.mobile-top-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.mobile-social-icons a {
  color: #000;
  font-size: 24px;
  transition: color 0.3s ease;
}

.mobile-social-icons a:hover {
  color: #c6ab7d;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
}

#smooth-wrapper, #smooth-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* 2. Fix gallery section overflow */
.gallery-track {
    padding: 0 5vw !important; /* Reduce padding on mobile */
}

@media (max-width: 768px) {
    .gallery-track {
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    .gallery-item {
        margin-inline: 0 !important; /* Remove large margins */
    }
    
    .gallery-item.portrait,
    .gallery-item.landscape {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
    }
}

/* 3. Fix vision sections overflow */
.vision-content,
.vision-content-right {
    padding: 20px !important; /* Reduce padding */
}

@media (max-width: 768px) {
    .vision-content,
    .vision-content-right {
        padding: 15px !important;
        gap: 20px !important;
    }
    
    .vision-images {
        width: 100% !important;
        gap: 30px !important; /* Reduce gap */
    }
}

/* 4. Fix video wrapper positioning */
@media (max-width: 768px) {
    .video-wrapper {
        left: 5% !important;
        width: 90% !important; /* Ensure it stays within viewport */
    }
}

/* 5. Fix hero booking widget overflow */
@media (max-width: 768px) {
    .hero-booking-widget {
        width: 78% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        margin: 0 auto !important;
        height: fit-content;
        top: 11% !important;
    }
}

/* 6. Fix container overflow */
.container {
    padding: 0 15px !important;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
    }
}

/* 7. Fix partners slider overflow */
@media (max-width: 768px) {
    .partners-slider {
        margin: 0 -10px !important;
        padding: 0 10px !important;
    }
    
    .partner-logo-slide {
        width: 150px !important; /* Reduce width on mobile */
    }
}











:host {
  display: block;
  width: 100%;
}

/* SECTION */
.text-highlight {
  background-color: white !important;
  color: #333;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.text-highlight .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 50px;
}

.text-highlight .container > * {
  flex: 1;
}

/* TEXT CONTENT */
.text-highlight .content-wrapper {
  text-align: left;
}

.text-highlight .content-wrapper h2 {
  font-size: 3.2rem;
  max-width: 600px;
  margin: 0 0 30px 0;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.text-highlight .content-wrapper h2 span:first-child {
  color: #c6a45c;
  font-weight: 500;
  position: relative;
}

.text-highlight .content-wrapper h2 span:first-child:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c6a45c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.text-highlight .content-wrapper h2:hover span:first-child:after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-highlight .content-wrapper p {
  max-width: 600px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  color: #555;
}

/* IMAGE */
.text-highlight .image-wrapper {
  position: relative;
  z-index: 2;
}

.text-highlight .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.text-highlight .image-wrapper img:hover {
  transform: scale(1.02);
}

/* FADE IN ANIMATION */
.text-highlight .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-highlight .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .text-highlight .content-wrapper h2 {
    font-size: 2.8rem;
  }

  .text-highlight .content-wrapper p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .text-highlight {
    padding: 60px 0;
  }

  .text-highlight .container {
    flex-direction: column;
    gap: 30px;
  }

  .text-highlight .content-wrapper h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  .text-highlight .content-wrapper p {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }

  .text-highlight .image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .text-highlight .content-wrapper h2 {
    font-size: 2rem;
  }

  .text-highlight .content-wrapper p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .text-highlight {
    padding: 40px 0;
  }
}

/* PERFORMANCE */
.text-highlight .fade-in,
.text-highlight .image-wrapper img {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .text-highlight .fade-in,
  .text-highlight .image-wrapper img,
  .text-highlight .content-wrapper h2 span:first-child:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Fix for Rooms Slider Links - Make All Clickable */
.rooms-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.rooms-slider .slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.rooms-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.rooms-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 50px;
    color: var(--white);
    z-index: 20;
}

.rooms-slider .slide-content a,
.rooms-slider .slide-content .btn,
.rooms-slider .slide-content .btn-outline,
.rooms-slider .slide-content .explore-link,
.rooms-slider .slide-content [routerLink] {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 9999 !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: 1px solid white !important;
    color: white !important;
}

.rooms-slider .slide-content a:hover,
.rooms-slider .slide-content .btn:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Fix for the slider navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 100 !important;
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 101;
    position: relative;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .rooms-slider {
        height: 500px;
    }
    
    .rooms-slider .slide-content {
        padding: 30px;
    }
    
    .slider-nav {
        bottom: 20px;
        right: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}