
    :root {
        --primary: #2196f3;
        --accent: #ff4081;
        --yellow: #ffc107;
        --green: #2e7d32;
        --dark: #0f172a;
        --white: #ffffff;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Poppins', sans-serif;
         background: linear-gradient(135deg, #e0f7fa, #fce4ec);
        color: var(--white);
        padding: 0px 20px;
    }

    .wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

  /* <!-- --- NAYA HEADER (LOGO LEFT, TEXT CENTER, BTN RIGHT) --- --> */
       
            .custom-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 30px;
                width: 100%;
                box-sizing: border-box;
                background: transparent;
            }
            .custom-header .logo-area {
                width: 25%;
                text-align: left;
            }
            .custom-header .text-area {
                width: 50%;
                text-align: center;
            }
            .custom-header .btn-area {
                width: 25%;
                text-align: right;
            }
            .custom-header h1 {
                margin: 0;
                font-size: 32px; /* Thoda bada aur center me */
                color: #2c3e50;
                text-transform: uppercase;
                font-weight: 900;
            }
            .custom-header p {
                margin: 5px 0 0 0;
                color: #555;
                font-size: 15px;
                font-weight: 600;
            }
            
            /* Button adjustment so it fits perfectly on the right */
            .custom-header .my-booking-btn {
                margin: 0 !important; 
            }

            /* Mobile view me sab ek ke niche ek aa jayega taaki screen na fate */
            @media (max-width: 768px) {
                .custom-header {
                    flex-direction: column;
                    gap: 15px;
                    padding: 15px;
                }
                .custom-header .logo-area, 
                .custom-header .text-area, 
                .custom-header .btn-area {
                    width: 100%;
                    text-align: center;
                }
                .custom-header h1 {
                    font-size: 24px;
                }
            }

    /* Filter Section */
    .filter-container {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .filter-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #33487a;
        padding: 10px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background: var(--yellow);
        color: #000;
    }

    /* Grid Layout */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 30px;
    }

    /* Card Design & NEW SCROLL ANIMATION */
    .card {
        height: 520px;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.1);
        /* Initially hidden and pushed down */
        opacity: 0;
        display: block;
        /* Ensure karta hai ki ye block rahe */
        transform: translateY(80px);
        /* Transition set for smooth 1s slide up */
        transition: opacity 1s ease, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Ye class JavaScript dwara add hogi jab card screen par aayega */
    .card.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hover effect apply on visible cards */
    .card.show:hover {
        transform: translateY(-10px);
        border-color: var(--yellow);
    }

    .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

    .card.show:hover .card-img {
        transform: scale(1.1);
    }

    .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding: 20px;
        text-align: center;
    }

    .slogan {
        font-size: 14px;
        font-style: italic;
        color: #ddd;
        margin-bottom: 5px;
    }

    .card-title {
        font-size: 26px;
        font-weight: 900;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 10px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    }

    .brush-tag {
        background: var(--yellow);
        color: #000;
        padding: 5px 25px;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        clip-path: polygon(2% 15%, 100% 0%, 98% 85%, 0% 100%);
        margin-bottom: 10px;
    }

    .price {
        font-size: 28px;
        font-weight: 900;
        color: var(--yellow);
        margin-bottom: 10px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: baseline;
        gap: 4px;
    }

    .price span {
        font-size: 12px;
        font-weight: 600;
        color: #e2e8f0;
        text-transform: lowercase;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    /* Icon Row */
    .icon-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-top: 1px dashed rgba(255, 255, 255, 0.3);
        border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
        padding: 10px;
        margin-bottom: 15px;
    }

    .icon-box {
        text-align: center;
        flex: 1;
    }

    .icon-box i {
        font-size: 20px;
        color: var(--yellow);
        display: block;
        margin-bottom: 4px;
    }

    .icon-box span {
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        color: #fff;
    }

    /* Action Buttons Row */
    .action-row {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .btn {
        flex: 1;
        padding: 12px 5px;
        border-radius: 10px;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.3s;
        border: none;
    }

    .btn-book {
        background: var(--yellow);
        color: #000;
        box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    }

    .btn-book:hover {
        background: #ffca28;
        transform: translateY(-2px);
    }

    .btn-view {
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: 1px solid var(--white);
        backdrop-filter: blur(5px);
    }

    .btn-view:hover {
        background: var(--white);
        color: #000;
    }

    /* --- DETAILED BOOKING MODAL --- */
    .modal-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
        cursor: pointer;
    }

    .modal {
        background: #1e293b;
        width: 100%;
        max-width: 550px;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 24px;
        padding: 35px;
        position: relative;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.4s ease;
        cursor: default;
    }

    .modal.active {
        transform: translateY(0);
        opacity: 1;
    }

    .modal::-webkit-scrollbar {
        width: 8px;
    }

    .modal::-webkit-scrollbar-track {
        background: #0f172a;
        border-radius: 10px;
    }

    .modal::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 10px;
    }

    .modal h2 {
        font-size: 26px;
        color: var(--yellow);
        margin-bottom: 5px;
        text-transform: uppercase;
        font-weight: 900;
    }

    .modal-price {
        font-size: 20px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 14px;
        color: var(--yellow);
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 12px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
        padding-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .highlights-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }

    .highlight-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: #e2e8f0;
    }

    .highlight-item i {
        color: #4caf50;
        font-size: 14px;
        margin-top: 2px;
    }

    .includes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .include-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 12px 5px;
        text-align: center;
    }

    .include-box i {
        font-size: 22px;
        color: var(--yellow);
        margin-bottom: 8px;
        display: block;
    }

    .include-box span {
        font-size: 11px;
        font-weight: 600;
        color: #fff;
        display: block;
        line-height: 1.2;
    }

    .input-group {
        margin-bottom: 15px;
    }

    .input-group label {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .input-group input {
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px;
        border-radius: 10px;
        color: #fff;
        outline: none;
        font-family: inherit;
    }

    .input-group input:focus {
        border-color: var(--yellow);
    }

    .submit-btn {
        width: 100%;
        background: var(--yellow);
        color: #000;
        border: none;
        padding: 15px;
        border-radius: 12px;
        font-weight: 800;
        font-size: 16px;
        cursor: pointer;
        text-transform: uppercase;
        transition: 0.3s;
        margin-top: 10px;
    }

    .submit-btn:hover {
        background: #ffca28;
        transform: translateY(-2px);
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #64748b;
        font-size: 24px;
        cursor: pointer;
    }

    .close-btn:hover {
        color: #fff;
    }

    /* --- GALLERY MODAL --- */
    .gallery-modal {
        background: transparent;
        width: 100%;
        max-width: 800px;
        position: relative;
        cursor: default;
    }

    .gallery-img-container {
        width: 100%;
        height: 500px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: #000;
    }

    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: none;
    }

    .gallery-img.active {
        display: block;
    }

    .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .gallery-nav:hover {
        background: var(--yellow);
        color: #000;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .gallery-close {
        position: absolute;
        top: -40px;
        right: 0;
        background: none;
        border: none;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .img-counter {
        text-align: center;
        color: #fff;
        margin-top: 10px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Floating WhatsApp */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        text-decoration: none;
        transition: 0.3s;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }





/* FOOTER MODERN CSS */
    .cc-footer {
        background: #1e293b; /* Dark theme matching your admin panel */
        color: #94a3b8;
        padding: 50px 20px 20px;
        font-family: 'Poppins', sans-serif;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 50px;
    }
    
    .footer-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .footer-section h3 {
        color: #ffc107;
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    /* Hover effect: Link thoda aage khiskega aur yellow hoga */
    .footer-links a:hover {
        color: #ffc107;
        transform: translateX(8px);
    }

    .footer-contact p {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.85rem;
    }

    /* Mobile ke liye center align */
    @media (max-width: 768px) {
        .footer-container {
            text-align: center;
            flex-direction: column;
        }
        .footer-contact p {
            justify-content: center;
        }
        .footer-links a:hover {
            transform: translateY(-3px); /* Mobile par aage khiskne ki jagah upar uthega */
        }
    }

    /* 1. PREVIOUS FOOTER CSS */
    .cc-footer-wrapper {
        background-color: #0f172a;
        border-top: 1px solid rgba(255, 193, 7, 0.2);
        padding: 40px 20px 20px;
        margin-top: 50px;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        color: #94a3b8;
    }
    .cc-footer-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .cc-footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; }
    .cc-footer-links a { color: #e2e8f0; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s ease; cursor: pointer; }
    .cc-footer-links a:hover { color: #ffc107; }
    .cc-footer-contact { margin-top: 10px; font-size: 14px; line-height: 1.8; }
    .cc-footer-contact span { color: #ffc107; font-weight: 600; }
    .cc-footer-bottom { margin-top: 30px; font-size: 12px; opacity: 0.6; }

    /* 2. NAYA POLICY MODAL CSS */
    .policy-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
        display: none; justify-content: center; align-items: center;
        z-index: 2000; padding: 20px; box-sizing: border-box;
    }
    .policy-modal {
        background: #1e293b; color: #e2e8f0; padding: 30px;
        border-radius: 20px; width: 100%; max-width: 650px;
        max-height: 80vh; overflow-y: auto; border: 1px solid rgba(255,193,7,0.4);
        position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }
    /* Sleek Scrollbar for Modal */
    .policy-modal::-webkit-scrollbar { width: 6px; }
    .policy-modal::-webkit-scrollbar-track { background: #0f172a; border-radius: 10px; }
    .policy-modal::-webkit-scrollbar-thumb { background: #ffc107; border-radius: 10px; }
    
    .policy-close {
        position: absolute; top: 15px; right: 20px; font-size: 26px;
        color: #f44336; cursor: pointer; font-weight: bold; line-height: 1; transition: 0.3s;
    }
    .policy-close:hover { transform: scale(1.1); }
    .policy-modal h2 { color: #ffc107; margin-top: 0; margin-bottom: 15px; font-size: 1.5rem; text-transform: uppercase; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 10px; }
    .policy-content { font-size: 0.95rem; line-height: 1.7; color: #94a3b8; text-align: left; }
    .policy-content h4 { color: #fff; margin-top: 15px; margin-bottom: 5px; }