﻿/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Define CSS Variables for White & Black Theme */
:root {
    --font-primary: 'Open Sans', sans-serif;
    
    /* Core White & Black Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-grey: #333333; /* For secondary dark elements, less harsh than pure black */
    --color-light-grey: #CCCCCC; /* For subtle light elements, less stark than pure white */

    /* Theme colors re-mapped to black/white/grey scheme */
    --theme-dark: var(--color-black); /* Used for main headings, body text, primary dark backgrounds */
    --theme-accent-dark: var(--color-dark-grey); /* Used for secondary dark backgrounds, darker borders */
    --theme-accent-light: var(--color-light-grey); /* Used for lighter backgrounds, subtle highlights */
    --theme-highlight: var(--color-white); /* Used for strong white accents on dark backgrounds, active states */
    
    /* Transparent colors (black based for general overlaying, shadows, borders) */
    --transparent-dark-10: rgba(0, 0, 0, 0.1); 
    --transparent-dark-15: rgba(0, 0, 0, 0.15); /* For specific shadow */
    --transparent-dark-20: rgba(0, 0, 0, 0.2); 
    --transparent-dark-30: rgba(0, 0, 0, 0.3);
    --transparent-dark-40: rgba(0, 0, 0, 0.4); 
    --transparent-dark-50: rgba(0, 0, 0, 0.5); 
    --transparent-dark-60: rgba(0, 0, 0, 0.6); /* For specific logo shadow */
    --transparent-dark-70: rgba(0, 0, 0, 0.7); /* For captions, shadows */
    --transparent-dark-80: rgba(0, 0, 0, 0.8);
    --transparent-dark-90: rgba(0, 0, 0, 0.9);

    /* Transparent light colors (white based for highlights on dark surfaces) */
    --transparent-light-05: rgba(255, 255, 255, 0.05);
    --transparent-light-10: rgba(255, 255, 255, 0.1);
    --transparent-light-20: rgba(255, 255, 255, 0.2);
    --transparent-light-30: rgba(255, 255, 255, 0.3);
    --transparent-light-70: rgba(255, 255, 255, 0.7); /* For specific indicators */
    --transparent-light-80: rgba(255, 255, 255, 0.8);
    --transparent-light-90: rgba(255, 255, 255, 0.9); /* If needed */
}

/* Ensure no override of initial root variables */
/* Removed the second :root block to prevent overwriting of custom color variables */

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

/* RESPONSIVENESS FIXES (General) */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure HTML and body cover the full viewport height */
}

/* Add a no-scroll class to body for mobile menu overlay */
body.no-scroll {
    overflow: hidden;
}

/* General Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--color-white); /* White background */
    background-attachment: fixed; /* Note: dynamic background loader script handles this for some sections */
    background-size: cover;
    color: var(--theme-dark); /* Changed to black */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

p, a, li {
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Top Bar */
.topbar {
    background: linear-gradient(to right, var(--color-dark-grey), var(--color-black)); /* Changed to dark grey to black gradient */
    color: var(--color-white); /* Keep white text on dark background */
    font-size: 18px;
    padding: 3px 0;
}

/* Main Container */
.topbar-container {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Aligning Items */
.topbar-left, .topbar-center, .topbar-right {
    display: flex;
    align-items: center;
}

.topbar-left {
    flex: 1;
    justify-content: flex-start;
}

.topbar-center {
    text-align: center;
    font-weight: 400;
    color: var(--color-light-grey); /* Changed to light grey */
}

.topbar-right {
    flex: 1;
    justify-content: flex-end;
    gap: 15px;
}

/* Social Media Icons */
.social-icon {
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--transparent-light-20), var(--transparent-light-50)); /* Kept as transparent white based */
    transition: background 0.3s ease-in-out;
}

.social-icon i {
    color: var(--color-white); /* Kept white */
    font-size: 16px;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--theme-highlight), var(--color-white)); /* Changed to white/lighter gradient for hover */
}

.social-icon:hover i {
    color: var(--theme-dark); /* Changed to black */
}

/* Book Now Button */
.book-now {
    background: linear-gradient(to right, var(--theme-highlight), var(--theme-accent-light)); /* Changed to white/light grey gradient */
    color: var(--color-black); /* Changed to black */
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 300;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 10px var(--transparent-dark-40); /* Changed to transparent black */
}

.book-now:hover {
    background: linear-gradient(to right, var(--color-black), var(--color-dark-grey)); /* Changed to black/dark grey gradient for hover */
    transform: scale(1.05);
}

