:root {
            --primary-gold: #be9278;
            --dark-bg: #1e1e1e;
            --soft-white: #f8f5f0;
            --text-gray: #777;
            --transition: all 0.4s ease-in-out;
        }

       h2{font-size: 34px;}
        /* --- Global Elements --- */
        .section-padding { padding: 100px 0; }
        .bg-cream { background-color: var(--soft-white); }
        .text-gold { color: var(--primary-gold); font-size: 32px; }
        .letter-spacing-2 { letter-spacing: 2px; }
        
        .btn-luxury {
            background-color:#048ca0;
            color: #fff;
            border-radius: 0;
            padding: 15px 35px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 1px solid var(--primary-gold);
            transition: var(--transition);
            border-radius: 8px;
        }
        .btn-luxury:hover {
            background-color:#015b69;
            color: var(--primary-gold);
        }

        

        /* --- Hero --- */
        .hero-section {
            height: 60vh;
            background:  
                        url(../img/senchuhung-thulung-homestay.jpg) center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content h5 {
            color:#4d2006;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-weight: 400;
        }
        .hero-content h1 {
            font-size: 3rem;
            color: #4d2006;
            margin: 20px 0;
        }

        /* --- Booking Bar --- */
        .booking-bar {
            background: #fff;
            padding: 30px;
            margin-top: -60px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }
        .booking-field label {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--text-gray);
            letter-spacing: 1px;
            display: block;
            margin-bottom: 8px;
        }
        .booking-field input, .booking-field select {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 10px 10px;
            width: 100%;
            outline: none;
            font-weight: 500;
            font-size:16px;
        }

        /* --- Room Slider Section --- */
        .room-item {
            position: relative;
            overflow: hidden;
            background: #fff;
            transition: var(--transition);
        }
        .room-img-wrap {
            position: relative;
            overflow: hidden;
            height: 350px;
        }
        .room-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
            border-radius: 8px;
        }
        .room-item:hover img {
            transform: scale(1.1);
        }
        .room-content {
            padding:10px;
            border: 1px solid #eee;
            border-top: none;
        }
        .room-price {
            font-size: 14px;
            color: var(--primary-gold);
            margin-bottom: 10px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .room-title {
            font-size: 20px;
            margin-bottom: 15px;
            margin-top:10px;
        }
        .room-features {
            display: flex;
            gap: 15px;
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 20px;
        }

        /* Swiper Customization */
        .rooms-swiper {
            padding: 20px 0 60px !important;
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--primary-gold);
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 18px;
            font-weight: bold;
        }
        .swiper-pagination-bullet-active {
            background: var(--primary-gold);
        }

        /* --- Services --- */
        .service-box {
            text-align: center;
            padding: 40px;
            background: #fff;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .service-box:hover {
            border-color: var(--primary-gold);
            transform: translateY(-10px);
        }
        .service-icon {
            font-size: 40px;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-bg);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 30px;
        }
        footer h4 { color: #fff; margin-bottom: 25px; }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .footer-links a:hover { color: var(--primary-gold); padding-left: 5px; }
        .social-icons a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            color: #fff;
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-icons a:hover { background: var(--primary-gold); }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--primary-gold); }