/*
 * Page     : City-Puja Template
 * File     : css/desktop/pages/pagecitypuja.css
 * Loaded by: page-city-puja-template.php (mobile + desktop)
 *
 * Local CSS variable aliases (--saffron, --maroon-dark, --text-mid, etc.) are
 * defined in the page template's inline <style> block — used here as-is.
 * --sacred-saffron references are replaced with var(--np-saffron, #F37420).
 *
 * Puja service card CSS (.puja-services-grid, .puja-service-card, etc.) is
 * also included here (source: home-desktop.css) since this page renders the
 * same card grid independently.
 */

/* ══════════════════════════════════════════
   SECTION WRAPPER
   ══════════════════════════════════════════ */
.npgp-seation {
    padding: 80px 8vw;
}

.achievements-seation {
    padding: 0;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.npgp-hero {
    padding-top: 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, #fff7ed, #ffffff, #fff7ed);
    padding-bottom: 0;
}

.hero-left {
    position: relative;
    z-index: 2;
    padding: 0 40px 60px 0;
}

.hero-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--maroon-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(201, 149, 42, 0.1));
    border: 1px solid rgba(232, 97, 26, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 20px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid rgba(201, 149, 42, 0.25);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    box-shadow: 0 2px 8px rgba(100, 30, 10, 0.06);
}

.trust-pill .check {
    color: #22C55E;
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.npgp-btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(77, 148, 35, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.npgp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(77, 148, 35, 0.4);
    color: #fff;
}

.npgp-btn-secondary {
    background: #fff;
    color: var(--np-saffron, #F37420);
    border: 2px solid var(--np-saffron, #F37420);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.npgp-btn-secondary:hover {
    color: var(--np-saffron, #F37420);
    transform: translateY(-1px);
}

.hero-right {
    position: relative;
    z-index: 2;
    padding: 50px 0 80px 20px;
    margin: 0 auto;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(100, 30, 10, 0.25), 0 0 0 1px rgba(201, 149, 42, 0.1);
    overflow: hidden;
    max-width: 470px;
}

.booking-card-header {
    background: var(--np-saffron, #F37420);
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;
}

.booking-card-header span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.booking-card-header p {
    color: #fff;
    font-size: 0.82rem;
    margin-top: 4px;
}

.pandit99-tab-wrapper-container {
    height: auto !important;
    /* display: block; */
}
/* ══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ══════════════════════════════════════════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    max-width: 580px;
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   WHY CHOOSE SECTION
   ══════════════════════════════════════════ */
.why-section {
    background: white;
}

.why-slider-wrapper {
    position: relative;
    width: 100%;
}

.why-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.why-slider::-webkit-scrollbar {
    display: none;
}

.why-card {
    flex: 0 0 calc((100% - 32px) / 4);
    min-width: 260px;
    background: #fff;
    border: 1px solid rgba(233, 136, 15, 0.3);
    border-radius: 20px;
    padding: 28px;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: #ffedd5;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--np-saffron, #F37420);
}

.why-card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.why-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff8c00;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    display: grid;
    place-items: center;
    transition: background 0.2s;
}

.why-arrow:hover {
    background: var(--saffron);
}

.why-arrow-left {
    left: -20px;
}

.why-arrow-right {
    right: -20px;
}

/* ══════════════════════════════════════════
   SAMAGRI LIST TABLE
   ══════════════════════════════════════════ */
.psl-table {
    width: 100%;
    border-collapse: collapse;
}

.psl-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    width: 33.33%;
    font-size: 14px;
}

.psl-table tr:hover {
    background: #fff4e6;
}

.psl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    margin-right: 10px;
}

.psl-note-box {
    margin-top: 20px;
    padding: 15px;
    background: #fff4e6;
    border: 2px solid #f97316;
    border-radius: 8px;
}

.psl-note-text strong {
    color: #c2410c;
}

/* ══════════════════════════════════════════
   HOW IT WORKS — STEPS
   ══════════════════════════════════════════ */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 52px;
    position: relative;
}

.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
    opacity: 0.3;
}

.step-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 24px rgba(232, 97, 26, 0.35);
}