.call-link {
    color: var(--color-white); /* Kept white */
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.call-link:hover {
    color: var(--theme-highlight); /* Changed to white */
    text-decoration: none;
}

/* Responsive Design - Tablet & Mobile for Top Bar */
@media screen and (max-width: 1024px) {
    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar {
        padding: 12px 0;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .book-now {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* Mobile View Fixes for Top Bar */
@media screen and (max-width: 768px) {
    .topbar {
        padding: 10px 0;
    }

    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-bottom: 6px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .book-now {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Logo Row */
.logo-container {
    text-align: center;
    padding: 7px 0;
    background: #f7f7f7; /* Kept white */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px var(--transparent-dark-15); /* Changed to transparent black */
}

/* Logo Styling */
.logo img {
    height: 130px;
    display: block;
    margin: 0 auto;
}

/* Logo Hover Effect */
.logo img:hover {
    transform: scale(1.05);
}

/* Responsive Design for Smaller Screens - Logo */
@media screen and (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

/* Premium Navigation Styling */
.custom-nav-header {
    background: #491a28; /* Changed to white/light grey gradient */
    padding: 15px 0;
    text-align: center;
    /* --- START STICKY HEADER MODIFICATIONS --- */
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick to the top of the viewport */
    z-index: 1010; /* Ensure it stays above other content, including mobile menus */
    box-shadow: 0 4px 10px var(--transparent-dark-15); /* Add a subtle shadow for elevation when sticky */
    /* --- END STICKY HEADER MODIFICATIONS --- */
}

/* Navigation Menu Container */
.custom-nav-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desktop Navigation Links */
.custom-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 55px;
}

.custom-nav-menu ul li {
    display: inline-block;
}

.custom-nav-menu ul li a {
    color: white; /* Changed to black */
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: color 0.3s ease-in-out;
    padding: 10px 0;
}

/* Dropdown Arrows */
.custom-nav-menu ul li a i {
    font-size: 12px;
    margin-left: 5px;
}

/* Hover Effects */
.custom-nav-menu ul li a:hover {
    color: white; /* Changed to dark grey for hover */
}

/* Dropdown Menu Styling - FIXED VERSION */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-menu {
    position: absolute;
    background: var(--color-white); /* Kept white */
    min-width: 250px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0px 8px 12px var(--transparent-dark-30); /* Changed to transparent black */
    border-radius: 8px;
    border: 1px solid var(--transparent-dark-40); /* Changed to transparent black */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: block !important; /* Force block display */
}

/* Show dropdown when hovering */
.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

/* Staggered animation for list items */
.custom-dropdown-menu li {
    padding: 12px 20px;
    text-align: left; /* Changed from center */
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 0.4s ease-in-out forwards;
    animation-fill-mode: both;
    display: block; /* Ensure vertical layout */
    width: 100%; /* Full width for each item */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Delay effect for each list item */
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(5) { animation-delay: 0.5s; }

/* Keyframes for the dropdown animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Item Styling */
.custom-dropdown-menu li a {
    color: var(--theme-dark); /* Changed to black */
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: left; /* Kept left from second style block */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Hover effect with glow */
.custom-dropdown-menu li a:hover {
    color: var(--theme-dark); /* Keep black for hover text on light background */
    background: var(--transparent-dark-10); /* Changed to transparent black */
    box-shadow: 0px 0px 10px var(--transparent-dark-30); /* Changed to transparent black */
}

/* Active link styling */
#custom-nav-links > li.active > a,
.custom-dropdown-menu > li.active > a {
    color: white !important; /* Changed to strong black */
    font-weight: bold;
}

/* Keep dropdown open when active */
.custom-dropdown.active .custom-dropdown-menu {
    display: block !important;
}

/* Mobile responsiveness for desktop dropdowns */
@media (max-width: 1024px) { /* Changed from 768px for custom-dropdown-menu collapse point */
    .custom-dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border: 1px solid var(--color-light-grey); /* Changed to light grey */
        transform: none;
        display: none !important;
    }
    
    .custom-dropdown.active .custom-dropdown-menu {
        display: block !important;
    }
    
    .custom-dropdown:hover .custom-dropdown-menu {
        transform: none;
    }
}

/* Premium Hamburger Menu */
.custom-hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white; /* Changed to black */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    z-index: 1001;
}

.custom-hamburger-menu:hover {
    background: var(--transparent-light-20); /* Kept transparent white based */
    color: #491a28; /* Changed to black */
}

/* Mobile Navigation Overlay */
.custom-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-dark-grey), var(--color-black)); /* Changed to dark grey to black gradient */
    color: var(--color-white); /* Kept white */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: left 0.5s ease-in-out;
    box-shadow: 4px 0px 10px var(--transparent-dark-20); /* Kept transparent black */
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 0 20px 0;
}

.custom-mobile-nav.show {
    left: 0;
}

.custom-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.custom-mobile-nav ul li {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid var(--transparent-light-10); /* Kept transparent white based */
}
        
/* >>> NEW CSS <<< */
/* This container allows the link and toggle to sit side-by-side */
.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
        
/* >>> NEW CSS <<< */
/* Make the link take up most of the space */
.mobile-nav-item a {
    flex-grow: 1; /* Allows the link to expand */
    padding: 15px 20px;
}

.custom-mobile-nav ul li a {
    color: var(--color-light-grey); /* Changed to light grey */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.custom-mobile-nav ul li a:hover {
    color: var(--theme-highlight); /* Changed to white */
    background: var(--transparent-light-05); /* Kept transparent white based */
}
        
/* >>> NEW CSS <<< */
/* Style for the separate dropdown toggle icon */
.mobile-dropdown-toggle {
    cursor: pointer;
    padding: 15px 20px; /* Makes the tap area bigger */
    font-size: 16px;
    color: var(--color-light-grey); /* Changed to light grey */
}

.mobile-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s;
}

/* >>> MODIFIED CSS <<< */
/* Rotate the icon inside the toggle span when active */
.custom-dropdown.active .mobile-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile dropdown menu items */
.custom-mobile-nav .custom-dropdown-menu {
    background: var(--transparent-dark-20); /* Kept transparent black based */
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.5s ease-in-out;
    position: static;
    transform: none;
    opacity: 1;
    display: block;
}

.custom-mobile-nav .custom-dropdown.active .custom-dropdown-menu {
    max-height: 500px;
    visibility: visible;
}

.custom-mobile-nav .custom-dropdown-menu li {
    border-bottom: none;
    padding: 0;
    animation: none;
    opacity: 1;
    transform: none;
}

.custom-mobile-nav .custom-dropdown-menu li a {
    padding: 12px 20px 12px 40px;
    font-size: 16px;
    color: var(--color-light-grey); /* Changed to light grey */
    font-weight: 400;
}

.custom-mobile-nav .custom-dropdown-menu li a:hover {
    background: var(--transparent-light-10); /* Kept transparent white based */
    color: var(--theme-highlight); /* Changed to white */
}

/* Book Now Button within the mobile menu */
.custom-mobile-nav .custom-book-now {
    background: linear-gradient(to right, var(--theme-highlight), var(--theme-accent-light)); /* Changed to white/light grey gradient */
    color: var(--color-black); /* Changed to black */
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 10px var(--transparent-dark-40); /* Changed to transparent black */
    display: block;
    margin: 20px;
    text-align: center;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.custom-mobile-nav .custom-book-now:hover {
    background: linear-gradient(to right, var(--color-black), var(--color-dark-grey)); /* Changed to black/dark grey gradient for hover */
    transform: scale(1.02);
}

/* Close Button for mobile navigation */
.custom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--color-white); /* Kept white */
    transition: 0.3s;
    z-index: 1001;
    background: var(--transparent-dark-20); /* Kept transparent black based */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-close-btn:hover {
    color: var(--theme-highlight); /* Changed to white */
    background: var(--transparent-dark-40); /* Kept transparent black based */
}

/* Overlay when mobile menu is open */
.custom-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparent-dark-70); /* Kept transparent black based */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.custom-mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design - Media Queries */
@media screen and (max-width: 1024px) {
    .custom-hamburger-menu {
        display: block;
        margin-top: -50px;
        color: #491a28;
    }

    .custom-nav-menu ul {
        display: none;
    }
    
    .custom-nav-header {
        padding: 0px 0;
    }
}

@media screen and (max-width: 768px) {
    .logo img {
        height: 60px;
    }
    
    .custom-hamburger-menu {
        right: 15px;
        font-size: 24px;
        padding: 8px;
        margin-top: -40px;
    }
    
    .custom-mobile-nav {
        width: 85%;
    }
}


/* --- Hero Carousel Section --- */

/* Container for slides */
.hero-carousel-container { /* This is the primary fullscreen hero carousel */
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden; /* Tailwind: overflow-hidden */
}

/* Slides base style */
.slide {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* Tailwind: inset-0 */
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Modified: Slower opacity for image changing effect */
    z-index: 0;
}

/* Ken Burns Effect for Images (from original styles) */
.slide-image { /* Renamed from .slide img */
    width: 100%; /* Tailwind: w-full */
    height: 100%; /* Tailwind: h-full */
    object-fit: cover; /* Tailwind: object-cover */
    transform: scale(1);
    /* Removed: transition: transform 4s ease-out; for no slow Ken Burns animation */
    transform-origin: center center; /* Zoom from the center */
}

/* Active slide visible */
.slide.active {
    opacity: 1;
    z-index: 10;
}
.slide.active .slide-image { /* Gently zoom in to 108% (now instant as no transition on slide-image) */
    transform: scale(1.08);
}

/* Text Overlay (from Tailwind bg-black bg-opacity-50 flex flex-col justify-center items-center px-4 text-center) */
.slide-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* Tailwind: inset-0 */
    background-color: rgba(0, 0, 0, 0.3); /* Modified: Decreased darkness from ~50% to 30% */
    display: flex; /* Tailwind: flex */
    flex-direction: column; /* Tailwind: flex-col */
    justify-content: center; /* Tailwind: justify-center */
    align-items: center; /* Tailwind: items-center */
    padding-left: 1rem; /* Tailwind: px-4 */
    padding-right: 1rem; /* Tailwind: px-4 */
    text-align: center;
}

/* Text style (animation removed) */
.slide-text {
    opacity: 1; /* Modified: Always visible */
    transform: translateY(0); /* Modified: Always at original position */
    /* Removed: transition property for text animation */
    color: var(--color-white); /* Kept white */
    font-family: var(--font-primary); /* Apply new font */
    font-size: 1.875rem; /* Tailwind: text-3xl (30px base) */
    font-weight: 500; /* Tailwind: font-semibold */
    line-height: 1.25; /* Tailwind: leading-tight */
    max-width: 80rem; /* Tailwind: max-w-5xl (approx. 1280px) */
}
/* Removed: .slide.active .slide-text rule */

/* Responsive font sizes for slide-text (from Tailwind breakpoints) */
@media (min-width: 640px) { /* sm breakpoint */
    .slide-text { font-size: 2.25rem; } /* sm:text-4xl */
}
@media (min-width: 768px) { /* md breakpoint */
    .slide-text { font-size: 3rem; } /* md:text-5xl */
}
@media (min-width: 1024px) { /* lg breakpoint */
    .slide-text { font-size: 3.75rem; } /* lg:text-6xl */
}

/* Bottom gradient overlay (from Tailwind absolute inset-x-0 bottom-0 h-1/3 bg-gradient-to-t from-black/80 to-transparent z-12) */
.slide-gradient {
    position: absolute;
    left: 0;
    right: 0; /* Tailwind: inset-x-0 */
    bottom: 0;
    height: 33.333333%; /* Tailwind: h-1/3 */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%); /* Modified: Decreased darkness from ~80% to 50% */
    z-index: 12; /* Tailwind: z-12 */
}

