.puja-dashboard{
    background: rgb(126 153 153 / 49%);
    margin-bottom: 2rem; 
    overflow-x: hidden;
  }


/* Optional: Add overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}



.puja-page-wrapper {
    max-width: 100%;
    margin: 0 auto;
    /* padding: 0 1.5rem 3rem; */
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 1rem 4rem;
    text-align: center;

    background: linear-gradient(135deg, rgba(15, 43, 61, 0.8), rgba(26, 74, 111, 0.85)), url('../image/sprits.webp');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(2px);
}

.hero-section::before {
    content: "🕉️";
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    bottom: -50px;
    /* right: -50px; */
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 150, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 150, 0.3);
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.hero-section p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* City Selector */
.city-selector {
    background: white;
    border-radius: 0 0 30px 30px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.city-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c5a6e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.city-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.city-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: 2px solid #e0d0c8;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-btn i {
    font-size: 1rem;
}

.city-btn.active {
    background: linear-gradient(135deg, #2c5a6e, #1a3a4a);
    color: white;
    border-color: #2c5a6e;
}

.city-btn:hover:not(.active) {
    background: #fff0e0;
    border-color: #2c5a6e;
}

/* Search Card */
.search-card {
    background: white;
    max-width: 550px;
    margin: 0 auto;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    border-radius: 80px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.search-card i {
    color: #e6b422;
    font-size: 1.2rem;
}

.search-card input {
    flex: 1;
    border: none;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    background: transparent;
}

.search-card button {
    background: linear-gradient(135deg, #e6b422, #d4950a);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0 1.5rem;
}

.filter-chip {
    padding: 0.6rem 1.5rem;
    background: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ffe0b5;
    color: #4a1d3d;
}

.filter-chip.active {
    background: linear-gradient(135deg, #2c5a6e, #1a3a4a);
    color: white;
    border-color: transparent;
}

/* Section Title */
.section-title {
    text-align: center;
    margin: 1.5rem 0 2rem;
}

.section-title h2 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: #2d1b2e;
    font-weight: 700;
}

.city-badge {
    display: inline-block;
    background: #e6b42220;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #2c5a6e;
}

/* Puja Grid */
.puja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    margin: 40px;
}

.puja-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border: 1px solid rgba(230, 180, 34, 0.2);
}

.puja-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(44, 90, 110, 0.15);
    border-color: #e6b422;
}

.card-img {
    height: 160px;
    background: linear-gradient(135deg, #2c5a6e20, #e6b42220);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-img span {
    font-size: 3.5rem;
}

.puja-city-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(44, 90, 110, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.puja-category-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(230, 180, 34, 0.95);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2d1b2e;
}

.card-content {
    padding: 1.2rem 1.2rem 1.5rem;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d1b2e;
}

.puja-desc {
    font-size: 0.8rem;
    color: #6c5a6e;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.puja-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.duration {
    background: #fff0e0;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    color: #2c5a6e;
}

.price {
    font-weight: 700;
    color: #e6b422;
    font-size: 1.1rem;
}

.book-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, #2c5a6e, #1a3a4a);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-btn:hover {
    background: #e6b422;
    color: #2d1b2e;
}

.load-more-wrap {
    text-align: center;
    margin: 2rem 0 1rem;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #2c5a6e;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #2c5a6e;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.simple-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0 1rem;
    border-top: 1px solid #ffe0b5;
    color: #6c5a6e;
    font-size: 0.8rem;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background: white;
    max-width: 450px;
    width: 90%;
    padding: 2rem;
    border-radius: 32px;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6c5a6e;
}

.modal-container input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.6rem 0;
    border: 1px solid #e0d0d8;
    border-radius: 18px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.primary {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #2c5a6e, #1a3a4a);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
}

/* floating whatsapp button */
.whatsapp-float-puja {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50px;
    padding: 10px 18px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 99;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float-puja:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .search-card {
        flex-wrap: wrap;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .search-card input {
        background: white;
        border-radius: 60px;
        padding: 0.8rem 1rem;
        width: 100%;
    }

    .search-card button {
        width: 100%;
        justify-content: center;
    }

    /* .puja-page-wrapper {
        padding: 0 1rem 2rem;
    } */

    .city-buttons {
        gap: 0.5rem;
    }

    .city-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}