 :root {
            --primary-gold: #c5a880;
            --btn-gold: #d4af37;
            --btn-gold-hover: #b89628;
            --dark-green: #0a3a2a;
            --text-dark: #222222;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .brand-font {
            font-family: 'Playfair Display', serif;
        }

        /* Header & Nav */
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 1px;
            color: var(--dark-green) !important;
        }

        .btn-gold {
            background-color: var(--btn-gold);
            color: #fff;
            font-weight: 500;
            border-radius: 6px;
            padding: 8px 22px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background-color: var(--btn-gold-hover);
            color: #fff;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/1.jpg') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            border-radius: 0 0 20px 20px;
        }

        .rating-badge {
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        /* Cards Style */
        .room-card, .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #fff;
        }

        .room-card:hover, .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .card-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .room-card:hover .card-img-wrapper img {
            transform: scale(1.08);
        }

        .card-img-wrapper .rating-badge {
            position: absolute;
            top: 15px;
            left: 15px;
        }

        .amenity-list {
            font-size: 0.82rem;
            color: #666;
            line-height: 1.6;
        }

        /* Feature Section */
        .feature-icon-box {
            background: #f0f7f4;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: 0.3s;
        }

        .feature-icon-box:hover {
            background: var(--dark-green);
            color: #fff;
        }

        .feature-icon-box i {
            font-size: 2rem;
            color: var(--dark-green);
            margin-bottom: 10px;
        }

        .feature-icon-box:hover i {
            color: var(--btn-gold);
        }

        /* Stats */
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-green);
        }

        /* Facilities Grid */
        .facility-category {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
        }

        .facility-category h5 {
            color: var(--dark-green);
            border-bottom: 2px solid var(--btn-gold);
            padding-bottom: 8px;
            margin-bottom: 15px;
        }

        .facility-category ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .facility-category ul li {
            padding: 6px 0;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Testimonials */
        .testimonial-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
        }

        .quote-icon {
            font-size: 2.5rem;
            color: var(--btn-gold);
            opacity: 0.4;
        }

        /* Footer */
        footer {
            background-color: #062319;
            color: #ccc;
            padding-top: 60px;
            padding-bottom: 20px;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 20px;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--btn-gold);
        }

        .social-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--dark-green);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 8px;
            transition: 0.3s;
        }

        .social-circle:hover {
            background: var(--btn-gold);
            color: white;
        }
        .floating_btn {
    position: fixed;
    bottom: 20px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}
.floating_btn2 {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.contact_icon2 {
    background-color: #ff7010;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #ff7010;
    -webkit-animation: pulsings 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsings 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsings 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsings 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}