
        /* =====================================================
                        TOP BAR
        ===================================================== */

        .top-bar {
            min-height: 45px;
            background: #12372a;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 6%;
            font-size: 13px;
        }

        .top-left {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .top-left a {
            color: white;
            text-decoration: none;
            transition: .3s;
        }

        .top-left a:hover {
            color: #e5b93f;
        }

        .top-left i {
            color: #e5b93f;
            margin-right: 6px;
        }

        .social {
            display: flex;
            gap: 10px;
        }

        .social a {
            width: 28px;
            height: 28px;
            border: 1px solid rgba(255,255,255,.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: .4s;
        }

        .social a:hover {
            background: #e5b93f;
            color: #12372a;
            transform: rotate(360deg);
        }


        /* =====================================================
                        NAVBAR
        ===================================================== */

        .navbar {
            height: 82px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 6%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(0,0,0,.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #12372a;
        }

        .logo > i {
            font-size: 35px;
            color: #d39a00;
        }

        .logo h2 {
            font-size: 21px;
            letter-spacing: 2px;
        }

        .logo span {
            font-size: 8px;
            letter-spacing: 4px;
            color: #777;
        }


        /* =====================================================
                        NAVIGATION
        ===================================================== */

        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links > li > a {
            display: block;
            padding: 30px 17px;
            color: #222;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: .3s;
        }

        .nav-links > li > a:hover {
            color: #c48b00;
        }


        /* =====================================================
                        DROPDOWN
        ===================================================== */

        .dropdown-menu {
            position: absolute;
            top: 82px;
            left: 0;
            width: 200px;
            background: white;
            list-style: none;
            border-top: 3px solid #d39a00;
            box-shadow: 0 8px 20px rgba(0,0,0,.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: .35s;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 14px 18px;
            color: #333;
            text-decoration: none;
            transition: .3s;
        }

        .dropdown-menu a:hover {
            background: #12372a;
            color: white;
            padding-left: 28px;
        }


        /* =====================================================
                    HAMBURGER BUTTON
                    HIDDEN ON DESKTOP
        ===================================================== */

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: none;
            background: transparent;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            z-index: 1100;
        }

        .menu-toggle span {
            display: block;
            width: 27px;
            height: 3px;
            background: #12372a;
            border-radius: 5px;
            transition: .3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }


        .book-btn {
            background: #d39a00;
            color: white;
            padding: 13px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: .4s;
        }

        .book-btn:hover {
            background: #12372a;
            transform: translateY(-4px);
        }
@media(max-width:768px) {

            .top-bar {
                flex-direction: column;
                gap: 10px;
                padding: 10px;
            }

            .top-left {
                justify-content: center;
                text-align: center;
            }

            /* NAVBAR */
            .navbar {
                height: 70px;
                padding: 0 15px;
                flex-direction: row;
                justify-content: flex-start;
                gap: 10px;
            }

            /* 3 LINE LEFT */
            .menu-toggle {
                display: flex;
                order: 1;
                flex-shrink: 0;
            }

            /* LOGO AFTER HAMBURGER */
            .logo {
                order: 2;
                margin-right: auto;
            }

            .logo > i {
                font-size: 28px;
            }

            .logo h2 {
                font-size: 18px;
            }

            .logo span {
                font-size: 7px;
                letter-spacing: 3px;
            }

            /* BOOK NOW HIDDEN ON MOBILE */
            .navbar > .book-btn {
                order: 3;
                padding: 9px 14px;
                font-size: 11px;
            }

            /* MOBILE NAV */
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                display: none;
                flex-direction: column;
                gap: 0;
                padding: 10px 0;
                box-shadow: 0 8px 20px rgba(0,0,0,.12);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links > li {
                width: 100%;
            }

            .nav-links > li > a {
                padding: 14px 25px;
                font-size: 14px;
                border-bottom: 1px solid #eee;
            }

            /* MOBILE DROPDOWN */
            .dropdown-menu {
                position: static;
                width: 100%;
                border-top: none;
                border-left: 3px solid #d39a00;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                background: #f8f8f8;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                padding: 12px 40px;
                font-size: 13px;
            }

            .dropdown-menu a:hover {
                padding-left: 45px;
            }

            .hero {
                min-height: 650px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .booking-area {
                margin-top: 0;
                padding: 20px 4%;
            }

            .booking-form {
                grid-template-columns: 1fr;
            }

            .quick-info {
                grid-template-columns: 1fr;
            }

            .info-box {
                padding: 15px;
                border-bottom: 1px solid #ddd;
            }

            .info-box:last-child {
                border-bottom: none;
            }

            .about {
                grid-template-columns: 1fr;
                padding: 70px 7%;
            }

            .about-image img {
                height: 400px;
            }

            .about-content h2 {
                font-size: 38px;
            }

            .why-container {
                grid-template-columns: 1fr;
            }

            .room-container {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 220px 220px 220px;
            }

            .gallery-item.large {
                grid-row: span 1;
                grid-column: span 2;
            }

            .booking {
                flex-direction: column;
                text-align: center;
            }

            .contact {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-about > p {
                margin: auto;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }


        @media(max-width:500px) {

            .top-left {
                flex-direction: column;
                gap: 7px;
            }

            .navbar {
                padding: 0 10px;
            }

            .menu-toggle {
                width: 38px;
                height: 38px;
            }

            .menu-toggle span {
                width: 25px;
            }

            .navbar > .book-btn {
                padding: 8px 11px;
                font-size: 10px;
            }

            .hero h1 {
                font-size: 34px;
            }

            .hero-content > p:not(.small-title) {
                font-size: 15px;
            }

            .about-points {
                grid-template-columns: 1fr;
            }

            .experience {
                width: 130px;
                height: 130px;
                right: -5px;
            }

            .experience strong {
                font-size: 30px;
            }

            .section-heading h2 {
                font-size: 32px;
            }

            .gallery-grid {
                display: block;
            }

            .gallery-item {
                height: 220px;
                margin-bottom: 15px;
            }

            .booking h2 {
                font-size: 30px;
            }
        }
  