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

        :root {

            --primary: #d8c46b;
            --primary-light: #f3e29f;
            --primary-dark: #b99a3d;

            --green: #0f3f2b;
            --green-light: #1f5c40;
            --green-dark: #08150f;

            --dark: #06110c;
            --dark-light: #0d1c15;
            --dark-card: #102018;

            --light: #ffffff;
            --gray: #c5cec8;

            --border: rgba(216, 196, 107, .12);

            --shadow:
                0 10px 40px rgba(0, 0, 0, .35);

            --gradient:
                linear-gradient(135deg,
                    #0c2419,
                    #153826,
                    #0b1c14);

            --gold-gradient:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: var(--dark);
            color: var(--light);
        }

        a {
            text-decoration: none;
        }

        section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        section:nth-child(even) {
            background:
                linear-gradient(to bottom,
                    #091610,
                    #0d1c15);
        }

        section:nth-child(odd) {
            background:
                linear-gradient(to bottom,
                    #06110c,
                    #0a1711);
        }

        /* SECTION SEPARATOR */

        section::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 90px;

            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230d1c15' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,121L1360,121C1280,121,1120,121,960,121C800,121,640,121,480,121C320,121,160,121,80,121L0,121Z'%3E%3C/path%3E%3C/svg%3E");

            background-size: cover;
            background-repeat: no-repeat;
            z-index: 2;
        }

        .container {
            position: relative;
            z-index: 5;
        }

        /* NAVBAR */

        .navbar {
            background:
                rgba(6, 17, 12, .82);

            backdrop-filter: blur(14px);

            padding: 16px 0;

            border-bottom:
                1px solid rgba(255, 255, 255, .05);
        }

        .main-logo {
            width: 120px;
            height: auto;
            object-fit: contain;
            transition: .4s;
        }

        .main-logo:hover {
            transform: scale(1.03);
        }

        .nav-link {
            color: #fff !important;
            margin-left: 20px;
            font-weight: 500;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: .4s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* BUTTON */

        .book-btn,
        .hero-btn.primary {

            background: var(--gold-gradient);

            color: #102118;

            font-weight: 700;

            border: none;

            transition: .4s;
        }

        .book-btn {
            padding: 12px 28px;
            border-radius: 50px;
        }

        .book-btn:hover,
        .hero-btn.primary:hover {

            transform:
                translateY(-5px);

            box-shadow:
                0 10px 30px rgba(216, 196, 107, .25);

            color: #000;
        }

        .hero-btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: .4s;
        }

        .hero-btn.secondary {

            border:
                1px solid rgba(255, 255, 255, .15);

            background:
                rgba(255, 255, 255, .04);

            color: #fff;
        }

        /* HERO */

        .hero {

            background:
                linear-gradient(rgba(0, 0, 0, .75),
                    rgba(0, 0, 0, .75)),
                url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1600&auto=format&fit=crop') center/cover;

            min-height: 100vh;

            display: flex;
            align-items: center;

            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;

            width: 600px;
            height: 600px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .12),
                    transparent 70%);

            top: -250px;
            right: -150px;

            border-radius: 50%;

            filter: blur(80px);
        }

        .hero-logo img {
            width: 320px;
            max-width: 100%;
            object-fit: contain;

            filter:
                drop-shadow(0 10px 25px rgba(0, 0, 0, .45));

            animation:
                floatLogo 4s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .hero-content h1 {
            font-size: 74px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
        }

        .hero-content h1 span {
            color: var(--green-light);
        }

        .hero-content p {
            color: #d9d9d9;
            max-width: 650px;
            margin: 25px 0;
            line-height: 1.9;
            font-size: 18px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* SECTION TITLE */

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title span {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title h2 {
            color: #fff;
            font-size: 44px;
            font-weight: 700;
        }

        /* ABOUT */

        .about-img{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:100%;
}

.about-video{

    width:100%;

    height:100%;

    min-height:500px;

    object-fit:cover;

    border-radius:30px;

    display:block;
}

/* OPTIONAL OVERLAY */

.about-img::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(to top,
    rgba(0,0,0,.25),
    rgba(0,0,0,.05));

    z-index:1;

    border-radius:30px;

    pointer-events:none;
}

.about-video{
    position:relative;
    z-index:0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .about-video{

        min-height:350px;
    }
}

        .about-content h3 {
            color: #fff;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--gray);
            line-height: 1.9;
        }

        .about-list {
            margin-top: 25px;
        }

        .about-list li {
            list-style: none;
            margin-bottom: 15px;
            font-weight: 500;
            color: #fff;
        }

        .about-list li i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* CARDS */

        .service-card,
        .testimonial-card {

            background:
                linear-gradient(145deg,
                    #102018,
                    #0b1611);

            border:
                1px solid var(--border);

            box-shadow: var(--shadow);

            transition: .5s;

            border-radius: 25px;
        }

        .service-card {
            padding: 40px 30px;
            text-align: center;
            height: 100%;
        }

        .testimonial-card {
            padding: 40px;
            text-align: center;
        }

        .service-card:hover,
        .testimonial-card:hover {

            transform:
                translateY(-10px);

            border-color:
                rgba(216, 196, 107, .3);
        }

        .service-icon {

            width: 90px;
            height: 90px;

            background:
                rgba(216, 196, 107, .08);

            border:
                1px solid rgba(216, 196, 107, .12);

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            margin: auto;
            margin-bottom: 25px;
        }

        .service-icon i {
            color: var(--primary);
            font-size: 36px;
        }

        .service-card h4,
        .testimonial-card h5 {
            color: #fff;
            font-weight: 700;
        }

        .service-card p,
        .testimonial-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* ROOMS */

        .room-card {

            border-radius: 25px;

            overflow: hidden;

            position: relative;

            border:
                1px solid var(--border);

            box-shadow: var(--shadow);
        }

        .room-card img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: .6s;
        }

        .room-card:hover img {
            transform: scale(1.1);
        }

        .room-content {

            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 30px;

            background:
                linear-gradient(to top,
                    rgba(0, 0, 0, .96),
                    transparent);

            color: #fff;
        }

        .room-content h4 {
            font-size: 28px;
            font-weight: 700;
        }

        /* STATS */

        .stats {

            background:
                linear-gradient(rgba(0, 0, 0, .82),
                    rgba(0, 0, 0, .82)),
                url('https://images.unsplash.com/photo-1496417263034-38ec4f0b665a?q=80&w=1600&auto=format&fit=crop') center/cover fixed;
        }

        .stat-box {

            background:
                rgba(255, 255, 255, .03);

            border:
                1px solid rgba(255, 255, 255, .05);

            border-radius: 24px;

            padding: 40px 20px;

            text-align: center;
        }

        .stat-box h2 {
            color: var(--primary);
            font-size: 55px;
            font-weight: 700;
        }

        /* GALLERY */

        .gallery-item {

            border-radius: 22px;

            overflow: hidden;

            border:
                1px solid var(--border);

            box-shadow: var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: .5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* CTA */

        .cta {

            background:
                linear-gradient(135deg,
                    #173728,
                    #0f1f18);

            border:
                1px solid rgba(216, 196, 107, .12);

            box-shadow: var(--shadow);

            border-radius: 30px;

            padding: 80px 30px;

            text-align: center;
        }

        .cta h2 {
            color: #fff;
            font-size: 48px;
            font-weight: 700;
        }

        .cta p {
            color: #ddd;
            max-width: 700px;
            margin: 20px auto;
        }

        /* FOOTER */

        footer {

            position: relative;

            background:
                linear-gradient(to bottom,
                    #06110c,
                    #020504);

            padding: 110px 0 20px;

            overflow: hidden;
        }

        footer::before {

            content: '';

            position: absolute;

            width: 500px;
            height: 500px;

            background:
                radial-gradient(circle,
                    rgba(216, 196, 107, .08),
                    transparent 70%);

            top: -220px;
            right: -120px;

            border-radius: 50%;

            filter: blur(60px);
        }

        .footer-logo {

            width: 120px;

            margin-bottom: 25px;

            filter:
                drop-shadow(0 10px 25px rgba(0, 0, 0, .45));
        }

        .footer-title {

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 30px;

            position: relative;

            display: inline-block;

            color: #fff;
        }

        .footer-title::after {

            content: '';

            position: absolute;

            left: 0;
            bottom: -10px;

            width: 60px;
            height: 3px;

            border-radius: 20px;

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);
        }

        .footer-desc {

            color: #b9c2bc;

            line-height: 2;

            font-size: 15px;
        }

        .footer-links a {

            display: flex;
            align-items: center;

            gap: 12px;

            color: #c4cbc6;

            margin-bottom: 16px;

            transition: .4s;

            font-size: 15px;

            text-decoration: none;
        }

        .footer-links a i {

            width: 34px;
            height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(216, 196, 107, .08);

            color: #d8c46b;

            transition: .4s;
        }

        .footer-links a:hover {

            color: #d8c46b;

            transform:
                translateX(8px);
        }

        .footer-links a:hover i {

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);

            color: #102118;
        }

        .social-icons {

            display: flex;
            gap: 14px;

            margin-top: 30px;
        }

        .social-icons a {

            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 18px;

            background:
                rgba(255, 255, 255, .04);

            border:
                1px solid rgba(255, 255, 255, .05);

            color: #fff;

            transition: .5s;

            position: relative;

            overflow: hidden;
        }

        .social-icons a::before {

            content: '';

            position: absolute;

            inset: 0;

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);

            opacity: 0;

            transition: .5s;
        }

        .social-icons a i {
            position: relative;
            z-index: 2;
        }

        .social-icons a:hover::before {
            opacity: 1;
        }

        .social-icons a:hover {

            transform:
                translateY(-8px) rotate(5deg);

            color: #102118;

            border-color:
                transparent;
        }

        .copyright {

            margin-top: 70px;

            padding-top: 25px;

            border-top:
                1px solid rgba(255, 255, 255, .06);

            text-align: center;

            color: #8d9791;

            font-size: 15px;

            letter-spacing: .5px;
        }

        .newsletter-box {

            margin-top: 30px;

            position: relative;
        }

        .newsletter-box input {

            width: 100%;

            height: 60px;

            border: none;

            outline: none;

            border-radius: 50px;

            padding: 0 160px 0 25px;

            background:
                rgba(255, 255, 255, .05);

            color: #fff;

            border:
                1px solid rgba(255, 255, 255, .06);
        }

        .newsletter-box button {

            position: absolute;

            right: 6px;
            top: 6px;

            height: 48px;

            padding: 0 28px;

            border: none;

            border-radius: 50px;

            background:
                linear-gradient(135deg,
                    #f3e29f,
                    #d8c46b,
                    #b99a3d);

            color: #102118;

            font-weight: 700;

            transition: .4s;
        }

        .newsletter-box button:hover {

            transform: scale(.96);
        }

        @media(max-width:768px) {

            footer {
                padding: 80px 0 20px;
            }

            .footer-title {
                font-size: 24px;
            }

            .newsletter-box input {
                padding-right: 25px;
                height: 58px;
            }

            .newsletter-box button {

                position: relative;

                width: 100%;

                margin-top: 15px;

                right: auto;
                top: auto;
            }
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .hero-content h1 {
                font-size: 54px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .about-content {
                margin-top: 40px;
            }
        }

        @media(max-width:768px) {

            .hero {
                text-align: center;
            }

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .cta h2 {
                font-size: 34px;
            }

            .main-logo {
                width: 170px;
            }

            .hero-logo img {
                width: 240px;
            }
        }

