        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0a0a0f;
            --secondary-dark: #1a1a24;
            --accent-gold: #d4af37;
            --accent-rose: #e8c4a0;
            --pure-white: #ffffff;
            --off-white: #f8f8f8;
            --text-light: #e0e0e0;
            --text-grey: #a8a8a8;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--primary-dark);
            background: var(--primary-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1.5rem 0;
        }

        header.scrolled {
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        nav {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 4px;
            text-transform: uppercase;
            position: relative;
            z-index: 1002;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            position: relative;
            z-index: 1002;
            padding: 10px;
        }

        .mobile-menu span {
            width: 28px;
            height: 2px;
            background: var(--accent-gold);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        #hero {
            min-height: 100vh;
            height: 100vh;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.7), rgba(26, 26, 36, 0.5)), 
                        url(./premium\ hotel\ bg.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            color: var(--pure-white);
            animation: fadeInUp 1.2s ease;
            position: relative;
            z-index: 1;
            max-width: 1200px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 10vw, 7rem);
            font-weight: 200;
            letter-spacing: clamp(5px, 2vw, 20px);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-location {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            color: var(--accent-rose);
            letter-spacing: clamp(3px, 1vw, 6px);
            margin-bottom: 2rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hero-tagline {
            font-size: clamp(1rem, 2.5vw, 1.8rem);
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: clamp(1px, 0.5vw, 3px);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            padding: 0 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }

        .btn {
            padding: clamp(1rem, 2vw, 1.3rem) clamp(2rem, 4vw, 3.5rem);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 2.5px;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            color: var(--primary-dark);
            border: none;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
        }

        .btn-secondary {
            color: var(--pure-white);
            border: 2px solid var(--accent-gold);
            background: transparent;
        }

        .btn-secondary:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        /* Section Styles */
        section {
            padding: clamp(5rem, 12vw, 10rem) 5%;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
        }

        section:not(#hero) {
            margin-top: 0;
        }

        .dark-section {
            background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
        }

        .light-section {
            background: var(--off-white);
            color: var(--primary-dark);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 200;
            letter-spacing: clamp(3px, 1vw, 8px);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .dark-section .section-title {
            background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.9;
            font-weight: 300;
            padding: 0 1rem;
        }

        .dark-section .section-subtitle {
            color: var(--text-grey);
        }

        /* Experience Section */
        #experience {
            background: var(--off-white);
            padding-top: clamp(6rem, 14vw, 12rem);
        }

        .experience-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .exp-card {
            text-align: center;
            padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
            background: var(--pure-white);
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .exp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(232, 196, 160, 0.05));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .exp-card:hover::before {
            opacity: 1;
        }

        .exp-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
        }

        .exp-icon {
            font-size: clamp(3rem, 6vw, 4rem);
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            display: block;
        }

        .exp-card h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .exp-card p {
            color: var(--text-grey);
            line-height: 1.9;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
        }

        /* Rooms Section */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .room-card {
            background: var(--secondary-dark);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .room-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .room-card:hover::before {
            opacity: 1;
        }

        .room-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
        }

        .room-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #2a2a3a, #1a1a24);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.1rem;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
            display: block;
        }

        .room-card:hover .room-image img {
            transform: scale(1.1);
        }

        .room-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.3));
            z-index: 1;
            pointer-events: none;
        }

        .room-content {
            padding: clamp(1.5rem, 3vw, 2.5rem);
            position: relative;
            z-index: 2;
        }

        .room-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .room-card h3 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            letter-spacing: 3px;
            color: var(--pure-white);
            font-weight: 400;
        }

        .room-price {
            font-size: clamp(1.5rem, 3vw, 2rem);
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .room-price span {
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            color: var(--text-grey);
        }

        .room-card p {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.9;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
        }

        /* Spa & Dining */
        .spa-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .spa-card {
            position: relative;
            height: clamp(400px, 60vw, 500px);
            background: linear-gradient(135deg, #2a2a3a, #1a1a24);
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .spa-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .spa-card:hover img {
            transform: scale(1.1);
        }

        .spa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 15, 0.95));
            z-index: 1;
            transition: all 0.5s ease;
        }

        .spa-card:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
        }

        .spa-card:hover::before {
            background: linear-gradient(to bottom, transparent 20%, rgba(10, 10, 15, 0.9));
        }

        .spa-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: clamp(2rem, 4vw, 3rem);
            z-index: 2;
            color: var(--pure-white);
            transform: translateY(40px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .spa-card:hover .spa-card-content {
            transform: translateY(0);
        }

        .spa-card h3 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            font-weight: 400;
            background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .spa-card p {
            opacity: 0;
            transition: opacity 0.5s ease 0.2s;
            line-height: 1.9;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            color: var(--text-light);
        }

        .spa-card:hover p {
            opacity: 1;
        }

        /* Gallery */
        #gallery {
            background: var(--off-white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: clamp(250px, 40vw, 350px);
            background: linear-gradient(135deg, #2a2a3a, #1a1a24);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            letter-spacing: 2px;
            font-size: 1.1rem;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(232, 196, 160, 0.2));
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .gallery-item:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        /* Booking Section */
        #booking .section-title,
        #booking .section-subtitle {
            color: var(--pure-white);
        }

        .booking-form {
            max-width: 900px;
            margin: 3rem auto;
            background: rgba(26, 26, 36, 0.8);
            padding: clamp(2.5rem, 5vw, 4rem);
            border-radius: 25px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.8rem;
            letter-spacing: 2px;
            color: var(--accent-gold);
            font-weight: 600;
            text-transform: uppercase;
            font-size: clamp(0.75rem, 1.5vw, 0.85rem);
        }

        .form-group input,
        .form-group select {
            padding: clamp(1rem, 2vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
            background: rgba(10, 10, 15, 0.5);
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: var(--pure-white);
            font-family: inherit;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            transition: all 0.3s ease;
            border-radius: 10px;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(10, 10, 15, 0.7);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .form-group select option {
            background: var(--secondary-dark);
        }

        .submit-btn {
            width: 100%;
            padding: clamp(1.2rem, 2vw, 1.5rem);
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            color: var(--primary-dark);
            border: none;
            letter-spacing: 3px;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 1.5rem;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
        }

        .success-message {
            display: none;
            padding: 2rem;
            background: rgba(76, 175, 80, 0.2);
            border: 2px solid #4CAF50;
            border-radius: 15px;
            color: #4CAF50;
            text-align: center;
            margin-top: 2.5rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .success-message.show {
            display: block;
            animation: fadeInUp 0.6s ease;
        }

        /* FAQ Section */
        #faq {
            background: var(--off-white);
        }

        .faq-container {
            max-width: 1000px;
            margin: 3rem auto;
        }

        .faq-item {
            background: var(--pure-white);
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
        }

        .faq-question {
            padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: var(--pure-white);
            gap: 1rem;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(232, 196, 160, 0.05));
        }

        .faq-question h3 {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            letter-spacing: 1px;
            font-weight: 500;
            color: var(--primary-dark);
        }

        .faq-icon {
            font-size: clamp(1.5rem, 3vw, 2rem);
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            font-weight: 300;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(232, 196, 160, 0.03));
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
        }

        .faq-answer p {
            color: var(--text-grey);
            line-height: 1.9;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: clamp(3rem, 6vw, 5rem) 5% 2rem;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-section h3 {
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 500;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-grey);
            line-height: 2.2;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
        }

        .footer-section a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-start;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-links a {
            font-size: 1.3rem;
            width: 50px;
            height: 50px;
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            color: var(--primary-dark);
            transform: translateY(-8px) rotate(360deg);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: var(--text-grey);
            letter-spacing: 1.5px;
            font-size: clamp(0.85rem, 1.5vw, 1rem);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 8px;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(212, 175, 55, 0.2);
            border-top-color: var(--accent-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
        }

        .scroll-top::before {
            content: '↑';
            font-size: 1.5rem;
            color: var(--primary-dark);
            font-weight: bold;
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            nav {
                padding: 0 5%;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                height: 100vh;
                width: 85%;
                max-width: 350px;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 6rem 2rem;
                gap: 2rem;
                transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 1px solid rgba(212, 175, 55, 0.2);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-menu {
                display: flex;
                z-index: 1002;
            }

            #hero {
                background-attachment: scroll;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
            }

            .btn {
                width: 100%;
                max-width: 350px;
                margin: 0 auto;
            }

            .footer-content {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }

        /* Tablet Optimizations */
        @media (min-width: 769px) and (max-width: 1024px) {
            .rooms-grid,
            .spa-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Large Screen Optimizations */
        @media (min-width: 1600px) {
            .rooms-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
