        /* Universal Minimalistic Scrollbar */
        html {
            overflow-y: overlay;
        }

        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
            background: transparent !important;
        }

        ::-webkit-scrollbar-track {
            background: transparent !important;
        }

        ::-webkit-scrollbar-track-piece {
            background: transparent !important;
        }

        ::-webkit-scrollbar-corner {
            background: transparent !important;
        }

        ::-webkit-scrollbar-thumb {
            background: #A0522D !important;
            border-radius: 4px !important;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #8B4513 !important;
        }

        /* Firefox */
        * {
            scrollbar-width: thin !important;
            scrollbar-color: #A0522D transparent !important;
        }

        /* Fix scroll offset for navigation links */
        html {
            scroll-behavior: smooth;
        }

        section[id],
        footer[id],
        #booking {
            scroll-margin-top: 80px;
        }

        /* Custom Notification Styles */
        #notification-area {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 20000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .notification {
            background: white;
            padding: 15px 20px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            min-width: 280px;
            width: auto;
            max-width: 450px;
            border-left: 4px solid #333;
            animation: slideIn 0.3s ease-out forwards;
        }

        .notification.success {
            border-left-color: #2ecc71;
        }

        .notification.error {
            border-left-color: #e74c3c;
        }

        .notification.info {
            border-left-color: #3498db;
        }

        .notification-icon {
            margin-right: 15px;
            font-size: 18px;
        }

        .notification.success .notification-icon {
            color: #2ecc71;
        }

        .notification.error .notification-icon {
            color: #e74c3c;
        }

        .notification.info .notification-icon {
            color: #3498db;
        }

        .notification-message {
            color: #333;
            font-size: 14px;
            line-height: 1.4;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: translateX(100%);
            }
        }

        /* Navbar Account Dropdown & Positioning */
        nav {
            flex-grow: 1;
        }

        nav ul {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .push-right {
            margin-left: auto;
        }

        .dropdown {
            position: relative;
        }

        .dropdown>a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 20px;
            transition: background-color 0.3s;
            color: #A0522D;
            font-weight: 600;
            text-decoration: none !important;
        }

        .dropdown>a .fa-user-circle {
            font-size: 1.4em;
        }

        .dropdown>a .fa-chevron-down {
            font-size: 0.8em;
            transition: transform 0.3s;
        }

        .dropdown.active>a .fa-chevron-down {
            transform: rotate(180deg);
        }

        .dropdown>a:hover {
            background-color: rgba(160, 82, 45, 0.1);
            text-decoration: none !important;
        }

        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.95);
            transform-origin: top right;
            transition: all 0.2s ease-out;
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            background-color: #fff;
            min-width: 220px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-radius: 4px;
            padding: 8px;
            z-index: 1000;
            border: 1px solid #f0f0f0;
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 20px;
            width: 12px;
            height: 12px;
            background: #fff;
            transform: rotate(45deg);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-left: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-menu li {
            display: block;
            margin: 0;
        }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 15px;
            color: #333;
            text-decoration: none !important;
            white-space: nowrap;
            font-size: 15px;
            font-weight: 500;
            border-radius: 4px;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-menu li a:hover {
            background-color: #A0522D;
            color: #fff;
            text-decoration: none !important;
        }

        .dropdown-menu li a i {
            width: 20px;
            text-align: center;
            color: #A0522D;
        }

        .dropdown-menu li a:hover i {
            color: #fff;
        }

        .dropdown-menu li a i {
            width: 20px;
            text-align: center;
            color: #888;
            transition: color 0.2s;
        }

        .dropdown-menu .divider {
            height: 1px;
            background-color: #eee;
            margin: 8px 0;
        }

        /* Login/Signup Buttons */
        .nav-btn {
            padding: 8px 20px !important;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 10px;
        }

        /* --- Custom Phone Dropdown Styles (Ported from Signup) --- */
        .phone-input-group {
            display: flex;
            position: relative;
        }

        .custom-dropdown {
            position: absolute;
            left: 1px;
            top: 1px;
            bottom: 1px;
            z-index: 10;
            border-right: 1px solid #ddd;
            background: #f9f9f9;
            border-radius: 4px 0 0 4px;
            min-width: 90px;
        }

        .selected-option {
            padding: 0 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 5px;
            font-size: 14px;
            height: 100%;
            transition: background 0.3s;
        }

        .selected-option:hover {
            background: #eee;
        }

        .dropdown-options {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.95);
            transform-origin: top left;
            transition: all 0.2s ease-out;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 280px;
            max-height: 250px;
            overflow-y: auto;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            z-index: 20;
        }

        .custom-dropdown.active .dropdown-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .search-box {
            padding: 10px;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            background: #fff;
        }

        .search-box input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 13px;
        }

        .options-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .option {
            padding: 10px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #333;
            transition: background 0.2s;
        }

        .option:hover {
            background-color: #f5f5f5;
        }

        .option .flag {
            font-size: 1.2em;
        }

        .option .country-name {
            flex-grow: 1;
        }

        .option .dial-code {
            color: #777;
            font-size: 0.9em;
        }

        /* Adjust input padding to make room for dropdown */
        .form-control.phone-input {
            padding-left: 105px;
            width: 100%;
            padding-top: 12px;
            padding-bottom: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        /* Room Details Modal */
        .details-modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            align-items: center;
            justify-content: center;
        }

        .details-modal.active {
            display: flex;
        }

        .details-content {
            background-color: #fff;
            margin: auto;
            padding: 0;
            width: 90%;
            max-width: 800px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            max-height: 90vh;
        }

        .details-body {
            padding: 20px;
        }

        .details-scrollable {
            overflow-y: auto;
            flex: 1;
            width: 100%;
        }

        .details-footer {
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            position: relative;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 400px;
            background: #000;
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide.active {
            display: block;
        }

        .prev,
        .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background: rgba(0, 0, 0, 0.3);
            border: none;
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover,
        .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .close-details {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #aaa;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
            z-index: 20;
        }

        .close-details:hover {
            color: #A0522D;
        }

        .booking-modal-content label {
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
            color: #444;
            font-size: 14px;
        }

        .booking-modal-content label i {
            color: #A0522D;
            margin-right: 6px;
            width: 16px;
            text-align: center;
        }

        .booking-modal-content input,
        .booking-modal-content select {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #ddd;
            width: 100%;
            font-size: 15px;
            transition: border-color 0.3s;
            background: #fff;
        }

        .booking-modal-content input:focus,
        .booking-modal-content select:focus {
            border-color: #A0522D;
            outline: none;
            box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.1);
        }

        .date-row {
            display: flex;
            gap: 15px;
        }

        .date-row .form-group {
            flex: 1;
        }

        .direct-booking-summary {
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Booking Modal Base Styles */
        .booking-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
        }

        .booking-modal.active {
            display: flex;
        }

        .booking-modal-content {
            background-color: #fff;
            margin: auto;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            max-height: 90vh;
            overflow-y: auto;
        }

        .booking-modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #5d6d7e;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
        }

        .booking-modal-close:hover {
            color: #A0522D;
        }

        .booking-step {
            display: none;
            animation: fadeIn 0.3s;
        }

        .booking-step.active {
            display: block;
        }

        .back-to-btns {
            user-select: none;
            transition: color 0.2s;
            position: absolute;
            left: 25px;
            z-index: 20;
            color: #5d6d7e;
            text-decoration: none;
            font-weight: 400;
            font-size: 16px;
            cursor: pointer;
        }

        .back-to-btns:hover {
            color: #A0522D;
        }

        .underline-remover::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: transparent !important;
            transition: width 0.3s;
        }

        .booking-rooms-list img {
            object-fit: cover;
            aspect-ratio: 1 / 1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: #2c3e50;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            padding: 25px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: rgba(253, 251, 247, 0.95);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .logo span {
            color: #A0522D;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #A0522D;
            transition: width 0.3s;
        }

        nav ul li a:hover {
            color: #A0522D;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .hero {
            min-height: 100vh;
            height: auto;
            display: flex;
            padding-top: 130px;
            padding-bottom: 50px;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/gallery10.jpeg') no-repeat center center/cover;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero h1 span {
            color: #f4e4bc;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #f0f0f0;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #A0522D;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #8a4524;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(160, 82, 45, 0.3);
        }

        .features {
            padding: 100px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 42px;
            font-weight: 400;
        }

        .section-title span {
            color: #A0522D;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-card {
            text-align: center;
            padding: 30px;
            background-color: #fdfbf7;
            border-radius: 2px;
            transition: all 0.3s;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 40px;
            color: #20B2AA;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: #5d6d7e;
        }

        .feature-link {
            display: inline-block;
            margin-top: 20px;
            font-weight: 600;
            color: #A0522D;
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
        }

        .feature-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: #A0522D;
            transition: width 0.3s ease-in-out;
        }

        .feature-link i {
            margin-left: 5px;
            transition: transform 0.3s ease-in-out;
        }

        .feature-link:hover {
            color: #8a4524;
        }

        .feature-link:hover::after {
            width: 100%;
        }

        .feature-link:hover i {
            transform: translateX(4px);
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #f4f1ea;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 250px;
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            overflow: hidden;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(160, 82, 45, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-overlay i {
            color: white;
            font-size: 30px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .item-1 {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        .gallery-load-more {
            text-align: center;
            margin-top: 40px;
        }

        #load-more-gallery,
        #show-less-gallery {
            background-color: #2c3e50;
            border-color: #2c3e50;
            color: #fff;
        }

        #load-more-gallery:hover,
        #show-less-gallery:hover {
            background-color: #A0522D;
            border-color: #A0522D;
        }

        .rooms {
            padding: 100px 0;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .room-card {
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .room-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .room-info {
            padding: 25px;
            background-color: #ffffff;
        }

        .room-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .room-info p {
            color: #5d6d7e;
            margin-bottom: 15px;
        }

        .room-price {
            font-size: 20px;
            font-weight: 700;
            color: #A0522D;
        }

        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #A0522D;
        }

        .footer-column p,
        .footer-column a {
            color: #bdc3c7;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .footer-column a:hover {
            color: #A0522D;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(236, 240, 241, 0.1);
            color: #bdc3c7;
            font-size: 14px;
        }

        .notification-banner {
            background: linear-gradient(90deg, #A0522D, #8a4524);
            color: white;
            text-align: center;
            padding: 12px 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .close-notification {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #2c3e50;
            cursor: pointer;
            transition: transform 0.3s ease, color 0.3s ease;
            position: relative;
            z-index: 1002;
        }

        .menu-toggle.active {
            color: #A0522D;
        }

        .menu-toggle.active i {
            font-size: 30px;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn-primary {
            background-color: #A0522D;
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-secondary:hover {
            background-color: #fff;
            color: #A0522D;
        }

        .booking-widget {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 400px;
        }

        .booking-widget h3 {
            margin-bottom: 20px;
            color: #A0522D;
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            align-items: end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 8px;
            color: #5d6d7e;
            font-weight: 500;
        }

        .form-group input,
        .form-group select {
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 16px;
            background-color: #f9f9f9;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0522D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
            padding-right: 40px;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #A0522D;
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.1);
        }

        /* Custom Select Styles */
        .custom-select-wrapper {
            position: relative;
            user-select: none;
            width: 100%;
        }

        .custom-select {
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .custom-select__trigger {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            font-size: 16px;
            font-weight: 400;
            color: #2c3e50;
            background: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .custom-select.open .custom-select__trigger {
            border-color: #A0522D;
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.1);
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .custom-select__trigger i {
            transition: transform 0.3s;
        }

        .custom-select.open .custom-select__trigger i {
            transform: rotate(180deg);
        }

        .custom-options {
            position: absolute;
            display: block;
            top: 100%;
            left: 0;
            right: 0;
            border: 1px solid #A0522D;
            border-top: 0;
            background: #fff;
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 10;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .custom-select.open .custom-options {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        .custom-option {
            position: relative;
            display: block;
            padding: 10px 12px;
            font-size: 16px;
            font-weight: 400;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.2s;
        }

        .custom-option:hover,
        .custom-option.selected {
            background-color: #f1f0ec;
            color: #A0522D;
        }

        /* Flatpickr Theme Overrides */
        .flatpickr-calendar {
            font-family: 'Lato', sans-serif !important;
            border-radius: 4px !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
        }

        .flatpickr-day.selected,
        .flatpickr-day.startRange,
        .flatpickr-day.endRange,
        .flatpickr-day.selected.inRange,
        .flatpickr-day.startRange.inRange,
        .flatpickr-day.endRange.inRange,
        .flatpickr-day.selected:focus,
        .flatpickr-day.startRange:focus,
        .flatpickr-day.endRange:focus,
        .flatpickr-day.selected:hover,
        .flatpickr-day.startRange:hover,
        .flatpickr-day.endRange:hover,
        .flatpickr-day.selected.prevMonthDay,
        .flatpickr-day.startRange.prevMonthDay,
        .flatpickr-day.endRange.prevMonthDay,
        .flatpickr-day.selected.nextMonthDay,
        .flatpickr-day.startRange.nextMonthDay,
        .flatpickr-day.endRange.nextMonthDay {
            background: #A0522D !important;
            border-color: #A0522D !important;
        }

        .flatpickr-months .flatpickr-month {
            color: #2c3e50 !important;
            fill: #2c3e50 !important;
        }

        .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
            background-color: #fff !important;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #2c3e50;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) translateX(-50%);
            }

            40% {
                transform: translateY(-10px) translateX(-50%);
            }

            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        .stats {
            background-color: #fdfbf7;
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #A0522D;
            margin-bottom: 10px;
        }

        .stat-letter {
            font-size: 48px;
            font-weight: 700;
            color: #A0522D;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            color: #2c3e50;
            font-weight: 500;
        }


        .amenities {
            padding: 100px 0;
            background-color: #fff;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
        }

        .amenity-item {
            text-align: center;
            padding: 30px 20px;
            background: #fdfbf7;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .amenity-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .amenity-item i {
            font-size: 40px;
            color: #20B2AA;
            margin-bottom: 15px;
        }

        .amenity-item h3 {
            font-size: 18px;
            color: #2c3e50;
        }

        .room-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #A0522D;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .room-features {
            display: flex;
            gap: 15px;
            margin: 15px 0;
            color: #5d6d7e;
        }

        .room-features span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .room-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .btn-book {
            padding: 10px 20px;
            font-size: 14px;
        }

        .testimonials {
            padding: 100px 0;
            background-color: white;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            display: none;
            padding: 40px;
            background: #fdfbf7;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .testimonial.active {
            display: block;
        }

        .testimonial-content i {
            font-size: 32px;
            color: #A0522D;
            margin-bottom: 20px;
        }

        .testimonial-content p {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .testimonial-author h4 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .testimonial-author span {
            color: #5d6d7e;
            font-size: 14px;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
        }

        .testimonial-controls button {
            background: none;
            border: 2px solid #A0522D;
            color: #A0522D;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .testimonial-controls button:hover {
            background: #A0522D;
            color: white;
        }

        .testimonial-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
        }

        .dot.active {
            background: #A0522D;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #A0522D;
            color: white;
            transform: translateY(-3px);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #A0522D;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(160, 82, 45, 0.3);
            transition: all 0.3s;
            z-index: 1000;
        }

        .back-to-top:hover {
            background: #8a4524;
            transform: translateY(-3px);
        }

        @media (max-width: 900px) {

            .booking-form .form-group {
                margin-bottom: 15px;
            }

            .booking-form label {
                display: block;
                margin-bottom: 8px;
                font-weight: 600;
            }

            .booking-form input:not([type="hidden"]),
            .booking-form .custom-select__trigger,
            .booking-form .btn {
                width: 100%;
                height: 50px;
                padding: 0 15px;
                border-radius: 4px;
                box-sizing: border-box;
                margin: 0;
            }

            .booking-form input:not([type="hidden"]),
            .booking-form .custom-select__trigger {
                border: 1px solid #ddd;
                background: #fff;
                display: flex;
                align-items: center;
            }

            .booking-form .custom-select__trigger {
                justify-content: space-between;
                cursor: pointer;
            }

            .booking-form .btn {
                display: flex;
                align-items: center;
                justify-content: center;
                border: none;
                cursor: pointer;
            }

            .booking-widget {
                max-width: 2000px;
                width: fit-content;
                height: fit-content;
            }

            .booking-form {
                grid-template-columns: repeat(4, minmax(100px, 1fr));
            }

            .hero-content {
                text-align: center;
            }

            .hero .container {
                flex-direction: column;
            }
        }

        @media (max-width: 800px) {
            .hero {
                padding-top: 89px;
            }

            .hero-content {
                padding-top: 50px;
                margin-bottom: -40px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .hero-buttons {
                flex-direction: column;
            }


            .newsletter-form {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.50);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 85%;
            max-height: 85vh;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 10001;
        }

        .lightbox-close:hover {
            color: #A0522D;
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: #A0522D;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        /* Booking Modal System */
        .booking-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }

        .booking-modal.active {
            display: flex;
        }

        .booking-modal-content {
            background: #fff;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 8px;
            padding: 40px;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .booking-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #5d6d7e;
            transition: color 0.3s;
        }

        .booking-modal-close:hover {
            color: #A0522D;
        }

        .booking-step {
            display: none;
        }

        .booking-step.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .booking-header {
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .booking-header h2 {
            color: #2c3e50;
        }

        .booking-dates-display {
            color: #A0522D;
            font-weight: 500;
            margin-top: 5px;
        }

        /* Booking Room Cards */
        .booking-room-card {
            display: flex;
            border: 1px solid #eee;
            border-radius: 4px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .booking-room-card:hover {
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
            border-color: #A0522D;
            transform: scale(1.01);
        }

        .booking-room-img {
            width: 200px !important;
            height: 200px !important;
            flex-shrink: 0;
        }

        .booking-room-details {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .booking-room-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .booking-room-price {
            color: #A0522D;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .booking-success {
            text-align: center;
            padding: 40px 0;
        }

        .success-icon {
            font-size: 60px;
            color: #27ae60;
            margin-bottom: 20px;
        }

        .back-step-btn {
            background: none;
            border: none;
            color: #5d6d7e;
            cursor: pointer;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        @media (max-width: 768px) {
            .booking-form {
                grid-template-columns: repeat(2, minmax(100px, 1fr));
            }
        }

        @media (max-width: 700px) {
            .header-content {
                flex-direction: row-reverse;
                gap: 20px;
                justify-content: flex-end;
            }

            nav {
                flex-grow: 0;
            }

            .menu-toggle {
                display: block;
            }

            header nav ul {
                position: fixed;
                top: 87.5px;
                left: 0;
                right: auto;
                height: 100vh;
                width: auto;
                background: rgba(253, 251, 247, 0.95);
                flex-direction: column;
                padding: 20px 20px 20px 20px;
                display: flex;
                opacity: 1;
                visibility: hidden;
                transform: translateX(-100%);
                transition: transform 0.3s ease, visibility 0.3s;
                z-index: 99999999999999999;
            }

            nav ul li.dropdown ul.dropdown-menu {
                height: auto;
            }

            .dropdown-menu::before {
                right: 75px !important;
            }

            header nav ul.active {
                visibility: visible;
                transform: translateX(0);
            }

            nav ul li {
                margin: 5px 0;
                text-align: center;
                width: 100%;
            }

            nav ul li a {
                white-space: nowrap;
            }

            .login {
                margin-left: 0 !important;
            }
        }

        @media (max-width: 600px) {
            .booking-room-card {
                flex-direction: column;
            }

            .booking-room-img {
                width: 100% !important;
                height: 200px !important;
            }
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }

        .loading-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #A0522D;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 69px;
            }

            .container {
                padding: 0 15px;
            }

            header {
                padding: 15px 0;
            }

            header nav ul {
                top: 68px;
            }

            .hero h1,
            .section-title {
                font-size: 32px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 200px;
            }

            .item-1 {
                grid-column: auto;
                grid-row: auto;
            }

            .booking-modal-content,
            .booking-widget {
                padding: 20px;
                width: 95%;
            }
        }
    
    @media(max-width: 415px) {
        .hero h1,
        .section-title {
            font-size: 28px;
        }

        .booking-form {
            grid-template-columns: 1fr;
        }
    }