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

        :root {
            --gold: #d4af37;
            --gold-dark: #b8941f;
            --navy: #1a2332;
            --navy-light: #2d3e50;
            --cream: #faf8f5;
            --white: #ffffff;
            --text: #333333;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
        }

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

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* Page Header */
        .page-header {
            margin-top: 70px;
            height: 70vh;
            background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.5)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 800"><rect fill="%231a2332" width="1920" height="800"/><circle cx="960" cy="400" r="300" fill="%23d4af37" opacity="0.05"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent, var(--white));
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 8px;
        }

        .page-header-divider {
            width: 120px;
            height: 2px;
            background: var(--gold);
            margin: 2rem auto;
        }

        .page-header p {
            font-size: 1.3rem;
            letter-spacing: 4px;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            font-weight: 300;
        }

        /* Suite Section */
        .suite-section {
            padding: 6rem 0;
        }

        .suite-section:nth-child(even) {
            background: var(--cream);
        }

        .suite-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 4rem;
        }

        .suite-container.reverse {
            direction: rtl;
        }

        .suite-container.reverse > * {
            direction: ltr;
        }

        /* Image Container - Fixed Aspect Ratio */
        .suite-images {
            position: relative;
            width: 100%;
        }

        .suite-main-image {
            position: relative;
            width: 100%;
            padding-bottom: 66.67%; /* 3:2 aspect ratio */
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--gold) 100%);
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
        }

        .suite-main-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .image-frame {
            position: absolute;
            width: clamp(80px, 15vw, 150px);
            height: clamp(80px, 15vw, 150px);
            border: 3px solid var(--gold);
            bottom: -20px;
            right: -20px;
            z-index: -1;
            pointer-events: none;
        }

        .suite-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold);
            color: var(--navy);
            padding: 0.8rem 2rem;
            font-size: clamp(0.7rem, 1.5vw, 0.9rem);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Suite Info */
        .suite-info {
            display: flex;
            flex-direction: column;
        }

        .suite-info h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--navy);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .suite-info h3 {
            font-size: 20px;
            color:rgba(37, 35, 35, 1);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .suite-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 1rem 0 1.5rem 0;
        }

        .suite-description {
            font-size: clamp(0.95rem, 1.8vw, 1.05rem);
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .suite-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: var(--white);
            border-left: 3px solid var(--gold);
            transition: transform 0.3s ease;
        }

        .feature-box:hover {
            transform: translateX(5px);
        }

        .suite-section:nth-child(even) .feature-box {
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .feature-icon-box {
            font-size: 2rem;
            color: var(--gold);
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .feature-text p {
            font-size: 0.9rem;
            color: #666;
        }

        .amenities-list {
            background: var(--navy);
            color: var(--white);
            padding: 2rem;
            margin-top: 2rem;
        }

        .amenities-list h3 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }

        .amenity-item::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Price Box */
        .price-box {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--navy);
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .price-label {
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        .price {
            font-size: clamp(2rem, 5vw, 3rem);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .price-note {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            opacity: 0.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .cta-section p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 3rem;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-block;
            padding: 1.2rem 3.5rem;
            background: var(--gold);
            color: var(--navy);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s;
            border: 2px solid var(--gold);
        }

        .cta-btn:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
        }


        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 2rem;
            }

            .suite-container,
            .suite-container.reverse {
                grid-template-columns: 1fr;
                gap: 3rem;
                direction: ltr;
            }

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

            .image-frame {
                bottom: -15px;
                right: -15px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .suite-section {
                padding: 4rem 0;
            }

            .page-header {
                height: 50vh;
                min-height: 350px;
            }

            .page-header h1 {
                letter-spacing: 3px;
            }

            .page-header p {
                letter-spacing: 2px;
            }

            .suite-badge {
                padding: 0.6rem 1.5rem;
                top: 15px;
                left: 15px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .cta-btn {
                padding: 1rem 2.5rem;
                font-size: 0.8rem;
            }

        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .page-header {
                height: 40vh;
                min-height: 300px;
                margin-top: 60px;
            }

            .page-header h1 {
                font-size: 2rem !important;
                letter-spacing: 2px !important;
            }

            .page-header p {
                font-size: 0.9rem !important;
                letter-spacing: 1px !important;
            }

            .suite-section {
                padding: 3rem 0;
            }

            .suite-container {
                gap: 2rem;
            }

            .suite-info h2 {
                font-size: 1.8rem !important;
            }

            .suite-info h3 {
                font-size: 0.9rem;
            }

            .suite-description {
                font-size: 0.9rem !important;
            }

            .suite-badge {
                padding: 0.5rem 1rem;
                font-size: 0.65rem !important;
                top: 10px;
                left: 10px;
            }

            .suite-features {
                gap: 0.8rem;
            }

            .feature-box {
                padding: 1rem;
                font-size: 0.85rem;
            }

            .feature-text h4 {
                font-size: 0.9rem;
            }

            .feature-text p {
                font-size: 0.8rem;
            }

            .amenities-list {
                padding: 1.5rem 1rem;
            }

            .amenities-list h3 {
                font-size: 1.1rem !important;
                margin-bottom: 1rem;
            }

            .amenities-grid {
                gap: 0.8rem;
                grid-template-columns: 1fr;
            }

            .amenity-item {
                font-size: 0.85rem !important;
            }

            .price-box {
                padding: 1.5rem;
            }

            .price {
                font-size: 2rem !important;
            }

            .cta-section {
                padding: 3rem 0;
            }

            .cta-section h2 {
                font-size: 1.8rem !important;
            }

            .cta-section p {
                font-size: 0.95rem !important;
                padding: 0 1rem;
            }

            .cta-btn {
                padding: 0.9rem 2rem;
                font-size: 0.75rem;
                letter-spacing: 2px;
            }


            .image-frame {
                width: 60px;
                height: 60px;
                bottom: -10px;
                right: -10px;
                border-width: 2px;
            }
        }