/* Default (Desktop) Settings */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white); /* Kept white */
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.15); /* Modified: Decreased darkness from ~30% to 15% */
    border-radius: 50%; /* Tailwind equivalent: rounded-full for square elements */
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 20;
    outline: none; /* Often beneficial for accessibility and consistency */
}

/* Mobile (Portrait) Settings */
@media (max-width: 767px) {
    .nav-btn {
        font-size: 2rem; /* Smaller font size for mobile */
        width: 40px;
        height: 40px;
        top: 60%; /* Adjusted top position for mobile */
    }
}

/* Tablet Settings */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-btn {
        font-size: 2.2rem; /* Slightly smaller than desktop for tablets */
        width: 45px;
        height: 45px;
        top: 60%; /* Adjusted top position for tablet */
    }
}

.nav-btn:hover,
.nav-btn:focus {
    background: rgba(0, 0, 0, 0.3); /* Modified: Decreased darkness from ~60% to 30% */
}
.nav-btn.left {
    left: 1rem;
}
.nav-btn.right {
    right: 1rem;
}

/* Caption bottom right */
.caption {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: var(--color-white); /* Kept white */
    font-weight: 300;
    z-index: 15; /* Ensure caption is above the new gradient */
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4); /* Modified: Decreased darkness from ~70% to 40% */
}