.step-item h4 {
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.how-cta {
    text-align: center;
    margin-top: 48px;
}

/* ══════════════════════════════════════════
   RITUALS INCLUDED
   ══════════════════════════════════════════ */
.rituals-section {
    background: white;
}

.rituals-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.ritual-visual {
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 80px rgba(100, 30, 10, 0.25);
    overflow: hidden;
    background-image: url(https://99pandit.com/wp-content/themes/ninetyninepandit/images/grihapraveshPujas_1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ritual-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px 20px;
    transition: background 0.2s;
}

.ritual-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.ritual-info span {
    color: var(--np-saffron, #F37420);
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.ritual-info p {
    color: var(--np-saffron, #F37420);
    font-size: 0.8rem;
    margin-top: 2px;
    margin-bottom: 0;
}

.ritual-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 149, 42, 0.12);
}

.ritual-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ritual-check {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: green;
    font-size: 25px;
    font-weight: 700;
    margin-top: 2px;
}

.ritual-feature span {
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 4px;
    font-size: 20px;
    display: block;
}

.ritual-feature p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════
   AREAS TABLE
   ══════════════════════════════════════════ */
.np-mumbai-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 30px;
    scrollbar-width: thin;
    scrollbar-color: #ff7a18 #f4ece8;
}

.np-mumbai-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.np-mumbai-table-wrapper::-webkit-scrollbar-track {
    background: #f4ece8;
    border-radius: 10px;
}

.np-mumbai-table-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--np-saffron, #F37420);
    border-radius: 10px;
}

.np-mumbai-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e5670f;
}

.np-mumbai-zone-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}

.np-mumbai-zone-table th {
    background: #ff7a18;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #eee;
    white-space: nowrap;
}

.np-mumbai-zone-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #ff7a18;
    font-size: 14px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.np-mumbai-zone-table td i {
    color: #ff7a18;
    margin-right: 6px;
}

.np-mumbai-zone-table tr:hover td {
    background: #fff3e8;
}

/* ══════════════════════════════════════════
   LANGUAGES & TYPES GRID
   ══════════════════════════════════════════ */
