 /* --- VARIABLES --- */
        :root {
            --primary-dark: #1A1A1A;
            --accent-gold: #C5A059;
            --text-grey: #555555;
            --bg-light: #F9F9F9;
            --white: #FFFFFF;
            
            --font-head: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
            
            --transition: all 0.4s ease;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
            --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* --- RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background-color: var(--white);
            color: var(--primary-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-head);
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p { color: var(--text-grey); margin-bottom: 1rem; }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding { padding: 100px 0; }
        .bg-light { background-color: var(--bg-light); }
        .text-center { text-align: center; }

        .subtitle {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-gold);
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            border: 1px solid var(--primary-dark);
            background: var(--primary-dark);
            color: var(--white);
            cursor: pointer;
            letter-spacing: 1px;
        }

        .btn:hover {
            background: transparent;
            color: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-dark);
        }
        .btn-outline:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            background-color: var(--white);
            transition: all 0.3s ease-in-out; 
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-head);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .logo span { color: var(--accent-gold); }

        .nav-links { display: flex; gap: 30px; }
        
        .nav-links a {
            font-size: 0.9rem;
            color: var(--primary-dark);
            font-weight: 500;
        }
        
        .nav-links a:hover { color: var(--accent-gold); }

        .mobile-toggle { display: none; color: var(--primary-dark); font-size: 1.5rem; cursor: pointer; }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            height: 90vh;
            /* Placeholder image for Hero */
            background: url('../img/banner.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
            margin-top: 48px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .hero-content p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        /* --- SPLIT GRID UTILITY --- */
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* --- IMAGE BOXES --- */
        .about-img-box {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        
        .about-img-box::after {
            content: '';
            position: absolute;
            bottom: -15px; right: -15px;
            width: 100%; height: 100%;
            border: 1px solid var(--accent-gold);
            z-index: -1;
            border-radius: 4px;
        }

        /* --- REVERSE CARD (IMAGE LEFT, TEXT RIGHT) --- */
        .culinary-card {
            background: var(--bg-light);
            border-radius: 8px;
            overflow: hidden;
            display: flex; 
            flex-wrap: wrap;
            box-shadow: var(--shadow-soft);
        }

        .culinary-img {
            flex: 1 1 400px;
            min-height: 400px;
        }
        .culinary-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .culinary-text {
            flex: 1 1 400px;
            padding: 18px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* --- SERVICE LIST STYLING --- */
        .service-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.95rem;
            color: var(--text-grey);
        }
        .service-list li i {
            width: 30px;
            height: 30px;
            background: rgba(197, 160, 89, 0.1);
            color: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.8rem;
        }

        /* --- ROOMS --- */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .room-item {
            border: 1px solid #eee;
            transition: var(--transition);
        }

        .room-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .room-thumb {
            height: 250px;
            overflow: hidden;
        }
        
        .room-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .room-item:hover .room-thumb img { transform: scale(1.05); }

        .room-details { padding: 25px; }
        
        .room-meta {
            display: flex;
            gap: 15px;
            font-size: 0.85rem;
            color: var(--text-grey);
            margin: 10px 0 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        /* --- ACTIVITIES --- */
        .activity-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .activity-card {
            background: var(--white);
            padding: 30px 20px;
            text-align: center;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid #eee;
            box-shadow: var(--shadow-soft);
        }

        .activity-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
        }

        .activity-icon-box {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .activity-card:hover .activity-icon-box { background: var(--accent-gold); }
        .activity-card:hover .activity-icon { color: var(--white); }

        .activity-icon {
            font-size: 1.8rem;
            color: var(--accent-gold);
            transition: var(--transition);
        }

        .activity-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-family: var(--font-body);
            font-weight: 600;
        }

        /* --- NEW: WHY STAY HERE SECTION --- */
        .why-stay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .why-card {
            background: var(--white);
            padding: 18px 18px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #eee;
            transition: var(--transition);
        }

        .why-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .why-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .why-card h4 {
            margin-bottom: 15px;
            font-family: var(--font-head);
        }

        /* --- GALLERY SECTION --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            height: 300px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* --- NEW: GALLERY POPUP / LIGHTBOX --- */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.9);
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .lightbox.active { display: flex; animation: fadeIn 0.3s; }

        .lightbox img {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .close-lightbox:hover { color: var(--accent-gold); }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* --- NEARBY ATTRACTIONS --- */
        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .attraction-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

        .attraction-card:hover { transform: translateY(-5px); }

        .attraction-img {
            height: 200px;
            position: relative;
        }
        .attraction-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .distance-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-gold);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .attraction-details { padding: 25px; }
        .attraction-details h4 { font-size: 1.3rem; margin-bottom: 10px; }

        /* --- FAQ SECTION --- */
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 20px 0;
            font-size: 1.1rem;
            font-family: var(--font-head);
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question i {
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

        .faq-question.active i { transform: rotate(180deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--text-grey);
            font-size: 0.95rem;
        }

        .faq-answer p { padding-bottom: 20px; }

        /* --- NEW: CONTACT SECTION --- */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info-box {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 8px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-right: 20px;
            box-shadow: var(--shadow-soft);
            flex-shrink: 0;
        }

        .info-content h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form input, 
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .contact-form input:focus, 
        .contact-form textarea:focus {
            border-color: var(--accent-gold);
        }

        /* --- FOOTER --- */
        footer {
            background: var(--primary-dark);
            color: #ccc;
            padding: 80px 0 30px;
            text-align: center;
        }

        .footer-logo {
            font-family: var(--font-head);
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-links a:hover { color: var(--accent-gold); }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero-content h1 { font-size: 2.8rem; }
            .split-grid { grid-template-columns: 1fr; }
            .culinary-card { flex-direction: column; }
            .culinary-img { min-height: 250px; }
            .activity-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-wrapper { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%; left: 0; width: 100%;
                background: white; padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            .hero { height: 70vh; }
            .activity-grid { grid-template-columns: 1fr; }
            .contact-info-box, .contact-form { padding: 20px; }
        }


        /* 
         * UNIQUE CLASS: zulfiqar_sticky_whatsapp_widget_v1
         * Glow Animation Pulse Effect Included
         */
        
        /* Glow Animation Keyframes */
        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .zulfiqar_sticky_whatsapp_widget_v1 {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            background-color: #25D366; /* WhatsApp Green */
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
            
            /* Glow Effect Apply Kiya */
            animation: pulse-green 2s infinite;
        }

        /* Hover Effect - Jab mouse le jaaye */
        .zulfiqar_sticky_whatsapp_widget_v1:hover {
            transform: scale(1.1); /* Thoda bada ho jayega */
            background-color: #1ebc57;
        }

        /* Icon Styling */
        .zulfiqar_sticky_whatsapp_widget_v1 svg {
            width: 36px; 
            height: 36px;
            fill: #ffffff; /* White Icon */
        }

          @media (max-width: 938px) {

            .compact-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    align-items: center;
    gap: 10px;
}
}
            

        