    :root {
        --primary-color: #8B4513;
        --secondary-color: #D4AF37;
        --dark-color: #1a1a1a;
        --light-color: #f8f5f2;
        --gray-color: #666;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        color: var(--dark-color);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
    }

    /* Header & Navbar */
    .navbar-brand {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--primary-color) !important;
    }

    .navbar-brand span {
        color: var(--secondary-color);
    }

    .navbar-nav .nav-link {
        font-weight: 300;
        margin: 0 10px;
        transition: all 0.3s;
        color: var(--dark-color) !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
        transform: translateY(-2px);
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        height: 85vh;
        min-height: 600px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: white;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

    .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background-color: #6d3610;
        border-color: #6d3610;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-secondary {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        padding: 12px 30px;
        font-weight: 600;
        color: #000;
        transition: all 0.3s;
    }

    .btn-secondary:hover {
        background-color: #c19b25;
        border-color: #c19b25;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Section Styling */
    .section-title {
        position: relative;
        margin-bottom: 50px;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        display: inline-block;
        position: relative;
        padding-bottom: 15px;
    }

    .section-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Room & Facilities */
    .card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        height: 100%;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .card-img-top {
        height: 250px;
        object-fit: cover;
    }

    .card-title {
        color: var(--primary-color);
        font-weight: 700;
    }

    /* Image Sliders */
    .image-slider,
    .room-slider {
        position: relative;
    }

    .carousel-item {
        height: 500px;
    }

    .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .carousel-caption {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 5px;
        bottom: 40px;
    }

    /* Video Section */
    .video-section {
        position: relative;
        height: 500px;
        overflow: hidden;
    }

    .video-section video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        z-index: 1;
    }

    /* FAQ */
    .accordion-button {
        font-weight: 600;
        padding: 15px 20px;
    }

    .accordion-button:not(.collapsed) {
        background-color: rgba(139, 69, 19, 0.1);
        color: var(--primary-color);
        border-color: var(--secondary-color);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
    }

    /* Contact & Address */
    .contact-info {
        background-color: var(--light-color);
        padding: 30px;
        border-radius: 10px;
        height: 100%;
    }

    .contact-info i {
        color: var(--primary-color);
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* Footer */
    footer {
        background-color: var(--dark-color);
        color: #ddd;
        padding-top: 60px;
    }

    .footer-links h5 {
        color: var(--secondary-color);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-links h5:after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--primary-color);
        bottom: 0;
        left: 0;
    }

    .footer-links ul {
        list-style: none;
        padding-left: 0;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links ul li a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s;
    }

    .footer-links ul li a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }

    .social-icons a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s;
    }

    .social-icons a:hover {
        background-color: var(--primary-color);
        transform: translateY(-5px);
    }

    .copyright {
        background-color: #111;
        padding: 20px 0;
        margin-top: 40px;
        font-size: 0.9rem;
    }

    /* Map */
    .map-container {
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
    }

    /* Utility Classes */
    .text-primary {
        color: var(--primary-color) !important;
    }

    .text-secondary {
        color: var(--secondary-color) !important;
    }

    .bg-light-custom {
        background-color: var(--light-color);
    }




    .video-gallery-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f5f2 0%, #e6dfd9 100%);
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-family: 'Georgia', serif;
        color: #8B4513;
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background-color: #D4AF37;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title p {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 20px auto 0;
    }

    .video-container {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 30px;
        transition: all 0.3s ease;
        background-color: #000;
    }

    .video-container:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .video-container video {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 12px;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 12px;
    }

    .video-container:hover .video-overlay {
        opacity: 1;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        background-color: rgba(139, 69, 19, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 3px solid white;
    }

    .play-btn:hover {
        background-color: #D4AF37;
        transform: scale(1.1);
    }

    .video-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: white;
        border-radius: 0 0 12px 12px;
    }

    .video-info h4 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .video-info p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
    }

    .video-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }

    .control-btn {
        background-color: #8B4513;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .control-btn:hover {
        background-color: #D4AF37;
        color: #000;
        transform: translateY(-2px);
    }

    .video-modal .modal-content {
        background-color: #000;
        border-radius: 12px;
        overflow: hidden;
    }

    .video-modal .modal-header {
        border-bottom: 1px solid #333;
        background-color: #111;
        color: white;
    }

    .video-modal .modal-body {
        padding: 0;
    }

    .video-modal video {
        width: 100%;
        height: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .section-title h2 {
            font-size: 2.2rem;
        }

        .video-container {
            margin-bottom: 20px;
        }

        .play-btn {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
    }