.languages-section {
    background: linear-gradient(180deg, #fff3eb, #ffffff);
}

.languages_slide {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.types_slide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.languages_cards {
    width: 100%;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(233, 136, 15, 0.3);
    border-radius: 20px;
    padding: 28px;
    box-sizing: border-box;
}

.languages_cards h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.languages_cards p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.languages-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.languages_cards:hover .languages-icon {
    transform: scale(1.1);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials-section {
    background: white;
}

.npgp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.npgp-review-card {
    background: #fff7ed;
    border: 1px solid rgba(201, 149, 42, 0.15);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.npgp-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(100, 30, 10, 0.15);
}

.npgp-review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--np-saffron, #F37420);
    line-height: 1;
    font-weight: 900;
}

.npgp-stars {
    color: #F5A623;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.npgp-review-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.npgp-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.npgp-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #f97316, #ea580c);
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.npgp-author-name {
    font-weight: 700;
    color: var(--maroon-dark);
    font-size: 0.92rem;
}

.npgp-author-loc {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ══════════════════════════════════════════
   RELATED PUJAS GRID
   ══════════════════════════════════════════ */
.related-section {
    background: linear-gradient(180deg, #fff3eb, #ffffff);
}

.puja-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.puja-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin: 10px auto;
}

.puja-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.puja-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.puja-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.puja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.puja-service-card:hover .puja-card-image img {
    transform: scale(1.08);
}

.puja-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--np-saffron, #F37420);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

.puja-card-content {
    padding: 20px;
}

.puja-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.puja-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.puja-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.puja-rating i {
    color: #DAA520;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-left: 5px;
}

.puja-conducted {
    font-size: 13px;
    color: #6b7280;
}

.puja-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.view-details-btn {
    background: transparent;
    color: var(--np-saffron, #F37420);
    border: 1px solid var(--np-saffron, #F37420);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-details-btn:hover {
    background: #fff7ed;
    transform: translateY(-2px);
}

.book-puja-btn {
    background: var(--np-saffron, #F37420);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-puja-btn:hover {
    background: #e05515;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 116, 32, 0.3);
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--np-saffron, #F37420);
    border: 2px solid var(--np-saffron, #F37420);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.load-more-btn:hover {
    background: var(--np-saffron, #F37420);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 116, 32, 0.2);
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.faq-item {
    background: linear-gradient(180deg, #fff3eb, #ffffff);
    border: 1px solid rgba(201, 149, 42, 0.15);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: rgba(232, 97, 26, 0.3);
    box-shadow: 0 4px 20px rgba(100, 30, 10, 0.08);
}

.faq-questions {
    font-weight: 500;
    color: var(--maroon-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.faq-questions::before {
    content: 'Q.';
    color: var(--saffron);
    flex-shrink: 0;
    font-style: italic;
}

.faq-answer {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    padding-left: 26px;
}

/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.cta-box {
    margin: auto;
    text-align: center;
    color: #fff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-position: center;
    background-image: url(https://99pandit.com/wp-content/themes/ninetyninepandit/images/grihapraveshPuja.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
}

.cta-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 25px;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #f37420 !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.register_btnn_cta {
    background-color: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    border: 2px solid #fff;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
}

.final-cta .section-label {
    justify-content: center;
    color: var(--saffron);
    background: #fff;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.final-cta p {
    color: #fff;
    margin: 0 auto 0;
}

/* ══════════════════════════════════════════
   ALL SERVICES TOGGLE
   ══════════════════════════════════════════ */
.np-all-services-toggle-section {
    padding-top: 50px;
}

.np-all-services-btn-wrap {
    text-align: center;
}

.np-all-services-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #f47c20 0%, #ff9447 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(244, 124, 32, 0.25);
    transition: all 0.3s ease;
}

.np-all-services-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(244, 124, 32, 0.32);
}

.np-all-services-toggle-btn.active .np-btn-icon {
    transform: rotate(45deg);
}

.np-btn-text { line-height: 1; }

.np-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s ease;
}

.np-all-services-box {
    margin-top: 30px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.np-all-services-box.open {
    max-height: 2500px;
    opacity: 1;
}

.np-all-services-box-inner {
    padding: 35px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #f3dfd1;
    border-radius: 28px;
    box-shadow: 0 12px 35px rgba(34, 34, 34, 0.06);
}

.np-all-services-heading-wrap {
    margin-bottom: 28px;
    text-align: left;
}

.np-all-services-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 14px;
    border-radius: 50px;
    background: #fff2e8;
    color: #f47c20;
    font-size: 13px;
    font-weight: 600;
}

.np-all-services-title {
    color: #f47c20;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.np-all-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.np-all-services-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 18px;
    border: 1px solid #f6e6d9;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.np-all-services-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #f47c20 0%, #ff9a52 100%);
    transition: width 0.3s ease;
    z-index: 1;
}

.np-all-services-item:hover::before {
    width: 100%;
}

.np-all-services-item:hover {
    transform: translateY(-4px);
    border-color: #f47c20;
    box-shadow: 0 12px 24px rgba(244, 124, 32, 0.18);
}

.np-all-services-item-text {
    position: relative;
    z-index: 2;
    color: #f47c20;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.np-all-services-item:hover .np-all-services-item-text {
    color: #fff;
}

.np-all-services-empty {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
/* .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
} */

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1440px) {
    .languages_slide {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .languages_slide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .np-mumbai-zone-table {
        min-width: 1000px;
    }

    .np-all-services-box-inner {
        padding: 28px 22px;
    }

    .np-all-services-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .languages_slide,
    .types_slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .np-all-services-toggle-btn {
        padding: 12px 16px;
        font-size: 16px;
    }

    .np-all-services-list { gap: 12px; }

    .np-all-services-item {
        min-height: 50px;
        padding: 12px 16px;
        border-radius: 14px;
    }

    .np-all-services-item-text { font-size: 15px; }
}

@media (max-width: 900px) {
    .npgp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-left {
        padding: 40px 8vw;
    }

    .hero-right {
        padding: 0 8vw 40px;
    }

    .booking-card {
        max-width: 100%;
    }

    .rituals-layout {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .psl-table td {
        width: 50%;
        display: inline-block;
    }

    .np-mumbai-table-wrapper {
        margin-top: 20px;
    }

    .np-mumbai-zone-table {
        min-width: 850px;
    }

    .np-mumbai-zone-table th,
    .np-mumbai-zone-table td {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .npgp-seation {
        padding: 40px 3vw;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-left {
        padding: 30px 0;
    }

    .hero-right {
        padding: 0 0 36px;
    }

    .booking-card-header {
        padding: 12px;
    }

    .npgp-btn-primary {
        padding: 14px 25px;
    }

    .npgp-btn-secondary {
        padding: 12px 20px;
    }

    .ritual-visual {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .languages_slide,
    .types_slide {
        grid-template-columns: 1fr;
    }

    .psl-table td {
        width: 100%;
        display: block;
    }

    .np-mumbai-zone-table {
        min-width: 760px;
    }

    .np-all-services-toggle-btn {
        width: 100%;
        border-radius: 12px;
    }

    .np-all-services-box-inner {
        padding: 22px 14px;
        border-radius: 20px;
    }

    .np-all-services-title { font-size: 24px; }
    .np-all-services-list { gap: 10px; }

    .np-all-services-item {
        width: 100%;
        justify-content: flex-start;
        min-height: auto;
        border-radius: 12px;
    }

    .np-all-services-item-text { font-size: 14px; }
}

@media (max-width: 420px) {
    .np-mumbai-zone-table {
        min-width: 700px;
    }
}