/* About Us Section */
#about {
    background-color: var(--color-white); /* Clean white background */
    text-align: center; /* Center align all text content */
}

/* Container for responsive width and centering */
#about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Padding for mobile devices */
}

/* Section Header Styling */
#about .section-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--theme-dark); /* Dark color for the main heading (black) */
    margin-bottom: 15px;
}

/* Subtitle for a brief tagline */
#about .section-header .subtitle { /* This rule is defined, but no element with .subtitle in HTML for this section */
    font-size: 1.2rem;
    color: var(--color-dark-grey); /* Changed to dark grey */
    margin-bottom: 30px;
    font-style: italic;
}

/* A decorative line to separate header from content */
#about .section-header .divider {
    width: 100px;
    height: 3px;
    background-color: var(--color-black); /* Changed to black accent color */
    margin: 0 auto 30px auto; /* Center the divider */
    border-radius: 2px;
}

/* Main Content Paragraphs */
#about .about-content {
    text-align: center; /* Set text-align to center to match the request */
    color: var(--color-dark-grey); /* Changed to dark grey */
}

#about .about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Style for emphasized text, like movie titles */
#about .about-content em {
    font-weight: bold;
    font-style: normal;
    color: var(--theme-dark); /* Changed to black */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #about .section-header h1 {
        font-size: 2.2rem;
    }
}


/*
--- Corporate Image Layout Section ---
*/

/* --- Grid Container Setup --- */
#image-layout-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    min-height: 85vh;
    font-family: var(--font-primary);
}

/* --- Grid Item Placement --- */
#image-layout-container #who-we-are {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

#image-layout-container #what-we-do {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

#image-layout-container #hotel-portfolio {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

#image-layout-container #careers {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

#image-layout-container #contact-us {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* --- General Column Styling --- */
#image-layout-container .column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 2em;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
    margin: 0;
    min-height: 250px;
}

/* Inner image element that will zoom */
#image-layout-container .column .inner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease, filter 0.5s ease;
    transform: scale(1.05);
}

/* Zoom effect on hover */
#image-layout-container .column:hover .inner-image {
    transform: scale(1.15);
}

/* --- MODIFIED: The overlay is now just a transparent centering container --- */
#image-layout-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    /* Removed background-color and opacity to make the main image bright */
}

#image-layout-container .column:hover .overlay {
    /* Hover effect on background is no longer needed here */
}

/* --- MODIFIED: Moved the background overlay to the text element --- */
#image-layout-container .overlay-text {
    color: var(--color-white);
    font-size: 1.1em;
    font-family: var(--font-primary);
    transition: transform 0.4s ease, background-color 0.4s ease; /* Added transition */
    
    /* These properties create the "black overlay layer" just for the text */
    background-color: var(--transparent-dark-50, rgba(0, 0, 0, 0.5)); /* Added fallback */
    padding: 10px 15px; /* Added padding for spacing */
    border-radius: 5px; /* Added rounded corners */
}

