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

    body {
        font-family: 'Inter', sans-serif;
        background: #0a0a0a;
        color: #fff;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3 {
        font-family: 'Playfair Display', serif;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 1.5rem 5%;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

    nav.scrolled {
        padding: 1rem 5%;
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, #d4af37 0%, #f8e08e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 2px;
        z-index: 1001;
    }

    .nav-links {
        display: flex;
        gap: 3rem;
        list-style: none;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links a:hover {
        color: #d4af37;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #d4af37;
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        width: 30px;
        height: 3px;
        background: #d4af37;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Mobile Menu Styles */
    @media (max-width: 768px) {
        .mobile-menu-toggle {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            gap: 0;
            padding: 6rem 2rem 2rem;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            transition: right 0.4s ease;
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-links a {
            display: block;
            padding: 1.2rem 0;
            font-size: 1.1rem;
        }

        .nav-links a::after {
            display: none;
        }

        .logo {
            font-size: 1.5rem;
        }
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
        animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.6;
        }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 900px;
        padding: 0 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #d4af37;
        margin-bottom: 1rem;
        animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #fff 0%, #d4af37 100%);

        -webkit-background-clip: text;
        /* -webkit-text-fill-color: transparent; */
        animation: fadeInUp 1s ease 0.4s both;
    }

    .hero-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 3rem;
        animation: fadeInUp 1s ease 0.6s both;
    }

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

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

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        animation: fadeInUp 1s ease 0.8s both;
    }

    .btn {
        padding: 1rem 2.5rem;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #f8e08e 100%);
        color: #0a0a0a;
        border-radius: 50px;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #d4af37;
        color: #d4af37;
    }

    /* Booking Form */
    .booking-bar {
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 2.5rem 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .booking-form {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        align-items: end;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


    .form-group input,
    .form-group select {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        /* color: #1a1a2e; */
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #d4af37 !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .form-group select option {
        background-color: #1e1e1e;
        /* Dark dropdown background */
        color: #fff;
        /* White text */
    }

    /* Selected option in the list */
    .form-group select option:checked {
        background-color: #d4af37;
        /* Golden highlight */
        color: #000;
        /* Text color for selected option */
    }

    .form-group select option:hover {
        background-color: #4f46e5;
        /* Hover color */
        color: #fff;
        /* Text color on hover */
    }


    /* Features Section */
    .features {
        padding: 8rem 5%;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    }

    .section-title {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .section-subtitle {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 1.1rem;
        margin-bottom: 5rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 3rem 2rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #d4af37;
        background: rgba(255, 255, 255, 0.05);
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        display: block;
        justify-content: center;
        align-items: center;

    }

    .amenity-icon {
        width: 128px;
        height: 128px;

        /* display: block; */
        /* justify-content: center;
    align-items: center; */
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #d4af37;
    }

    .feature-card p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    /* Rooms Section */
    .rooms {
        padding: 8rem 5%;
        background: #0a0a0a;
    }

    .rooms-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .room-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
    }

    .room-card:hover {
        transform: translateY(-10px);
        border-color: #d4af37;
    }

    .room-badge {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #d4af37 0%, #f8e08e 100%);
        color: #0a0a0a;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 10;
    }

    .room-image {
        width: 100%;
        height: 300px;
        background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        position: relative;
        overflow: hidden;
    }

    .room-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    }

    .room-content {
        padding: 2rem;
    }

    .room-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #d4af37;
    }

    .room-content p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .room-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;
    }

    .price {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
    }

    .price span {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.6);
    }

    /* Facilities Section */
    .facilities {
        padding: 8rem 5%;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .facility-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .facility-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
        border-color: #d4af37;
    }

    .facility-item .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .facility-item h4 {
        font-size: 1.2rem;
        color: #d4af37;
        margin-bottom: 0.5rem;
    }

    .facility-item p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    /* Facility Details Modal */
    .facility-details {
        max-width: 95vw;
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
        padding: 3rem;
    }

    .facility-details::-webkit-scrollbar {
        width: 12px;
    }

    .facility-details::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .facility-details::-webkit-scrollbar-thumb {
        background: #d4af37;
        border-radius: 10px;
    }

    .facility-details::-webkit-scrollbar-thumb:hover {
        background: #f8e08e;
    }

    .facility-modal-header {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .facility-image-container {
        width: 100%;
        height: 70vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    }

    .facility-image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
        z-index: 1;
    }

    .facility-image-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.35) 0%, rgba(26, 26, 46, 0.55) 100%);
        z-index: 2;
    }

    .facility-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        transition: transform 0.5s ease;
    }

    .facility-image-container:hover .facility-bg-image {
        transform: scale(1.05);
    }

    .facility-image-container .detail-icon {
        font-size: 15rem;
        position: relative;
        z-index: 3;
        animation: float 3s ease-in-out infinite;
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
    }

    @keyframes float {

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

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

    .facility-header-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 0;
    }

    .facility-header-content h2 {
        font-size: 4.5rem;
        color: #d4af37;
        margin-bottom: 2.5rem;
        line-height: 1.1;
    }

    .facility-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 2.1;
        margin-bottom: 2.5rem;
        font-size: 1.35rem;
    }

    .facility-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
        margin: 4rem 0;
    }

    .facility-feature-item {
        background: rgba(255, 255, 255, 0.04);
        padding: 2.2rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: flex-start;
        gap: 1.8rem;
        transition: all 0.3s ease;
    }

    .facility-feature-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #d4af37;
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    }

    .facility-feature-item .check-icon {
        color: #d4af37;
        font-weight: bold;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .facility-feature-item span {
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.8;
        font-size: 1.18rem;
    }

    .facility-cta {
        display: flex;
        gap: 2.5rem;
        margin-top: 4rem;
        padding-top: 3.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .facility-cta .btn {
        padding: 1.5rem 4rem;
        font-size: 1.2rem;
        flex: 1;
    }

    /* Places to Visit Section */
    .places {
        padding: 8rem 5%;
        background: #0a0a0a;
    }

    .places-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .place-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .place-card:hover {
        transform: translateY(-10px);
        border-color: #d4af37;
    }

    .place-image {
        width: 100%;
        height: 250px;
        background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        position: relative;
        overflow: hidden;
    }

    .place-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    }

    .place-content {
        padding: 2rem;
    }

    .place-content h3 {
        color: #d4af37;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .place-content p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .place-info {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .place-distance {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #d4af37;
        font-weight: 600;
        font-size: 0.9rem;
    }


    .place-map-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1.2rem;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid #d4af37;
        color: #d4af37;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        width: fit-content;
    }

    .place-map-btn:hover {
        background: #d4af37;
        color: #0a0a0a;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    /* .place-map-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.2rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid #d4af37;
            color: #d4af37;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            width: fit-content;
        } */

    /* .place-map-btn:hover {
            background: #d4af37;
            color: #0a0a0a;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        } */

    /* Location Section */
    .location {
        padding: 8rem 5%;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    }

    .location-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .location-info h3 {
        color: #d4af37;
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .location-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .location-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .location-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #d4af37;
    }

    .location-item .icon {
        font-size: 1.5rem;
        /* color: #d4af37; */
    }

    .location-item-content h4 {
        color: #d4af37;
        margin-bottom: 0.5rem;
    }

    .location-item-content p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .map-container {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow: hidden;
        height: 500px;
        position: relative;
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    }

    .map-placeholder .icon {
        font-size: 5rem;
        margin-bottom: 1rem;
        color: #d4af37;
    }

    .map-placeholder p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1.1rem;
    }

    @media (max-width: 968px) {
        .location-container {
            grid-template-columns: 1fr;
        }
    }

    /* Footer */
    footer {
        background: #0a0a0a;
        padding: 4rem 5% 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-section h3 {
        color: #d4af37;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section a {
        color: rgba(255, 255, 255, 0.6);
        line-height: 2;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #d4af37;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.4);
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }

    .modal.active {
        display: flex;
    }

    .modal-content {
        background: #1a1a2e;
        padding: 3rem;
        border-radius: 20px;
        max-width: 500px;
        width: 90%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .close-modal {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: rgba(212, 175, 55, 0.1);
        border: 2px solid #d4af37;
        color: #d4af37;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 100;
        backdrop-filter: blur(10px);
    }

    .close-modal:hover {
        background: #d4af37;
        color: #0a0a0a;
        transform: rotate(90deg);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }

    .modal-content h2 {
        color: #d4af37;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .modal-content input {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 8px;
        font-size: 1rem;
    }

    .modal-content input:focus {
        outline: none;
        border-color: #d4af37;
    }

    .modal-content .btn {
        width: 100%;
        margin-top: 1rem;
    }

    /* Responsive */
    @media (min-width: 1920px) {
        .facility-details {
            max-width: 96vw;
            width: 96%;
            padding: 4rem;
        }

        .facility-image-container {
            height: 75vh;
        }

        .facility-image-container .detail-icon {
            font-size: 18rem;
        }

        .facility-header-content h2 {
            font-size: 5rem;
        }

        .facility-description {
            font-size: 1.5rem;
            line-height: 2.2;
        }

        .facility-features-grid {
            gap: 2.5rem;
        }

        .facility-feature-item {
            padding: 2.5rem;
        }

        .facility-feature-item .check-icon {
            font-size: 2rem;
        }

        .facility-feature-item span {
            font-size: 1.3rem;
        }

        .facility-cta .btn {
            padding: 1.8rem 5rem;
            font-size: 1.4rem;
        }
    }

    @media (max-width: 1600px) {
        .facility-details {
            max-width: 93vw;
            width: 93%;
            padding: 2.5rem;
        }

        .facility-image-container {
            height: 65vh;
        }

        .facility-image-container .detail-icon {
            font-size: 13rem;
        }

        .facility-header-content h2 {
            font-size: 4rem;
        }

        .facility-description {
            font-size: 1.25rem;
        }

        .facility-feature-item span {
            font-size: 1.12rem;
        }
    }

    @media (max-width: 1366px) {
        .facility-details {
            max-width: 90vw;
            width: 90%;
            padding: 2rem;
        }

        .facility-image-container {
            height: 60vh;
        }

        .facility-image-container .detail-icon {
            font-size: 11rem;
        }

        .facility-header-content h2 {
            font-size: 3.5rem;
        }

        .facility-description {
            font-size: 1.15rem;
        }

        .facility-features-grid {
            gap: 1.8rem;
        }

        .facility-feature-item {
            padding: 1.8rem;
        }
    }

    @media (max-width: 1024px) {
        .nav-links {
            gap: 1.5rem;
            font-size: 0.9rem;
        }

        .hero-title {
            font-size: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .location-container {
            grid-template-columns: 1fr;
        }

        .facility-details {
            max-width: 95%;
            width: 95%;
        }

        .facility-modal-header {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .facility-image-container {
            height: 400px;
        }

        .facility-image-container .detail-icon {
            font-size: 9rem;
        }

        .facility-header-content h2 {
            font-size: 2.5rem;
        }

        .facility-features-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .facility-feature-item {
            padding: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        nav {
            padding: 1rem 3%;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-description {
            font-size: 1rem;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .hero-buttons .btn {
            width: 100%;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }

        .booking-form {
            grid-template-columns: 1fr;
        }

        .features-grid,
        .rooms-grid,
        .places-grid,
        .facilities-grid {
            grid-template-columns: 1fr;
        }

        .feature-card,
        .room-card,
        .place-card {
            max-width: 500px;
            margin: 0 auto;
        }

        .modal-content {
            padding: 2rem 1.5rem;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .close-modal {
            width: 45px;
            height: 45px;
            font-size: 1.8rem;
            top: 1rem;
            right: 1rem;
        }

        .facility-details {
            width: 98%;
            max-height: 95vh;
            padding: 1.5rem;
        }

        .facility-header-content h2 {
            font-size: 1.8rem;
        }

        .facility-features-grid {
            grid-template-columns: 1fr;
        }

        .facility-cta {
            flex-direction: column;
        }

        .facility-cta .btn {
            width: 100%;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .features,
        .rooms,
        .places,
        .facilities,
        .location {
            padding: 4rem 3%;
        }

        .location-item {
            padding: 1rem;
        }

        .map-container {
            height: 350px;
        }
    }

    @media (max-width: 480px) {
        .logo {
            font-size: 1.3rem;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 0.85rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .btn {
            padding: 0.9rem 1.8rem;
            font-size: 0.9rem;
        }

        .room-price .price {
            font-size: 1.5rem;
        }

        .facility-image-container {
            height: 250px;
        }

        .facility-image-container .detail-icon {
            font-size: 5rem;
        }

        .modal-content {
            padding: 1.5rem 1rem;
            max-height: 95vh;
        }

        .close-modal {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            top: 0.8rem;
            right: 0.8rem;
        }

        .facility-details {
            padding: 1rem;
            max-height: 98vh;
        }

        .facility-header-content h2 {
            font-size: 1.5rem;
        }

        .facility-description {
            font-size: 0.95rem;
        }
    }


    /* Hero Slider Styles */
    .hero-slider {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .mySlides {
        display: none;
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: opacity 1s ease-in-out;
    }

    .mySlides .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        z-index: 10;
    }

    /* 
    .mySlides .hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}
    .mySlides .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    } */

    .mySlides .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .mySlides .btn {
        margin: 0 10px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: #fff;
        font-weight: bold;
        font-size: 24px;
        transition: background-color 0.3s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .prev {
        left: 20px;
        border-radius: 3px 0 0 3px;
    }

    .next {
        right: 20px;
        border-radius: 0 3px 3px 0;
    }

    .slider-dots {
        text-align: center;
        position: absolute;
        bottom: 20px;
        width: 100%;
        z-index: 10;
    }

    .slider-dots .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .slider-dots .dot.active,
    .slider-dots .dot:hover {
        background-color: #d4af37;
    }