  :root {
            --primary: #8B1A1A;        /* Deep temple red */
            --secondary: #D4A017;      /* Temple gold */
            --accent: #2d6a4f;
            --dark: #1e2a3a;
            --light: #fdf8f0;
            --sand: #f0e6d3;
            --whatsapp: #25D366;
        }

        /* ===== Reset & Base ===== */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; }

        /* ===== Navbar ===== */
        .navbar-custom {
            background: rgba(139, 26, 26, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 3px solid var(--secondary);
            padding: 12px 0;
            transition: all 0.4s ease;
        }
        .navbar-custom.scrolled {
            background: rgba(139, 26, 26, 1) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .navbar-custom .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 1.7rem;
            color: #f0e6d3 !important;
        }
        .navbar-custom .navbar-brand i {
            color: var(--secondary);
            margin-right: 8px;
        }
        .navbar-custom .nav-link {
            color: #f0e6d3 !important;
            font-weight: 600;
            padding: 10px 20px !important;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .navbar-custom .nav-link:hover {
            background: var(--secondary);
            color: var(--dark) !important;
        }
        .navbar-custom .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        .navbar-custom .navbar-toggler-icon {
            filter: invert(1);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(139, 26, 26, 0.8), rgba(212, 160, 23, 0.5)),
                        url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?w=1400') center/cover no-repeat;
            padding: 100px 0 60px;
            position: relative;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 800px;
        }
        .hero-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            line-height: 1.1;
        }
        .hero .lead {
            font-size: 1.4rem;
            color: #f0e6d3;
            margin: 20px 0 35px;
        }
        .btn-modern {
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: none;
            display: inline-block;
        }
        .btn-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        .btn-primary-modern {
            background: linear-gradient(135deg, var(--secondary), #b8860b);
            color: var(--dark);
        }
        .btn-whatsapp-modern {
            background: var(--whatsapp);
            color: #fff;
        }

        /* ===== Section Common ===== */
        .section-padding { padding: 100px 0; }
        .section-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--dark);
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 6px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            border-radius: 3px;
        }
        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .bg-sand { background: var(--sand); }
        .bg-white { background: #fff; }

        /* ===== About Section ===== */
        .about-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .about-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--secondary);
        }
        .about-feature-item i {
            color: var(--secondary);
            font-size: 1.5rem;
        }
        .about-feature-item span {
            font-weight: 500;
        }

        /* ===== Amenities ===== */
        .amenity-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 25px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 1px solid rgba(139,26,26,0.08);
            height: 100%;
        }
        .amenity-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(139,26,26,0.12);
            border-color: var(--secondary);
        }
        .amenity-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
        }

        /* ===== Rooms ===== */
        .room-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 1px solid rgba(139,26,26,0.08);
            height: 100%;
        }
        .room-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(139,26,26,0.12);
            border-color: var(--secondary);
        }
        .room-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        .room-card .room-body {
            padding: 25px;
        }
        .room-card .room-body h4 {
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        .room-card .room-body .price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.7rem;
        }
        .room-card .room-body .price small {
            font-weight: 400;
            font-size: 0.9rem;
            color: #6c7a8a;
        }
        .room-card .room-body .features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 12px 0 18px;
            font-size: 0.9rem;
        }
        .room-card .room-body .features i {
            color: var(--secondary);
            margin-right: 4px;
        }
        .btn-room-whatsapp {
            background: var(--whatsapp);
            color: #fff;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
        }
        .btn-room-whatsapp:hover {
            background: #1ebe5a;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37,211,102,0.4);
        }

        /* ===== Gallery ===== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 260px;
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-item:hover img { transform: scale(1.08); }

        /* ===== Map Section ===== */
        .map-wrapper {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        .map-wrapper iframe {
            width: 100%;
            height: 450px;
            border: 0;
            display: block;
        }

        /* ===== Nearby ===== */
        .nearby-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(139,26,26,0.08);
            height: 100%;
        }
        .nearby-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: var(--secondary);
        }
        .nearby-card i {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        /* ===== Contact ===== */
        .contact-section {
            background: linear-gradient(rgba(139, 26, 26, 0.95), rgba(80, 15, 15, 0.9)),
                        url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?w=1400') center/cover;
            color: #fff;
        }
        .contact-box {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 50px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .contact-box a {
            color: #fff;
        }
        .contact-box a:hover {
            color: var(--secondary);
        }

        /* ===== Footer ===== */
        footer {
            background: linear-gradient(135deg, var(--primary), #4a0e0e);
            color: #f0e6d3;
            padding: 70px 0 30px;
            border-top: 3px solid var(--secondary);
        }
        footer h4, footer h5 {
            color: var(--secondary);
        }
        footer a {
            color: #b0c0d0;
            transition: 0.3s;
        }
        footer a:hover {
            color: var(--secondary);
        }
        footer .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            color: #fff;
            transition: 0.3s;
            margin-right: 10px;
        }
        footer .social-icons a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 25px;
            margin-top: 40px;
            text-align: center;
            color: #8a9aaa;
        }

        /* ===== Floating WhatsApp ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: var(--whatsapp);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 10px 40px rgba(37,211,102,0.5);
            z-index: 999;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            transform: scale(1.12);
        }

        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            .hero h1 { font-size: 3.5rem; }
            .section-title { font-size: 2.8rem; }
            .about-img img { height: 300px; }
            .map-wrapper iframe { height: 350px; }
        }
        @media (max-width: 768px) {
            .hero { min-height: 90vh; padding: 80px 0 40px; }
            .hero h1 { font-size: 2.8rem; }
            .hero .lead { font-size: 1.1rem; }
            .section-padding { padding: 70px 0; }
            .section-title { font-size: 2.2rem; }
            .contact-box { padding: 30px; }
            .about-features { grid-template-columns: 1fr; }
            .map-wrapper iframe { height: 280px; }
        }
        @media (max-width: 576px) {
            .hero h1 { font-size: 2.2rem; }
            .btn-modern { padding: 12px 28px; font-size: 0.9rem; }
            .whatsapp-float { width: 55px; height: 55px; font-size: 28px; bottom: 20px; right: 20px; }
        }