#image-layout-container .column:hover .overlay-text {
    transform: translateY(-5px);
    /* Make the text background slightly darker on hover */
    background-color: var(--transparent-dark-70, rgba(0, 0, 0, 0.7)); /* Added fallback */
}


/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    #image-layout-container {
        display: block;
        min-height: unset;
        padding: 10px;
    }

    #image-layout-container .column {
        width: 100%;
        height: 300px;
        margin-bottom: 15px;
    }
    
    #image-layout-container .column:last-child {
        margin-bottom: 0;
    }

    #image-layout-container .overlay-text {
        font-size: 1.2em;
    }
}

@media (max-width: 600px) {
    #image-layout-container .column {
        height: 250px;
    }
    #image-layout-container .overlay-text {
        font-size: 1.1em;
    }
}

/*
=============================================================
--- Encapsulated Styles for Top Destinations Section ---
--- These styles will ONLY affect #top-destinations-section ---
=============================================================
*/

/* ===== Section Background & Header ===== */
#top-destinations-section {
    background-color: var(--color-white); /* Kept white */
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

#top-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#top-destinations-section .destinations-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-destinations-section .destinations-header {
    text-align: center;
    margin-top: 30px;
}

/* Removed small tag style as small tag is not present in the HTML header */

#top-destinations-section .destinations-header h2 {
    font-weight: 800;
    font-size: 3rem;
    color: var(--theme-dark); /* Uses black */
    margin: 0;
    line-height: 1.2;
    /* MODIFIED: Explicitly apply primary heading font */
    font-family: var(--font-primary);
}

#top-destinations-section .destinations-header .destinations-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-grey); /* Changed to dark grey */
    margin-top: 1rem;
    font-weight: 400;
    /* Will inherit var(--font-primary) from <body>, explicitly setting here as good practice */
    font-family: var(--font-primary);
}

/* ===== Carousel & Cards ===== */
#top-destinations-section .carousel-container {
    position: relative;
    margin: 2rem auto 0;
    /* This padding is for Desktop/Larger Screens (base styling) */
    padding: 0 60px; 
}

#top-destinations-section .carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 500px;
    overflow: visible;
    position: relative;
}

#top-destinations-section .card {
    position: absolute;
    width: 340px;
    height: 480px;
    border-radius: 16px;
    will-change: transform;
    box-shadow: 0 15px 35px var(--transparent-dark-10); /* Changed to transparent black */
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
    background: var(--color-white); /* Kept white */
    user-select: none;
    border: 1px solid var(--transparent-dark-10); /* Changed to transparent black */
}

#top-destinations-section .card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#top-destinations-section .card:hover > img {
    transform: scale(1.05);
}

#top-destinations-section .card.active {
    box-shadow: 0 5px 10px var(--transparent-dark-20); /* Changed to transparent black */
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

#top-destinations-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, var(--transparent-dark-80) 0%, transparent 150%); /* Kept transparent black based */
    color: var(--color-white); /* Kept white */
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary); /* Explicitly set font */
}

#top-destinations-section .card-content .title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    width: 100%;
    /* MODIFIED: Explicitly apply primary heading font */
    font-family: var(--font-primary);
}

#top-destinations-section .card-content .listing {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    padding: 4px 12px;
    background-color: var(--transparent-dark-90); /* Changed to transparent black */
    border-radius: 20px;
    /* Will inherit var(--font-primary) from its parent .card-content, explicitly set here for safety*/
    font-family: var(--font-primary); 
}

/* Removed btn-group styles as they are not used in HTML for this carousel */

#top-destinations-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--theme-accent-dark); /* Changed to dark grey */
    border: none;
    color: var(--color-white); /* Kept white */
    width: 60px; /* Default for Desktop */
    height: 60px; /* Default for Desktop */
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 15px var(--transparent-dark-30); /* Changed to transparent black */
    font-family: var(--font-primary); /* Explicitly set font */
}

#top-destinations-section .carousel-btn:hover {
    background-color: var(--theme-highlight); /* Changed to white */
    color: var(--theme-accent-dark); /* Changed to dark grey */
    transform: translateY(-50%) scale(1.1);
}

/* Default positioning for Desktop/Larger Screens */
#top-destinations-section .carousel-btn.prev {
    left: 20px; 
}

#top-destinations-section .carousel-btn.next {
    right: 20px; 
}

#top-destinations-section .carousel-btn svg {
    width: 24px; /* Default for Desktop */
    height: 24px; /* Default for Desktop */
    color: inherit; /* Inherits from parent button */
}

