 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        /* ================= HERO ================= */

        .hero {
            height: 100vh;
            min-height: 650px;
            position: relative;
            background:
                linear-gradient(rgba(25, 30, 30, .48), rgba(25, 30, 30, .48)),
                url("hero.jpg") center center / cover no-repeat;
            color: #fff;
        }

        /* ================= NAVBAR ================= */

        .navbar {
            height: 105px;
            border-bottom: 1px solid rgba(255,255,255,.35);
            padding: 0;
            position: relative;
            z-index: 10;
        }

        .menu-box {
            width: 125px;
            height: 105px;
            border-right: 1px solid rgba(255,255,255,.35);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .menu-icon {
            font-size: 21px;
            font-weight: 300;
        }

        .logo {
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-left: 25px;
        }

        .logo-circle {
            display: inline-flex;
            width: 28px;
            height: 28px;
            border: 2px solid #fff;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            margin-right: 6px;
            font-size: 14px;
        }

        .nav-right {
            margin-left: auto;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 20px;
            padding-right: 35px;
            font-size: 11px;
        }

        .social i {
            margin-left: 13px;
            font-size: 13px;
        }

        .language {
            margin-left: 15px;
        }

        .request-btn {
            margin-left: 25px;
            color: #fff;
            text-decoration: none;
            font-size: 10px;
            letter-spacing: .5px;
        }

        /* ================= HERO CONTENT ================= */

        .hero-content {
            position: absolute;
            left: 13%;
            top: 25%;
            max-width: 650px;
        }

        .small-title {
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 18px;
            letter-spacing: .2px;
        }

        .hero-title {
            font-size: 44px;
            line-height: 1.2;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .discover-btn {
            background: #c8a47c;
            color: white;
            border: none;
            padding: 15px 25px;
            font-size: 10px;
            letter-spacing: .5px;
            transition: .3s;
        }

        .discover-btn:hover {
            background: #ae8962;
            color: #fff;
        }

        /* ================= SLIDER ================= */

        .slider-buttons {
            position: absolute;
            right: 0;
            bottom: 0;
            display: flex;
        }

        .slider-btn {
            width: 53px;
            height: 53px;
            background: rgba(255,255,255,.95);
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: 1px solid #ddd;
            cursor: pointer;
            transition: .3s;
        }

        .slider-btn:hover {
            background: #c8a47c;
            color: #fff;
        }



/* =========================
           SLIDER
        ========================= */

        .main-slider {
            width: 100%;
            height: 100vh;
            min-height: 650px;
            position: relative;
            overflow: hidden;
        }

        .carousel,
        .carousel-inner,
        .carousel-item {
            width: 100%;
            height: 100%;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dark overlay */

        .carousel-item::after {
            content: "";
            position: absolute;
            inset: 0;

            background: rgba(0, 0, 0, 0.40);

            z-index: 1;
        }

        /* =========================
           CONTENT
        ========================= */

        .slider-content {
            position: absolute;

            left: 12%;
            top: 50%;

            transform: translateY(-50%);

            color: white;

            max-width: 700px;

            z-index: 5;
        }

        .slider-small-title {
            font-size: 13px;
            margin-bottom: 20px;

            letter-spacing: 1px;
        }

        .slider-content h1 {
            font-size: 58px;
            line-height: 1.15;

            font-weight: 500;

            margin-bottom: 35px;
        }

        .discover-btn {
            background: #c6a27a;

            color: white;

            border: none;

            padding: 16px 28px;

            font-size: 11px;

            letter-spacing: 1px;

            transition: 0.3s;
        }

        .discover-btn:hover {
            background: #a98259;
        }

        /* =========================
           CUSTOM ARROWS
        ========================= */

        .custom-arrows {
            position: absolute;

            right: 0;
            bottom: 0;

            display: flex;

            z-index: 20;
        }

        .custom-arrow {
            width: 70px;
            height: 70px;

            background: white;

            color: #222;

            display: flex;

            align-items: center;
            justify-content: center;

            cursor: pointer;

            transition: 0.3s;
        }

        .custom-arrow:hover {
            background: #c6a27a;
            color: white;
        }

        .custom-arrow i {
            font-size: 20px;
        }

        /* =========================
           DOTS
        ========================= */

        .carousel-indicators {
            z-index: 10;
            bottom: 25px;
        }

        .carousel-indicators button {
            width: 35px !important;
            height: 3px !important;

            border: none;

            margin: 0 5px;
        }

        /* =========================
           ANIMATION
        ========================= */

        .carousel-item {
            transition: transform 1.2s ease-in-out;
        }

       

/* =================================
   TOP STICKY NAVBAR
================================= */

.top-navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 110px;

    display: flex;

    align-items: center;

    z-index: 9999;

    color: #fff;

    background: rgba(20, 25, 25, 0.15);

    border-bottom: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(2px);

    transition: all 0.4s ease;
}


/* =================================
   MENU
================================= */

.menu-area {

    height: 90px;

    width: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-right: 1px solid rgba(255,255,255,0.35);
}

.menu-btn {

    background: transparent;

    border: none;

    color: white;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 11px;

    letter-spacing: 1px;

    cursor: pointer;
}

.menu-btn i {

    font-size: 25px;

    font-weight: 300;
}


/* =================================
   LOGO
================================= */

.logo-area {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-left: 25px;
}

.logo-icon {

    width: 32px;

    height: 32px;

    border: 2px solid white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

    font-weight: bold;
}

.logo-text {

    font-size: 26px;

    font-weight: 600;

    letter-spacing: 2px;
}


/* =================================
   RIGHT CONTENT
================================= */

.navbar-right {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 22px;

    padding-right: 35px;

    font-size: 11px;
}

.social-icons {

    display: flex;

    gap: 14px;
}

.social-icons a {

    color: white;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.social-icons a:hover {

    color: #c6a27a;
}


.languages {

    display: flex;

    gap: 6px;
}

.view-btn {

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: .5px;

    margin-left: 15px;
}

.view-btn:hover {

    color: #c6a27a;
}


/* =================================
   STICKY SCROLL EFFECT
================================= */

.top-navbar.scrolled {

    height: 70px;

    background: rgba(20,20,20,0.95);

    border-bottom: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.top-navbar.scrolled .menu-area {

    height: 70px;
}



.experience-section {
            padding: 15px 0;
            background: #fff;
        }

        .experience-img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            display: block;
        }

        .experience-content {
            height: 100%;
            padding: 50px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .experience-content h1 {
            font-size: 60px;
            line-height: 1.25;
            font-weight: 700;
            color: #171b24;
            margin-bottom: 60px;
        }

        .experience-content h1 span {
            color: #c7a17d;
        }

        .experience-content p {
            font-size: 18px;
            line-height: 2;
            color: #111;
            margin-bottom: 30px;
        }


 .houseboat-section {
            padding: 50px 0;
            background: #f7f0ec;
        }

        .section-title {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 500;
            color: #222;
            margin: 0;
            letter-spacing: 1px;
        }

        .section-title .line {
            width: 45px;
            height: 2px;
            background: #c49a6c;
            margin: 12px auto 0;
        }

        .houseboat-card {
            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .houseboat-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .houseboat-card:hover img {
            transform: scale(1.05);
        }

        .houseboat-info {
            padding: 18px 10px;
            text-align: center;
        }

        .houseboat-info h4 {
            font-size: 18px;
            font-weight: 500;
            color: #222;
            margin-bottom: 8px;
        }

        .houseboat-info p {
            font-size: 14px;
            color: #777;
            line-height: 1.6;
            margin: 0;
        }

.img-ratio {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #000;
}
.video-ratio {
    width: 100%;
    height: 700px;
    object-fit: contain;
    background: #000;
}



.gallery-section {
        padding: 50px 0;
    }

    .gallery-heading {
        text-align: center;
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 32px;
        font-weight: 600;
        color: #222;
        margin-bottom: 10px;
    }

    .gallery-heading .line {
        width: 50px;
        height: 2px;
        background: #c49a6c;
        margin: auto;
    }

    .gallery-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }



.visit-section {
            min-height: 100vh;
            /*display: flex;*/
        }

        /* LEFT MAP */
        .map-wrapper {
            width: 50%;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 100vh;
            border: 0;
        }

        /* RIGHT FORM */
        .form-wrapper {
            width: 100%;
            min-height: 100vh;
            background: #f7f1ed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 70px 7%;
        }

        .form-content {
            width: 100%;
            max-width: 570px;
        }

        .form-title {
            font-size: 58px;
            line-height: 1.1;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 75px;
            color: #171a1f;
        }

        .form-title span {
            color: #c4a17c;
        }

        .form-group {
            margin-bottom: 36px;
        }

        .form-label {
            display: block;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 22px;
            color: #111318;
        }

        .form-control {
            border: none;
            border-bottom: 1px solid #c8a88a;
            border-radius: 0;
            background: transparent;
            padding: 0 0 16px 0;
            height: 38px;
            font-size: 16px;
            box-shadow: none !important;
        }

        .form-control:focus {
            background: transparent;
            border-color: #a98766;
        }

        .submit-btn {
            width: 100%;
            height: 62px;
            border: none;
            border-radius: 0;
            background: #c4a17c;
            color: white;
            font-size: 14px;
            font-weight: 500;
            margin-top: 0;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #ae8c69;
            color: white;
        }



/* =========================
           FOOTER
        ========================= */

        .footer-section {
            position: relative;
            min-height: 815px;
            background: #191d23;
            color: var(--white);
            padding: 15px 0 0;
            overflow: hidden;
        }

        .footer-container {
            min-height: 780px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Logo */

        .footer-logo {
            width: 260px;
            height: 150px;
            object-fit: contain;
            margin-bottom: 55px;
        }

        /* Phone numbers */

        .footer-phone {
            text-align: center;
            margin-bottom: 65px;
        }

        .footer-phone a {
            display: block;
            color: #c29f7b;
            text-decoration: none;
            font-size: 58px;
            line-height: 1.3;
            font-weight: 500;
            letter-spacing: 2px;
        }

        .footer-phone a:hover {
            color: #d5b58e;
        }

        /* Address */

        .footer-address {
            text-align: center;
        }

        .footer-heading {
            color: #71677A;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 22px;
        }

        .footer-address p {
            margin: 0 0 8px;
            color: #ffffff;
            font-size: 14px;
            line-height: 1.4;
        }

        /* Social */

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 8px;
        }

        .footer-social a {
            color: #ffffff;
            font-size: 15px;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .footer-social a:hover {
            color: #A3A3A3;
        }

        /* Bottom footer */

        .footer-bottom {
            position: absolute;
            bottom: 70px;
            left: 0;
            width: 100%;
            padding: 0 12.5%;
        }

        .footer-bottom-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .copyright,
        .website {
            color: #6d6d6d;
            font-size: 13px;
            text-decoration: none;
        }

        .website:hover {
            color: var(--gold);
        }

        .footer-links {
            display: flex;
            gap: 28px;
        }

        .footer-links a {
            color: #8f8f8f;
            font-size: 13px;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        /* Back to top */

        .back-to-top {
            position: absolute;
            right: 35px;
            bottom: 28px;

            width: 100px;
            height: 100px;

            border: 1px solid var(--gold);
            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            color: var(--gold);
            text-decoration: none;

            font-size: 20px;

            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            background: var(--gold);
            color: var(--dark-bg);
        }

		/* Mobile Bottom Buttons */
.mobile-bottom-buttons {
    display: none;
}



.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    /*background: #25D366;*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;

    /* Blink + Pulse */
    animation: whatsappBlink 1.2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
}

@keyframes whatsappBlink {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        transform: scale(1.12);
        opacity: 0.75;
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
