﻿        :root {
            --brand: #e91e63;
            --brand2: #ff6b9d;
            --ink: #1f2937;
            --muted: #6b7280;
            --card: #fff;
            --ring: rgba(233, 30, 99, .25);
            --shadow: 0 10px 30px rgba(233, 30, 99, .12);
            --shadow-lg: 0 22px 60px rgba(233, 30, 99, .18);
            --radius: 20px;
            --radius-lg: 24px;
            --container: 1200px;
        }

        * {
            box-sizing: border-box
        }

        body {
            margin: 0;
            color: var(--ink);
            font-family: Poppins, system-ui, Segoe UI, Roboto, Arial, sans-serif;
            background: linear-gradient(120deg, #f8f9fa 0%, #ffe3ed 100%);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--container);
            padding: 0 20px;
            margin: 0 auto
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, .8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #fce4ec
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: .75rem
        }

        .logo {
            height: 40px;
            width: auto
        }

        .brand-name {
            font-family: "Playfair Display", serif;
            font-weight: 700;
            letter-spacing: .2px;
            color: var(--brand);
            margin: 0
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            list-style: none;
            margin: 0;
            padding: 0
        }

        .nav-menu a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 600;
            border-radius: 999px;
            padding: .55rem .9rem;
            min-height: 44px;
            display: flex;
            align-items: center;
            transition: .2s
        }

        .nav-menu a:hover {
            background: #ffe3ed;
            color: #c2185b
        }

        .theme-toggle {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            min-height: 42px;
            padding: .5rem .85rem;
            border-radius: 999px;
            border: 1px solid rgba(233, 30, 99, .24);
            background: rgba(255, 255, 255, .9);
            color: #253044;
            font-weight: 600;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            border-color: rgba(15, 163, 154, .3);
            box-shadow: 0 10px 18px rgba(16, 41, 66, .16);
        }

        .hero-text-col {
            flex: 1;
            min-width: 260px;
            max-width: 520px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-media-col {
            flex: 1;
            min-width: 260px;
            max-width: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .booking-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1.4rem;
        }

        .location-inline-link {
            color: var(--ink);
            text-decoration: none;
        }

        .rules-menu-spaced {
            margin-bottom: 1.5rem;
        }

        .hidden-initial {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer
        }

        .hamburger span {
            display: block;
            height: 2px;
            width: 24px;
            background: var(--ink);
            border-radius: 2px
        }

        /* Hero */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            min-height: 340px;
            margin-bottom: 2.5rem;
        }

        .hero-content {
            flex: 1;
            min-width: 260px;
            max-width: 520px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2.2rem 1.2rem 2.2rem 0;
        }

        .hero-title {
            font-family: "Playfair Display", serif;
            font-weight: 700;
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            margin: .2rem 0;
            color: #111827
        }

        .hero-subtitle {
            color: var(--muted);
            font-size: 1.25rem;
            margin: 0 0 1.7rem
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: linear-gradient(90deg, #e91e63 0%, #ff6b9d 100%);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            border: none;
            border-radius: 24px;
            padding: 12px 32px;
            box-shadow: 0 2px 8px #e91e6344;
            transition: box-shadow 0.2s, background 0.2s, color 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: linear-gradient(90deg, #ff6b9d 0%, #e91e63 100%);
            box-shadow: 0 6px 18px #e91e6344;
            color: #fff;
        }

        .hero-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            object-fit: cover
        }

        /* Hero Image Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 2.5rem auto;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 8px 32px #e91e6344;
            background: #fff;
        }

        .hero-slider-images {
            display: flex;
            transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
        }

        .hero-slider-img {
            min-width: 100%;
            height: 340px;
            object-fit: cover;
            border-radius: 24px;
        }

        .hero-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(233, 30, 99, 0.85);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            font-size: 1.7rem;
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 2px 8px #e91e6344;
            transition: background 0.2s;
        }

        .hero-slider-btn:hover {
            background: #ff6b9d;
        }

        .hero-slider-btn.left {
            left: 18px;
        }

        .hero-slider-btn.right {
            right: 18px;
        }

        @media (max-width: 900px) {
            .hero-slider-img {
                height: 200px;
            }
        }

        @media (max-width: 600px) {
            .hero-slider-img {
                height: 120px;
            }

            .hero-slider-btn {
                width: 32px;
                height: 32px;
                font-size: 1.1rem;
            }
        }

        /* Valentine's Seasonal Banner */
        .festive-banner {
            background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 50%, #ffc0cb 100%);
            position: relative;
            overflow: hidden;
            padding: 0;
            margin: 0;
            box-shadow: 0 8px 32px rgba(233, 30, 99, 0.4);
        }

        .festive-banner::before {
            content: 'â˜• ðŸ¥ ðŸ³ âœ¨ ðŸŒ… â˜• ðŸ¥ ðŸ³ âœ¨ ðŸŒ…';
            position: absolute;
            top: 8px;
            left: 0;
            width: 200%;
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.2);
            animation: scrollEmojis 20s linear infinite;
            white-space: nowrap;
            z-index: 1;
        }

        @keyframes scrollEmojis {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .festive-content {
            position: relative;
            z-index: 2;
            padding: 3rem 1.5rem;
        }

        .festive-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .festive-badge {
            display: inline-block;
            background: linear-gradient(90deg, #ffc0cb, #ffb6c1);
            color: #c2185b;
            padding: 8px 24px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .festive-title {
            font-family: "Playfair Display", serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #fff;
            margin: 0.5rem 0;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .festive-subtitle {
            color: #ffe3ed;
            font-size: 1.1rem;
            margin: 0.5rem 0 0 0;
        }

        .promo-slider-container {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
        }

        .promo-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .promo-slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            padding: 1rem;
        }

        .promo-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            gap: 1.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .promo-card:hover {
            transform: scale(1.02);
        }

        .promo-images {
            position: relative;
            width: 45%;
            min-height: 280px;
            overflow: hidden;
        }

        .promo-img-slider {
            display: flex;
            height: 100%;
            transition: transform 0.4s ease;
        }

        .promo-img {
            min-width: 100%;
            height: 100%;
            object-fit: contain;
            background: #fff;
        }

        .promo-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(233, 30, 99, 0.9);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 1.4rem;
            cursor: pointer;
            z-index: 3;
            transition: background 0.2s;
        }

        .promo-nav:hover {
            background: #c41e3a;
        }

        .promo-nav.left {
            left: 10px;
        }

        .promo-nav.right {
            right: 10px;
        }

        .promo-info {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .promo-room-type {
            color: #e91e63;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .promo-room-name {
            font-family: "Playfair Display", serif;
            font-size: 1.8rem;
            color: #1f2937;
            margin: 0 0 1rem 0;
        }

        .promo-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }

        .promo-feature {
            background: #fff3f8;
            color: #c2185b;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .promo-pricing {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .original-price {
            color: #9ca3af;
            text-decoration: line-through;
            font-size: 1.3rem;
        }

        .promo-price {
            color: #c41e3a;
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
        }

        .promo-price small {
            font-size: 0.9rem;
            font-weight: 600;
            color: #6b7280;
        }

        .promo-badge {
            background: linear-gradient(90deg, #ff85a2, #ffc0cb);
            color: #c2185b;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .promo-valid {
            color: #6b7280;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .promo-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(90deg, #e91e63, #ff4081);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            border-radius: 24px;
            padding: 12px 28px;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
            transition: all 0.3s;
            width: fit-content;
        }

        .promo-cta:hover {
            background: linear-gradient(90deg, #c2185b, #e91e63);
            box-shadow: 0 6px 18px rgba(233, 30, 99, 0.5);
            transform: translateY(-2px);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .slider-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #ff4081;
            transform: scale(1.3);
        }

        .slider-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: #ff4081;
        }

        @media (max-width: 900px) {
            .promo-card {
                flex-direction: column;
            }

            .promo-images {
                width: 100%;
                min-height: 220px;
            }

            .promo-info {
                padding: 1.5rem;
            }

            .promo-room-name {
                font-size: 1.5rem;
            }

            .promo-price {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 600px) {
            .festive-content {
                padding: 2rem 1rem;
            }

            .promo-slide {
                padding: 0.5rem;
            }

            .promo-images {
                min-height: 180px;
            }

            .promo-info {
                padding: 1rem;
            }

            .promo-room-name {
                font-size: 1.3rem;
            }
        }

        /* Sections */
        section {
            padding: 3.5rem 0
        }

        .section-title {
            font-family: "Playfair Display", serif;
            color: var(--brand);
            font-size: 1.9rem;
            margin: 0 0 1rem
        }

        .section-subtitle {
            color: var(--muted);
            margin-top: -.4rem
        }

        /* App Download Banner */
        .app-download-banner {
            background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
            color: #fff;
            border-radius: 24px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 1000px;
            box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .app-banner-content {
            flex: 1;
            min-width: 260px;
        }

        .app-banner-content h3 {
            font-family: "Playfair Display", serif;
            font-size: 1.8rem;
            margin: 0 0 0.5rem 0;
            font-weight: 700;
        }

        .app-banner-content p {
            margin: 0.5rem 0;
            opacity: 0.95;
            font-size: 1.05rem;
        }

        .app-banner-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .app-banner-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
        }

        .app-banner-feature i {
            font-size: 1.2rem;
        }

        .app-banner-actions {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: flex-end;
        }

        .app-install-btn {
            background: #fff;
            color: #e91e63;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            text-decoration: none;
        }

        .app-install-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .app-install-btn i {
            font-size: 1.3rem;
        }

        .app-platforms {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .app-platforms i {
            margin-right: 0.3rem;
        }

        @media (max-width: 900px) {
            .app-download-banner {
                padding: 1.5rem;
                text-align: center;
            }

            .app-banner-content h3 {
                font-size: 1.5rem;
            }

            .app-banner-actions {
                align-items: center;
                width: 100%;
            }

            .app-install-btn {
                width: 100%;
                justify-content: center;
            }

            .app-banner-features {
                justify-content: center;
            }
        }

        /* About Features */
        .about-text {
            max-width: 860px
        }

        .features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 1.4rem
        }

        .feature {
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius);
            padding: 1.2rem;
            box-shadow: var(--shadow);
            transition: .2s
        }

        .feature:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg)
        }

        .feature i {
            color: var(--brand);
            font-size: 1.25rem;
            margin-bottom: .3rem
        }

        /* Specials */
        .specials {
            background: linear-gradient(180deg, #fff 0%, #fff6fb 100%);
            border-top: 1px solid #fce4ec;
            border-bottom: 1px solid #fce4ec
        }

        .specials-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 900px) {
            .specials-list {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        }

        .special-card {
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius);
            padding: 1.7rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            font-size: 1.15rem;
        }

        .special-card h3 {
            margin: .1rem 0 .35rem;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .special-card p {
            margin: .2rem 0 .8rem;
            color: var(--muted);
            font-size: 1.08rem;
        }

        .special-price {
            font-weight: 800;
            color: #111827;
            font-size: 1.22rem;
        }

        .badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #1de9b6;
            color: #073d32;
            font-weight: 800;
            border-radius: 999px;
            padding: .25rem .6rem;
            font-size: .78rem
        }

        /* Rooms */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.5rem;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 900px) {
            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        }

        .room-card {
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius-lg);
            padding: 1.6rem;
            box-shadow: var(--shadow);
            transition: .25s
        }

        .room-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg)
        }

        .room-info h3 {
            margin: .6rem 0 .25rem
        }

        .room-price {
            font-weight: 800;
            margin: .25rem 0
        }

        .room-price span {
            font-weight: 600;
            color: var(--muted)
        }

        .room-location {
            color: var(--muted);
            margin: .4rem 0
        }

        .room-features {
            list-style: none;
            margin: .6rem 0 0;
            padding: 0
        }

        .room-features li {
            display: flex;
            align-items: center;
            margin: .28rem 0
        }

        .room-features i {
            margin-right: 8px;
            color: var(--brand)
        }

        .room-badge {
            display: inline-block;
            margin-top: .35rem;
            background: #fff0f5;
            border: 1px solid #ffc1d6;
            color: #a30e45;
            padding: .25rem .55rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: .82rem
        }

        /* Main image + thumbs slider */
        .room-gallery {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
            border-radius: 22px;
            box-shadow: 0 6px 24px #e91e6344;
            background: #fff;
            margin-bottom: 1.7rem;
        }

        .room-main-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 10px 32px rgba(233, 30, 99, .18);
        }

        }

        .thumbs-wrap {
            position: relative
        }

        .thumbs-track {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 6px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .thumb {
            flex: 0 0 auto;
            scroll-snap-align: start;
            border-radius: 14px;
            border: 1px solid #fce4ec;
            box-shadow: 0 4px 14px rgba(233, 30, 99, .14);
            transition: transform .2s, box-shadow .2s
        }

        .thumb img {
            display: block;
            width: 320px;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 18px;
        }

        }

        .thumb:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 24px rgba(233, 30, 99, .2)
        }

        .thumbs-nav {
            position: absolute;
            inset: 0;
            pointer-events: none
        }

        .thumbs-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: auto;
            border: none;
            cursor: pointer;
            height: 40px;
            width: 40px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #fce4ec;
            box-shadow: 0 6px 18px rgba(233, 30, 99, .18);
        }

        .thumbs-btn.left {
            left: -6px
        }

        .thumbs-btn.right {
            right: -6px
        }

        /* Featured carousel */
        .rooms-carousel-wrapper {
            position: relative;
            margin-top: 1.5rem
        }

        .rooms-carousel {
            min-height: 280px
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: #fff;
            border: 1px solid #fce4ec;
            border-radius: 999px;
            height: 42px;
            width: 42px;
            display: grid;
            place-items: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: .2s
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.05)
        }

        .carousel-btn.left {
            left: -6px
        }

        .carousel-btn.right {
            right: -6px
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        }

        .gallery-item {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid #fce4ec;
            background: var(--card)
        }

        .gallery-item img {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 22px;
        }



        /* Contact */
        .contact-content {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 1.4rem
        }

        .contact-item {
            display: flex;
            gap: .85rem;
            align-items: flex-start;
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius);
            padding: 1rem;
            box-shadow: var(--shadow)
        }

        .contact-item i {
            color: var(--brand);
            margin-top: .15rem
        }

        .contact-form {
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius);
            padding: 1.2rem;
            box-shadow: var(--shadow)
        }

        .form-group {
            margin: .7rem 0
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            border: 1.5px solid #fce4ec;
            border-radius: 12px;
            padding: .8rem 1rem;
            font: inherit;
            outline: none;
            transition: .2s
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 6px var(--ring)
        }

        .submit-btn {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: linear-gradient(90deg, var(--brand), var(--brand2));
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: .8rem 1.2rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: .2s
        }

        .submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg)
        }

        /* Location & Directions */
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 2rem;
            align-items: start;
        }

        .location-info {
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }

        .location-info h3 {
            font-family: "Playfair Display", serif;
            color: var(--brand);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .location-details {
            margin-bottom: 2rem;
        }

        .location-details p {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin: 1rem 0;
            line-height: 1.6;
        }

        .location-details i {
            color: var(--brand);
            margin-top: .25rem;
            font-size: 1.2rem;
        }

        .directions-btn {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            background: linear-gradient(90deg, var(--brand), var(--brand2));
            color: #fff;
            text-decoration: none;
            border-radius: 999px;
            padding: 1rem 1.8rem;
            font-weight: 700;
            box-shadow: var(--shadow);
            transition: .2s;
            margin-top: 1rem;
        }

        .directions-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .map-container {
            background: var(--card);
            border: 1px solid #fce4ec;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 900px) {
            .location-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .map-container {
                height: 350px;
            }
        }

        /* Modern room/gallery/card styles */
        .room-gallery-img {
            width: 220px;
            height: 160px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: 0 4px 18px #e91e6344;
            margin: 0 8px 12px 0;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .room-gallery-img:hover {
            transform: scale(1.06) rotate(-2deg);
            box-shadow: 0 10px 32px #e91e6344;
        }

        .room-card,
        .room-slide {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 24px;
            box-shadow: 0 8px 32px #e91e6344;
            padding: 2.2rem 1.7rem 1.7rem 1.7rem;
            margin-bottom: 2.2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: box-shadow 0.2s, transform 0.2s;
            width: 100%;
            box-sizing: border-box;
        }

        .room-card:hover,
        .room-slide:hover {
            box-shadow: 0 16px 48px #e91e6344;
            transform: scale(1.02);
        }

        .room-info {
            margin-top: 1.2rem;
            width: 100%;
        }

        .room-features {
            margin: 0.7rem 0 0.5rem 0;
            padding: 0;
            list-style: none;
            font-size: 1.08rem;
        }

        .room-features li {
            margin-bottom: 0.35rem;
            display: flex;
            align-items: center;
        }

        .room-features i {
            margin-right: 8px;
            color: #e91e63;
            font-size: 1.15em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 18px;
            box-sizing: border-box;
        }

        .divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #e91e63 0%, #ff6b9d 100%);
            margin: 2rem 0;
            border-radius: 2px;
            opacity: .18;
            box-shadow: 0 1px 8px #e91e6344;
        }

        /* WhatsApp floating button */
        .whatsapp-float {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 999;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 18px #25d36644;
            font-size: 2.2rem;
            transition: box-shadow 0.2s, background 0.2s;
            cursor: pointer;
        }

        .whatsapp-float:hover {
            background: #128c7e;
            box-shadow: 0 8px 32px #128c7e44;
        }

        /* Feedback Button */
        .feedback-float {
            position: fixed;
            right: 24px;
            bottom: 100px;
            z-index: 999;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border-radius: 30px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 18px rgba(102, 126, 234, 0.4);
            font-size: 16px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            cursor: pointer;
            animation: pulse 2s infinite;
            white-space: nowrap;
        }

        .feedback-float i {
            font-size: 20px;
        }

        .feedback-float:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.6);
        }

        /* Install App Button */
        .install-app-float {
            position: fixed;
            right: 24px;
            bottom: 176px;
            z-index: 999;
            background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
            color: #fff;
            border-radius: 30px;
            padding: 12px 24px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 18px rgba(233, 30, 99, 0.4);
            font-size: 16px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            cursor: pointer;
            animation: slideInRight 0.5s;
            white-space: nowrap;
        }

        .install-app-float.show {
            display: flex;
        }

        .install-app-float i {
            font-size: 20px;
        }

        .install-app-float:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(233, 30, 99, 0.6);
        }

        @keyframes slideInRight {
            from {
                transform: translateX(200px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 4px 18px rgba(102, 126, 234, 0.4);
            }

            50% {
                box-shadow: 0 4px 25px rgba(102, 126, 234, 0.7);
            }
        }

        /* Feedback Modal */
        .feedback-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s;
        }

        .feedback-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feedback-modal-content {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            animation: slideUp 0.4s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .feedback-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #f5f5f5;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .feedback-close:hover {
            background: #e91e63;
            color: white;
            transform: rotate(90deg);
        }

        .feedback-form h2 {
            color: #333;
            margin-bottom: 10px;
            font-size: 28px;
        }

        .feedback-form p {
            color: #666;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .rating-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .rating-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-item label {
            margin: 0;
            flex: 1;
        }

        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            cursor: pointer;
            font-size: 28px;
            color: #ddd;
            transition: color 0.2s;
        }

        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #ffc107;
        }

        .recommend-group {
            display: flex;
            gap: 15px;
        }

        .recommend-option {
            flex: 1;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .recommend-option input {
            display: none;
        }

        .recommend-option:has(input:checked) {
            border-color: #667eea;
            background: #f0f3ff;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .success-message {
            text-align: center;
            padding: 40px;
        }

        .success-message i {
            font-size: 60px;
            color: #38ef7d;
            margin-bottom: 20px;
        }

        .success-message h3 {
            color: #333;
            margin-bottom: 10px;
        }

        @media (max-width: 900px) {
            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .room-gallery-img {
                width: 140px;
                height: 100px;
            }

            .room-card,
            .room-slide {
                padding: 1.2rem 0.7rem;
            }

            .hero {
                flex-direction: column;
                gap: 1.2rem;
                min-height: 200px;
            }

            .hero-content {
                padding: 1.2rem 0.7rem;
            }
        }

        @media (max-width: 600px) {
            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .room-gallery-img {
                width: 100px;
                height: 70px;
            }

            .room-card,
            .room-slide {
                padding: 0.7rem 0.3rem;
            }

            .whatsapp-float {
                right: 12px;
                bottom: 12px;
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }

            .hero {
                flex-direction: column;
                gap: 0.7rem;
                min-height: 120px;
            }

            .hero-content {
                padding: 0.7rem 0.3rem;
            }
        }

        .footer-modern {
            background: linear-gradient(90deg, #ffe3ed 0%, #f8f9fa 100%);
            border-top: 2px solid #e91e63;
            padding: 2.5rem 0 1.2rem 0;
            margin-top: 3rem;
            color: #c2185b;
            font-family: 'Poppins', Arial, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0 18px;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            color: #e91e63;
            margin-bottom: 0.5rem;
        }

        .footer-brand p {
            font-size: 1.05rem;
            color: #c2185b;
            margin-bottom: 1.2rem;
        }

        .footer-contact h4,
        .footer-location h4,
        .footer-social h4 {
            font-size: 1.1rem;
            color: #e91e63;
            margin-bottom: 0.7rem;
        }

        .footer-contact p,
        .footer-location p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .footer-contact i,
        .footer-location i {
            margin-right: 7px;
            color: #e91e63;
        }

        .footer-contact a,
        .footer-location a {
            color: #c2185b;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-contact a:hover,
        .footer-location a:hover {
            color: #e91e63;
            text-decoration: underline;
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-social .social-link {
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-top: 0.5rem;
            box-shadow: 0 2px 8px #25d36644;
            transition: background 0.2s;
        }

        .footer-social .social-link:hover {
            background: #128c7e;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            color: #777;
            font-size: 0.98rem;
        }

        @media (max-width: 900px) {
            .footer-container {
                flex-direction: column;
                gap: 1.5rem;
                align-items: stretch;
            }
        }

        .suite-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.08rem;
            font-weight: 600;
            color: #e91e63;
            background: #ffe3ed;
            border-radius: 16px;
            padding: 4px 14px;
            margin-bottom: 0.7rem;
            box-shadow: 0 2px 8px #e91e6344;
        }

        .suite-subtitle i {
            font-size: 1.2em;
            color: #c2185b;
        }

        .rooms-type-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.2rem;
            margin-bottom: 2.2rem;
            width: 100%;
            box-sizing: border-box;
        }

        .room-type-title {
            margin-top: 2.2rem;
            color: #e91e63;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .room-card {
            cursor: pointer;
            text-decoration: none;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .room-card .book-now-btn {
            margin-top: 1.2rem;
            background: #25d366;
            color: #fff;
            border-radius: 18px;
            padding: 8px 18px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            box-shadow: 0 2px 8px #25d36644;
            transition: background 0.2s;
        }

        .room-card .book-now-btn:hover {
            background: #128c7e;
        }

        .room-gallery {
            position: relative;
            width: 100%;
            height: 260px;
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 4px 18px #e91e6344;
            background: #fff;
            margin-bottom: 1.2rem;
        }

        .room-gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 18px;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: none;
        }

        .room-gallery-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(233, 30, 99, 0.85);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 38px;
            height: 38px;
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 2px 8px #e91e6344;
            transition: background 0.2s;
        }

        .room-gallery-btn:hover {
            background: #ff6b9d;
        }

        .room-gallery-btn.left {
            left: 12px;
        }

        .room-gallery-btn.right {
            right: 12px;
        }

        @media (max-width: 900px) {
            .room-gallery {
                height: 160px;
            }
        }

        @media (max-width: 600px) {
            .room-gallery {
                height: 100px;
            }

            .room-gallery-btn {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }
        }

        /* ====== */
        /* Header */
        /* ====== */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, .9);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid #fce4ec
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 1rem;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: #fff;
            padding: 1.5rem 1rem;
            border-top: 1px solid #fce4ec;
            border-bottom: 1px solid #fce4ec;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
        }

        .mobile-link {
            color: #2d2d2d;
            text-decoration: none;
            font-weight: 600;
            padding: .7rem 0;
            transition: color 0.2s;
        }

        .mobile-link:hover {
            color: var(--brand);
        }

        @media (max-width: 900px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }
        }

        .gallery-slider {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 2.5rem auto;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 8px 32px #e91e6344;
            background: #fff;
            height: 340px;
            display: flex;
            align-items: center;
        }

        .gallery-slider-images {
            display: flex;
            transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
            width: 100%;
            height: 340px;
        }

        .gallery-slider-img {
            min-width: 100%;
            height: 340px;
            object-fit: cover;
            border-radius: 24px;
        }

        .gallery-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(233, 30, 99, 0.85);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            font-size: 1.7rem;
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 2px 8px #e91e6344;
            transition: background 0.2s;
        }

        .gallery-slider-btn.left {
            left: 18px;
        }

        .gallery-slider-btn.right {
            right: 18px;
        }

        .gallery-slider-btn:hover {
            background: #ff6b9d;
        }

        @media (max-width: 900px) {

            .gallery-slider,
            .gallery-slider-images,
            .gallery-slider-img {
                height: 200px;
            }
        }

        @media (max-width: 600px) {

            .gallery-slider,
            .gallery-slider-images,
            .gallery-slider-img {
                height: 120px;
            }

            .gallery-slider-btn {
                width: 32px;
                height: 32px;
                font-size: 1.1rem;
            }
        }

        /* --- Global safety: absolutely no sideways scroll on mobile --- */
        html,
        body {
            max-width: 100%;
            overflow-x: hidden !important;
        }

        img,
        video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Make the main container breathe a bit less on phones */
        @media (max-width: 600px) {
            .container {
                max-width: 100%;
                padding: 0 14px;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* --- HERO becomes a perfect square on phones --- */
        @media (max-width: 600px) {
            .hero {
                gap: 0.8rem;
            }

            .hero-content {
                padding: 0.6rem 0.3rem;
            }

            .hero-slider {
                width: 100%;
                aspect-ratio: 1 / 1;
                /* square container */
                height: auto;
                /* let aspect-ratio decide height */
                border-radius: 16px;
            }

            .hero-slider-images {
                height: 100%;
            }

            .hero-slider-img {
                min-width: 100%;
                height: 100%;
                object-fit: cover;
                /* fill square nicely */
                border-radius: 16px;
            }

            .hero-slider-btn {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
        }

        /* --- Specials: stack cleanly, no overflow --- */
        @media (max-width: 600px) {
            .specials-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .special-card {
                padding: 1rem;
            }
        }

        /* --- Rooms grid: one column, no overflow --- */
        @media (max-width: 600px) {
            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .room-card,
            .room-slide {
                padding: 1rem;
                border-radius: 16px;
            }

            .suite-subtitle {
                font-size: 0.95rem;
            }
        }

        /* --- Room gallery: IG-style square on phones --- */
        @media (max-width: 600px) {
            .room-gallery {
                width: 100%;
                aspect-ratio: 1 / 1;
                /* square */
                height: auto;
                border-radius: 16px;
            }

            .room-gallery-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* crop to square nicely */
                border-radius: 16px;
            }

            /* Keep nav buttons inside so they don't cause layout overflow */
            .room-gallery-btn {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }

            .room-gallery-btn.left {
                left: 8px;
            }

            .room-gallery-btn.right {
                right: 8px;
            }
        }

        /* --- Featured carousel + thumbs: no horizontal page scroll on phones --- */
        @media (max-width: 600px) {

            /* if thumbs exist, show as grid instead of side-scroll */
            .thumbs-track {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                overflow-x: hidden;
                /* stop inner horizontal scroll */
            }

            .thumb {
                border-radius: 12px;
            }

            .thumb img {
                width: 100%;
                aspect-ratio: 1 / 1;
                object-fit: cover;
                border-radius: 12px;
            }

            .thumbs-btn.left {
                left: 8px;
            }

            .thumbs-btn.right {
                right: 8px;
            }
        }

        /* --- Gallery (the big slider): square on phones --- */
        @media (max-width: 600px) {
            .gallery-slider {
                width: 100%;
                aspect-ratio: 1 / 1;
                /* square container */
                height: auto;
                border-radius: 16px;
            }

            .gallery-slider-images,
            .gallery-slider-img {
                height: 100%;
            }

            .gallery-slider-img {
                min-width: 100%;
                object-fit: cover;
                border-radius: 16px;
            }

            .gallery-slider-btn {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
        }

        /* --- Static gallery grid (if/when used): squares, no overflow --- */
        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .gallery-item img {
                aspect-ratio: 1 / 1;
                object-fit: cover;
                border-radius: 12px;
            }
        }

        /* --- Footer / misc buttons safe on phones --- */
        @media (max-width: 600px) {
            .whatsapp-float {
                right: 12px;
                bottom: 12px;
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }

            .carousel-btn.left {
                left: 8px;
            }

            .carousel-btn.right {
                right: 8px;
            }
        }

        /* --- Contact layout: fix overflow + stack on mobile --- */
        .contact-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            /* keep desktop split */
            gap: 1.2rem;
            align-items: start;
        }

        /* Let grid children shrink so they don't push the layout sideways */
        .contact-content>* {
            min-width: 0;
        }

        .contact-info,
        .contact-form {
            width: 100%;
        }

        /* Make all form controls truly fluid */
        .form-group input,
        .form-group textarea {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        /* If you inject a Google Map iframe, make it responsive */
        .contact-item iframe {
            display: block;
            width: 100% !important;
            max-width: 100%;
            height: 240px;
            border: 0;
        }

        /* Stack on tablet/phone */
        @media (max-width: 900px) {
            .contact-content {
                grid-template-columns: 1fr;
                /* one column */
            }
        }

        /* Tighten spacing on small phones */
        @media (max-width: 600px) {
            .contact-content {
                gap: 0.9rem;
            }

            .contact-form,
            .contact-item {
                padding: 0.9rem;
            }
        }

        /* Safety: never allow sideways scroll in contact section */
        #contact .container,
        .contact-content {
            overflow-x: hidden;
        }

        /* Global: include iframes in the responsive media rule */
        img,
        video,
        iframe {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* === Luxury Experience (4 icons) â€” responsive + no overflow === */
        .features {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            /* allow shrink */
            gap: 1.2rem;
            align-items: stretch;
        }

        .features>* {
            min-width: 0;
        }

        /* stop grid items from pushing sideways */

        .feature {
            width: 100%;
            text-align: center;
            padding: 1.2rem;
            border-radius: 16px;
        }

        .feature i {
            /* make the icon a tidy, tappable square badge */
            display: inline-grid;
            place-items: center;
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: #ffe3ed;
            color: #e91e63;
            font-size: 1.6rem;
            line-height: 1;
            margin: 0 auto .6rem;
        }

        /* prevent long words/descriptions from blowing out the card */
        .feature h3,
        .feature p {
            overflow-wrap: anywhere;
        }

        /* Tablet: 2-up grid */
        @media (max-width: 900px) {
            .features {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1rem;
            }
        }

        /* Phone: 1-up stack */
        @media (max-width: 600px) {
            .features {
                grid-template-columns: 1fr;
                gap: .8rem;
            }

            .feature {
                padding: .9rem;
            }

            .feature i {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
                border-radius: 10px;
            }
        }

        /* 2026 visual refresh */
        :root {
            --modern-bg: #f6f4ef;
            --modern-bg-soft: #fff8ef;
            --modern-ink: #16212f;
            --modern-subtle: #56637a;
            --modern-primary: #e91e63;
            --modern-primary-2: #ff6fa8;
            --modern-accent: #ff8f4a;
            --modern-line: rgba(22, 33, 47, 0.12);
            --modern-shadow: 0 24px 60px rgba(17, 32, 55, 0.14);
            --modern-card: rgba(255, 255, 255, 0.82);
        }

        body[data-theme="coastal"] {
            --modern-bg: #ecf7f6;
            --modern-bg-soft: #f5fefd;
            --modern-ink: #123640;
            --modern-subtle: #4e6f77;
            --modern-primary: #109f95;
            --modern-primary-2: #2cc5b9;
            --modern-accent: #f59d3e;
            --modern-line: rgba(18, 54, 64, 0.14);
            --modern-shadow: 0 24px 60px rgba(13, 58, 66, 0.16);
            --modern-card: rgba(255, 255, 255, 0.84);
        }

        body {
            font-family: "Outfit", "Poppins", sans-serif;
            color: var(--modern-ink);
            background:
                radial-gradient(circle at 12% 16%, rgba(255, 111, 168, 0.28), transparent 32%),
                radial-gradient(circle at 88% 6%, rgba(255, 143, 74, 0.18), transparent 28%),
                linear-gradient(180deg, #fffdf9 0%, var(--modern-bg) 52%, #f0f4f6 100%);
            min-height: 100vh;
        }

        body[data-theme="coastal"] {
            background:
                radial-gradient(circle at 10% 18%, rgba(44, 197, 185, 0.26), transparent 30%),
                radial-gradient(circle at 85% 8%, rgba(245, 157, 62, 0.2), transparent 26%),
                linear-gradient(180deg, #fbfffe 0%, var(--modern-bg) 55%, #edf4f8 100%);
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: radial-gradient(rgba(22, 33, 47, 0.05) 0.8px, transparent 0.8px);
            background-size: 26px 26px;
            pointer-events: none;
            z-index: -1;
            opacity: 0.65;
        }

        .header {
            background: rgba(250, 246, 239, 0.78);
            border-bottom: 1px solid rgba(255, 255, 255, 0.48);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
        }

        .navbar {
            height: 78px;
        }

        .brand-name,
        .section-title,
        .hero-title,
        .footer-brand h3 {
            font-family: "Prata", "Playfair Display", serif;
            letter-spacing: 0.2px;
        }

        .brand-name {
            color: #d42f72;
            font-size: clamp(1.2rem, 1.8vw, 1.55rem);
        }

        .nav-menu a {
            color: #293548;
            font-weight: 600;
            border: 1px solid transparent;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
        }

        .nav-menu a:hover {
            color: #1b2735;
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(15, 163, 154, 0.22);
            transform: translateY(-1px);
        }

        .theme-toggle {
            border-color: rgba(212, 47, 114, 0.28);
            background: rgba(255, 255, 255, 0.87);
            color: #263349;
        }

        .theme-toggle i {
            color: var(--modern-primary);
        }

        .hero {
            min-height: 440px;
            margin-top: 1.15rem;
            padding: 2rem 2.2rem;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 247, 235, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: var(--modern-shadow);
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            top: -90px;
            right: -70px;
            background: radial-gradient(circle at center, rgba(255, 111, 168, 0.34), transparent 70%);
            pointer-events: none;
        }

        .hero-subtitle {
            color: var(--modern-subtle);
            max-width: 44ch;
        }

        .cta-button,
        .promo-cta,
        .submit-btn {
            background: linear-gradient(120deg, var(--modern-primary), var(--modern-primary-2));
            box-shadow: 0 16px 32px rgba(233, 30, 99, 0.26);
            border: none;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .cta-button:hover,
        .promo-cta:hover,
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 36px rgba(233, 30, 99, 0.35);
        }

        .hero-slider,
        .promo-card,
        .room-slide,
        .room-card,
        .special-card,
        .gallery-item,
        .contact-item,
        .contact-form,
        .footer-modern,
        .rules {
            background: var(--modern-card);
            border: 1px solid rgba(255, 255, 255, 0.78);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            box-shadow: var(--modern-shadow);
        }

        .hero-slider,
        .promo-card,
        .room-slide,
        .room-card,
        .special-card,
        .gallery-item,
        .contact-item,
        .contact-form,
        .rules,
        .footer-modern {
            border-radius: 24px;
        }

        .festive-banner {
            border-radius: 30px;
            margin: 1rem auto 2rem;
            max-width: 1200px;
            background: linear-gradient(120deg, #dd2f77 0%, #f66a9f 52%, #ff9448 100%);
            box-shadow: 0 22px 56px rgba(19, 45, 71, 0.28);
        }

        .festive-badge {
            color: #65301e;
            background: linear-gradient(120deg, #ffe2bb, #fff4dc);
        }

        .section-title {
            color: #1a2a40;
            font-size: clamp(1.45rem, 2.2vw, 2.15rem);
            margin-bottom: 1rem;
        }

        .section-title i {
            color: var(--modern-accent);
            margin-right: .4rem;
        }

        .specials,
        .rooms,
        .gallery,
        .contact,
        .rules,
        .about {
            position: relative;
        }

        .special-card,
        .room-card,
        .gallery-item,
        .contact-item,
        .feature {
            transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
            border: 1px solid transparent;
        }

        .special-card:hover,
        .room-card:hover,
        .gallery-item:hover,
        .contact-item:hover,
        .feature:hover {
            transform: translateY(-5px);
            border-color: rgba(15, 163, 154, 0.3);
            box-shadow: 0 20px 34px rgba(20, 52, 80, 0.18);
        }

        .room-price,
        .special-price {
            color: #c74022;
        }

        .room-badge,
        .promo-badge,
        .book-now-btn {
            background: linear-gradient(120deg, var(--modern-primary), var(--modern-accent));
            color: #fff;
        }

        .footer-modern {
            margin: 2.5rem auto 1.2rem;
            max-width: 1200px;
            padding-top: 2.2rem;
        }

        .footer-bottom {
            border-top: 1px solid var(--modern-line);
        }

        .whatsapp-float,
        .feedback-float,
        .install-app-float {
            box-shadow: 0 16px 24px rgba(26, 50, 74, 0.25);
        }

        /* Preloader */
        .site-preloader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: grid;
            place-items: center;
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 170, 126, 0.28), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(15, 163, 154, 0.24), transparent 42%),
                linear-gradient(150deg, #fffdf8, #f7f2ea);
            transition: opacity .5s ease, visibility .5s ease;
        }

        .site-preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-box {
            text-align: center;
            padding: 2rem;
        }

        .preloader-mark {
            width: 74px;
            height: 74px;
            border-radius: 22px;
            border: 2px solid rgba(15, 163, 154, 0.25);
            display: grid;
            place-items: center;
            margin: 0 auto .85rem;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 12px 28px rgba(24, 55, 86, 0.18);
        }

        .preloader-mark img {
            width: 44px;
            height: 44px;
            object-fit: contain;
        }

        .preloader-spin {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(255, 90, 54, 0.18);
            border-top-color: var(--modern-primary);
            border-right-color: var(--modern-accent);
            border-radius: 50%;
            margin: -77px auto 1.4rem;
            animation: spinLoader 1s linear infinite;
        }

        .preloader-text {
            font-family: "Prata", serif;
            font-size: 1.15rem;
            color: #223049;
            margin: 0;
        }

        .preloader-sub {
            color: #5b6678;
            font-size: .95rem;
            margin-top: .35rem;
        }

        .preloader-progress {
            width: min(240px, 72vw);
            height: 7px;
            border-radius: 999px;
            background: rgba(22, 33, 47, 0.08);
            margin: 1rem auto 0;
            overflow: hidden;
        }

        .preloader-progress-bar {
            width: 38%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(120deg, var(--modern-primary), var(--modern-accent));
            animation: progressSlide 1.5s ease-in-out infinite;
        }

        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .65s ease, transform .65s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes spinLoader {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes progressSlide {

            0%,
            100% {
                transform: translateX(-120%);
            }

            50% {
                transform: translateX(320%);
            }
        }

        @media (max-width: 900px) {
            .hero {
                border-radius: 24px;
                padding: 1.4rem 1rem;
            }

            .festive-banner,
            .footer-modern {
                border-radius: 24px;
                margin-left: 16px;
                margin-right: 16px;
            }

            .room-card,
            .contact-item,
            .contact-form {
                border-radius: 18px;
            }
        }

        @media (max-width: 640px) {
            .navbar {
                height: 70px;
            }

            .hero {
                margin-top: .35rem;
            }

            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .theme-toggle {
                padding: .45rem .7rem;
                font-size: .9rem;
            }

            .theme-toggle span {
                display: none;
            }

            .preloader-box {
                padding: 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }
    