/* Responsive Adjustments (DO NOT affect desktop) */
@media (max-width: 1024px) {
    #top-destinations-section .card {
        width: 300px;
        height: 420px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.5rem;
    }

    /* Tablet: Adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 25px; /* Reduced from 60px */
    }

    /* Tablet: Slightly reduce button size */
    #top-destinations-section .carousel-btn {
        width: 55px;
        height: 55px;
    }

    /* Tablet: Position buttons closer to the new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 5px; 
    }
}

@media (max-width: 768px) {
    #top-destinations-section .destinations-header h2 {
        font-size: 2rem;
    }
    
    #top-destinations-section .carousel {
        height: 380px;
    }
    
    #top-destinations-section .card {
        width: 240px;
        height: 340px;
    }
    
    #top-destinations-section .card-content {
        padding: 15px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.3rem;
    }
    
    #top-destinations-section .card-content .listing {
        font-size: 0.9rem;
    }
    
    /* Mobile/Small Tablet: Further adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 10px; /* More reduced padding */
    }

    /* Mobile/Small Tablet: Standard button size */
    #top-destinations-section .carousel-btn {
        width: 50px; 
        height: 50px;
    }

    /* Mobile/Small Tablet: Position buttons flush with container's new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 0px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 0px; 
    }
}

@media (max-width: 576px) {
    #top-destinations-section {
        padding: 0.5rem 0;
    }
    
    #top-destinations-section .destinations-header h2 {
        font-size: 1.8rem;
    }
    
    #top-destinations-section .carousel {
        height: 320px;
    }
    
    #top-destinations-section .card {
        width: 200px;
        height: 280px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.1rem;
    }

    /* Smallest Mobile: Minimal padding */
    #top-destinations-section .carousel-container {
        padding: 0 5px; 
    }

    /* Smallest Mobile: Smallest button size */
    #top-destinations-section .carousel-btn {
        width: 40px; 
        height: 40px;
    }
    /* Smallest Mobile: Adjust SVG icon size to fit smaller buttons */
    #top-destinations-section .carousel-btn svg {
        width: 20px; 
        height: 20px;
    }

    /* Smallest Mobile: Allow buttons to slightly extend beyond container for visibility */
    #top-destinations-section .carousel-btn.prev {
        left: -5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: -5px; 
    }
}
/*
**********************************************************
* END: Styles for Top Destination Carousel
**********************************************************
*/





/* USP Carousel Styles */
.about-usp-carousel-wrapper {
    position: relative;
    padding: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden; /* <-- This is the added line that fixes the issue */
}

.about-usp-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    animation: marquee 25s linear infinite;
}

.about-usp-carousel-wrapper:hover .about-usp-carousel {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.usp-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white); /* Kept white */
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px -3px var(--transparent-dark-10); /* Kept transparent black based */
    min-width: 180px;
    border: 1px solid var(--transparent-dark-10); /* Changed to transparent black */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px -3px var(--transparent-dark-15); /* Kept transparent black based */
}

.usp-item img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.usp-item:hover img {
    filter: grayscale(0%); /* Restore original colors on hover */
    opacity: 1;
}

