
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
        }

        nav a:hover {
            color: #ffd700;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            animation: slideDown 0.8s ease;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            animation: slideUp 0.8s ease;
            max-width: 600px;
        }

        @keyframes slideDown {
            from { transform: translateY(-40px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(40px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* CTA Button */
        .cta-btn {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #8b4513;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: slideUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,215,0,0.4);
        }

        /* Booking Section */
        .quick-book {
            max-width: 1200px;
            margin: -80px auto 3rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .book-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            animation: fadeIn 0.6s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 700;
            margin-bottom: 0.7rem;
            color: #8b4513;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #a0522d;
            box-shadow: 0 0 0 4px rgba(160,82,45,0.1);
        }

        .book-btn {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-self: flex-end;
            margin-top: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(139,69,19,0.4);
        }

        /* About Section */
        .about {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.8rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            color: #666;
            margin-bottom: 1.2rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .about-image {
            background: linear-gradient(135deg, #d2b48c 0%, #cd853f 100%);
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        /* Rooms Section */
        .rooms-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 3rem;
            color: #8b4513;
            margin-bottom: 0.5rem;
            text-align: center;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: #999;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .room-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .room-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.15);
        }

        .room-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #deb887 0%, #cd853f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .room-image.deluxe {
            background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
        }

        .room-image.suite {
            background: linear-gradient(135deg, #cd853f 0%, #a0522d 100%);
        }

        .room-image.presidential {
            background: linear-gradient(135deg, #b8860b 0%, #8b6f47 100%);
        }

        .room-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ffd700;
            color: #8b4513;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .room-content {
            padding: 2rem;
        }

        .room-name {
            font-size: 1.5rem;
            color: #8b4513;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .room-capacity {
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .room-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .room-features li {
            color: #666;
            padding: 0.4rem 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .room-features li:before {
            content: "✓";
            color: #8b4513;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .room-price {
            font-size: 1.8rem;
            color: #8b4513;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .room-price small {
            font-size: 0.8rem;
            color: #999;
        }

        .reserve-btn {
            width: 100%;
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 0.9rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .reserve-btn:hover {
            opacity: 0.9;
        }

        /* Amenities Section */
        .amenities {
            background: white;
            margin: 4rem 0;
            padding: 3rem 2rem;
        }

        .amenities-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .amenity-item {
            text-align: center;
        }

        .amenity-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .amenity-item h4 {
            color: #8b4513;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .amenity-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 4px solid #ffd700;
        }

        .testimonial-text {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.7;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: #8b4513;
            margin-bottom: 0.3rem;
        }

        .testimonial-position {
            color: #999;
            font-size: 0.85rem;
        }

        .rating {
            color: #ffd700;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: #8b4513;
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.7rem;
        }

        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            border-top: 1px solid #a0522d;
            padding-top: 2rem;
            text-align: center;
            color: #ddd;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 3rem;
            border-radius: 15px;
            width: 90%;
            max-width: 700px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            animation: slideDown 0.3s ease;
        }

        .close {
            color: #999;
            float: right;
            font-size: 2.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            line-height: 1;
        }

        .close:hover {
            color: #8b4513;
        }

        .modal h2 {
            color: #8b4513;
            margin-bottom: 1.5rem;
            margin-top: 0;
            font-size: 1.8rem;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .modal-form input {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }

        .modal-form input:focus {
            outline: none;
            border-color: #8b4513;
            box-shadow: 0 0 0 4px rgba(139,69,19,0.1);
        }

        .confirm-btn {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .confirm-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139,69,19,0.3);
        }

        .price-summary {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid #ffd700;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #666;
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
            color: #8b4513;
            font-weight: 700;
            border-top: 1px solid #ddd;
            padding-top: 0.8rem;
            margin-top: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .book-form {
                grid-template-columns: 1fr;
            }

            .book-btn {
                align-self: stretch;
            }

            nav ul {
                gap: 1rem;
            }

            .modal-content {
                width: 95%;
                margin: 20% auto;
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 4rem 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            nav {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .room-image {
                height: 200px;
                font-size: 3rem;
            }
        }