/* --- RESPONSIVE REFINEMENTS --- */
@media (max-width: 1023px) {
    .about-content-wrapper .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .overlap-image-container {
        width: 75%; /* Adjust width for tablets */
        margin-top: -60px; /* Adjust overlap amount for tablet */
    }
    .about-usp-carousel {
        gap: 1.5rem;
        animation-duration: 20s;
    }
    .usp-item {
        min-width: 150px;
        padding: 1.2rem;
    }
    .usp-item img {
        height: 2.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0;
    }
    .overlap-image-container {
      width: 80%;
      margin-right: 0.5rem;
    }
    .about-award-usp {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .about-usp-carousel {
        gap: 1rem;
    }
    .usp-item {
        min-width: 130px;
        padding: 1rem;
    }
    .usp-item img {
        height: 2.5rem;
    }
}


.phone-link {
    color: white; /* Changes the text color to black */
    text-decoration: none; /* Removes the underline */
}




.footer-legal-link,
.footer-design-link {
    color: black; /* A darker grey color */
    text-decoration: none; /* Remove underline */
    margin: 0 5px; /* Add some space around the links */
}


/* ADD THESE MISSING STYLES */
        .hospitality-section {
            max-width: 1500px;
            margin: 40px auto;
            text-align: center;
            color: #333;
        }

        .hospitality-section h2 {
            font-size: 2.8em;
            letter-spacing: 2px;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.3;
            color: #491a28;
        }

        .hospitality-section p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 25px;
            padding: 0 20px;
        }

        .hospitality-section ul {
            list-style-type: none;
            padding: 0;
            margin: 40px auto;
            text-align: left;
            max-width: 750px;
        }

        .hospitality-section ul li {
            font-size: 1em;
            line-height: 1.6;
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .hospitality-section ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 1px;
            font-size: 1.4em;
            color: #333;
        }
        
        .hospitality-section .final-cta {
            margin-top: 40px;
        }




        .section-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
            padding: 20px;
        }
        
        .timeline-section {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .timeline-section:hover {
            transform: translateY(-5px);
        }
        
        .mission-section {
            flex: 1;
            min-width: 300px;
            background: #491a28; /* New Background Color */
            color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(73, 26, 40, 0.2); /* Shadow for New Color */
            position: relative;
            overflow: hidden;
        }
        
        .mission-section:before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .mission-section:after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        
        .timeline-section .section-title {
            color: #491a28; /* New Color */
        }
        
        .mission-section .section-title {
            color: white;
        }
        
        .section-title i {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #491a28; /* New Color */
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #491a28; /* New Color */
            border: 4px solid white;
            box-shadow: 0 0 0 3px #491a28; /* New Color */
            z-index: 1;
        }
        
        .timeline-year {
            font-weight: bold;
            color: #491a28; /* New Color */
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .timeline-content {
            background: #f9f6f7; /* Neutral light background to match new theme */
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #491a28; /* New Color */
        }

        .timeline-content p { /* Ensuring timeline paragraphs are black */
             color: black;
        }
        
        .mission-statement {
            font-size: 1.2rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        .mission-statement i {
            color: rgba(255, 255, 255, 0.7);
            margin-right: 10px;
        }
        
        .values-section {
            width: 100%;
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-top: 20px;
        }
        
        .values-title {
            text-align: center;
            color: #491a28; /* New Color */
            font-size: 2.5rem;
            margin-bottom: 30px;
            margin-top: -50px;
        }
        
        .values-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        
        .value-card {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            background: white;
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            border-top: 5px solid #491a28; /* New Color */
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(73, 26, 40, 0.15); /* Shadow for new color */
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: #491a28; /* New Color */
            margin-bottom: 15px;
        }
        
        .value-title {
            font-size: 1.4rem;
            color: #491a28; /* New Color */
            margin-bottom: 10px;
        }
        
        .value-desc {
            color: black; /* Paragraph color set to black */
            font-size: 0.95rem;
        }
        
        .hotel-brands {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            padding: 20px;
            background: #f9f6f7; /* Neutral light background to match new theme */
            border-radius: 10px;
        }
        
        .brand-logo {
            font-size: 2rem;
            color: #491a28; /* New Color */
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .brand-logo:hover {
            transform: scale(1.1);
        }
        
        .brand-name {
            font-size: 0.8rem;
            margin-top: 5px;
            font-weight: bold;
        }
        
        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            color: black; /* Paragraph color set to black */
            font-size: 0.9rem;
        }
        
        .highlight {
            color: #491a28; /* New Color */
            font-weight: bold;
        }
        
        .quote-mark {
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
            z-index: 0;
        }
        
        /* Animation for values */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .value-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }
        .value-card:nth-child(4) { animation-delay: 0.4s; }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .section-container {
                flex-direction: column;
            }
            
            .value-card {
                min-width: 100%;
            }
        }



        .content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

/* Main Section Container */
        .container {
            width: 100%;
            max-width: 1200px;
        }
        
        /* Wrapper for Card and Map */
        .content-wrapper {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* Base styles for slide-up animation */
        .animated-card {
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

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

        /* Left Side: Form Container */
        .contact-card {
            flex: 1;
            background: white;
            padding: 78px 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            min-height: 450px;
            box-sizing: border-box;
            animation-delay: 0.4s;
        }

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

        .contact-card h2 {
            color: black;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
            text-align: center;
        }

        .contact-card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #491a28;
        }

        /* Form Styles */
        .contact-form .form-group { margin-bottom: 20px; }
        .contact-form label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
        .contact-form .form-control { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; box-sizing: border-box; transition: border-color 0.3s, box-shadow 0.3s; font-family: 'Poppins', sans-serif; }
        .contact-form .form-control:focus { outline: none; border-color: #491a28; box-shadow: 0 0 5px rgba(73, 26, 40, 0.2); }
        .contact-form textarea.form-control { resize: vertical; min-height: 100px; }
        .contact-form .submit-btn { width: 100%; padding: 12px; border: none; border-radius: 6px; background-color: #491a28; color: white; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s, transform 0.2s; font-family: 'Poppins', sans-serif; }
        .contact-form .submit-btn:hover { background-color: #36141e; transform: translateY(-2px); }
        
        /* Right Side: Map & Details Wrapper */
        .right-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            animation-delay: 0.6s;
        }
        
        .right-column:hover { transform: translateY(-5px); }
        
        /* Map Container */
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 550px;
        }
        .right-column:hover .map-container { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
        .map-container iframe { width: 100%; height: 100%; border: none; display: block; }
        
        /* UPDATED STYLES: Contact Info Below Map */
        .map-contact-info {
            background: #fff;
            padding: 30px; /* Increased padding */
            text-align: center;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .map-contact-info h3 {
            margin: 0 0 15px 0; /* Increased margin bottom */
            font-size: 2.2rem; /* Much bigger font size */
            font-weight: 700; /* Bolder */
            color: black; /* A modern dark blue/grey */
            position: relative;
            display: inline-block;
            letter-spacing: 0.5px; /* Added letter spacing */
        }

        .map-contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -8px; /* Adjusted position */
            left: 50%;
            transform: translateX(-50%);
            width: 60px; /* Wider underline */
            height: 4px; /* Thicker underline */
            background: #491a28;
            border-radius: 2px;
        }

        .map-contact-info p {
            margin: 0;
            font-size: 1.5rem; /* Bigger font size */
            color: black; /* Softer dark color */
            font-weight: 600; /* Bolder phone number */
        }
        
        .map-contact-info i {
             color: #491a28;
             margin-right: 12px; /* Increased space */
             font-size: 1.4rem; /* Icon size to match text */
             vertical-align: middle;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .content-wrapper { flex-direction: column; }
            .contact-card, .right-column { width: 100%; }
            .map-container { height: 350px; }
            /* Adjust font sizes for smaller screens */
            .map-contact-info h3 { font-size: 1.8rem; }
            .map-contact-info p { font-size: 1.2rem; }
        }



/* ============================================= */
/* GLOBAL PORTFOLIO WRAPPER */
/* ============================================= */
.portfolio-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    /* Aligns sidebar to the top so it doesn't stretch down */
    align-items: flex-start;
}

/* ============================================= */
/* SIDEBAR FILTERS */
/* ============================================= */
.sidebar {
    width: 280px;
    background-color: #491a28;
    padding: 25px;
    flex-shrink: 0;
    color: white;
    margin-bottom: 40px;
    
    /* Makes the sidebar follow you as you scroll */
    position: sticky; 
    top: 20px; 
    align-self: flex-start;
}

.sidebar .sidebar-title {
    font-size: 1.3rem;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #868e96;
}

.sidebar .filter-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.sidebar .filter-btn {
    display: block;
    width: 100%;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    text-align: left;
    padding: 12px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.sidebar .filter-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.sidebar .filter-btn.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-color: #007bff;
}

/* ============================================= */
/* MAIN CONTENT & GALLERY */
/* ============================================= */
.main-content {
    flex-grow: 1;
    padding: 30px;
    /* Important fix to ensure grid fits inside flex container */
    width: 0; 
}

.hotel-gallery {
    display: grid;
    /* MAIN FIX: 
       'auto-fill' keeps empty column space instead of stretching the 2 cards.
       Cards will stay around 300px and align to the left. 
    */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;           
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.selected {
    box-shadow: 0 0 0 4px #007bff;
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-item-title {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 20px 15px;
    border-top: 1px solid #eee;
}

/* ============================================= */
/* HOTEL DETAILS PANEL (HIDDEN BY DEFAULT) */
/* ============================================= */
.hotel-details-wrapper {
    display: none;
}

.hotel-gallery > .hotel-details-wrapper.visible {
    display: block;
    /* Makes the details panel take up the full width of the row */
    grid-column: 1 / -1; 
    animation: fadeIn 0.5s ease-out;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-top: 15px;
}

.details-content {
    padding: 40px;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.details-header h2 {
    font-size: 2.1rem;
    color: #333;
    flex: 1;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    opacity: 0.6;
}

.close-btn:hover {
    opacity: 1;
}

.details-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-label {
    font-weight: bold;
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#hotel-location {
    font-size: 1.25rem;
    margin: 0 0 25px 0;
    color: #343a40;
    font-weight: 500;
}

#hotel-description {
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.action-buttons a {
    display: inline-block;
    padding: 12px 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

#visit-website-btn {
    background-color: #007bff;
    color: #ffffff;
}

#visit-website-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

#call-now-btn {
    background-color: #491a28;
    color: white;
}
#call-now-btn:hover {
    background-color: #491a28;
    transform: translateY(-2px);
}

.details-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ============================================= */
/* ANIMATIONS & RESPONSIVENESS */
/* ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
    .details-body { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .portfolio-wrapper { flex-direction: column; }
    
    .sidebar {
        width: 100%;
        box-sizing: border-box;
        position: static; 
    }
    .main-content {
        width: 100%; 
    }
    .filter-list { display: flex; flex-wrap: wrap; gap: 10px; }
    .filter-btn { width: auto; flex-grow: 1; text-align: center;}
}

@media (max-width: 768px) {
    /* On phones, just one column */
    .hotel-gallery { grid-template-columns: 1fr; } 
    .details-header h2 { font-size: 1.6rem; }
}


/* --- Team Section --- */
.team-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 2rem;
    margin-top: -40px;
}
.team-section h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    color: #491a28;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-family: 'Arial Black', sans-serif;
}
.team-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: #491a28;
    border-radius: 3px;
}
.team-section .subtitle {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* --- Team Grid Layout --- */
.team-grid-custom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    align-items: stretch;
    perspective: 1000px;
    justify-items: center;
}

/* Positions */
.card-top-left { grid-row: 1; grid-column: 1; }
.card-top-right { grid-row: 1; grid-column: 3; }
.card-center { 
    grid-row: 1 / span 2; 
    grid-column: 2; 
    align-self: center;
}
.card-bottom-left { grid-row: 2; grid-column: 1; }
.card-bottom-right { grid-row: 2; grid-column: 3; }

/* --- Team Member Card --- */
.team-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    max-width: 400px;
    width: 100%;
}
.team-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.card-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
}
.card-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #491a28;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-know-more {
    background: #491a28;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(73, 26, 40, 0.5);
    margin-top: 1.5rem;
}
.btn-know-more:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(73, 26, 40, 0.7);
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
    padding: 1.5rem;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 800px; /* Adjusted for better text-only view */
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.5s ease;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 200;
    color: #491a28;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.close-btn:hover {
    color: black;
    transform: rotate(90deg);
}
.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #491a28;
}
.modal-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    text-align: left;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .team-grid-custom {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    .card-top-left, .card-top-right, .card-bottom-left, .card-bottom-right, .card-center {
        grid-row: auto;
        grid-column: auto;
        align-self: auto;
    }
}
@media (max-width: 768px) {
    .team-section h2 { font-size: 2.5rem; }
    .team-grid-custom {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem;
    }
}