/* ePuja Single Puja Details Page Style Sheet */

/* Breadcrumbs */
.breadcrumb-container {
    padding: 0;
    font-size: 0.88rem;
    color: var(--slate-500);
}

/* Breadcrumb Bar styling */
.breadcrumb-bar {
    background-color: #FAF5EE; /* Light warm cream background */
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    padding: 8px 0; /* Tighter padding */
    margin-bottom: 12px; /* Snug spacing below bar */
    width: 100%;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    font-family: 'Noto Sans', sans-serif;
}

.breadcrumb-container a {
    color: #556270; /* Slate-like link grey */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-container a:hover {
    color: var(--primary-saffron);
}

.bc-sep {
    color: #ff7a00; /* Saffron divider > */
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0 4px;
}

.bc-active {
    color: #2c3e50; /* Slate dark active text */
    font-weight: 500;
}

/* Detail Hero Section (2-Column Grid) */
.puja-detail-hero {
    padding: 8px 0 45px 0; /* Tight top padding */
    background-color: #fff;
}

.puja-detail-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Hero Left Column (Slider Box) */
.puja-detail-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
    background-color: #fcfbf7;
}

.detail-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.detail-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-slide {
    min-width: 100%;
    height: 100%;
}

.detail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #475569;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 10;
    transition: all 0.2s ease;
    visibility: hidden; /* JavaScript updates visibility */
}

.detail-slider-container:hover .detail-slider-btn {
    visibility: visible;
}

.detail-slider-btn:hover {
    background: #ff7a00;
    color: #ffffff;
}

.detail-slider-btn.prev-btn {
    left: 15px;
}

.detail-slider-btn.next-btn {
    right: 15px;
    visibility: visible; /* Next button is visible initially */
}

.detail-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.detail-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.detail-slider-dots .dot.active {
    background-color: #ff7a00;
    transform: scale(1.2);
}

/* Right Column (Metadata details) */
.puja-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Tighter gap */
}

/* Meta Info Card (Card wrapper is hidden/flat matching target design) */
.meta-info-card {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.special-badge-tag {
    display: inline-block;
    background: none !important;
    border: none !important;
    color: #e11d48 !important; /* Rose-600 color */
    padding: 0 !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    margin-bottom: 0px !important;
}

.puja-detail-title {
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 1.6rem !important;
    color: #0f172a !important; /* Slate-900 */
    line-height: 1.35 !important;
    margin-bottom: 0px !important;
    font-weight: 800 !important;
}

.puja-detail-subtitle {
    font-size: 0.96rem !important;
    font-weight: 500 !important;
    color: #475569 !important; /* Slate-600 */
    line-height: 1.55 !important;
    margin-bottom: 2px !important;
}

.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 8px !important;
    margin-bottom: 2px !important;
}

.info-card-item {
    display: flex;
    align-items: center;
    gap: 10px !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.info-card-item i {
    font-size: 1.05rem !important;
    color: #ff7a00 !important;
    width: auto !important;
    text-align: left !important;
}

.info-card-item span {
    font-size: 0.9rem !important;
    color: #334155 !important;
    font-weight: 500 !important;
}

/* Countdown Clock */
.detail-countdown-container {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 4px !important;
    box-shadow: none !important;
}

.countdown-label-row {
    font-size: 0.95rem !important;
    color: #334155 !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.detail-countdown {
    display: flex;
    gap: 10px !important;
    align-items: center;
}

.countdown-block {
    display: flex;
    flex-direction: row !important;
    align-items: baseline;
    gap: 6px !important;
    background-color: #fff7ed !important; /* Soft warm orange tint */
    padding: 6px 12px !important;
    border-radius: 6px !important;
    border: none !important;
    box-shadow: none !important;
}

.countdown-num {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #ff7a00 !important;
    background: none !important;
    border: none !important;
    min-width: auto !important;
    height: auto !important;
    display: inline !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.countdown-txt {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #64748b !important;
    text-transform: none !important;
    margin-top: 0 !important;
    display: inline !important;
}

.countdown-colon {
    display: none !important; /* Hide old colons */
}

/* Avatar stack & Social proof */
.devotees-social-proof {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-bottom: 6px !important;
}

.avatar-proof-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-stack-container {
    display: flex;
    align-items: center;
}

.avatar-stack-item {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    border: 2px solid #fff !important;
    margin-left: -10px !important;
    object-fit: cover;
}

.avatar-stack-item:first-child {
    margin-left: 0 !important;
}

.rating-star-badge {
    color: #ff7a00 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border-bottom: 1.5px dashed #ff7a00;
    cursor: pointer;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-proof-text {
    font-size: 0.95rem !important;
    color: #475569 !important;
    line-height: 1.5 !important;
}

.highlight-orange {
    color: #ff7a00 !important;
    font-weight: 700 !important;
}

.social-proof-text strong {
    color: #ff7a00 !important;
    font-weight: 700 !important;
}

/* Hero CTA Action */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #098263 !important; /* Green matching --epuja-green */
    color: #fff !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(9, 130, 99, 0.2) !important;
    transition: all 0.2s ease !important;
    margin-top: 5px;
    gap: 8px;
}

.hero-cta-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(9, 130, 99, 0.3) !important;
    background-color: #076b51 !important;
}

/* Sticky Navigation Tab Bar */
.puja-navigation-tabs-section {
    position: sticky;
    top: 70px;
    background-color: #fff;
    border-bottom: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    z-index: 99;
}

.tabs-nav-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
}

.tabs-nav-link {
    display: inline-block;
    padding: 18px 22px;
    font-size: 0.96rem;
    font-weight: 700;
    color: #1e293b; /* Dark Navy-Blue/Slate-800 text */
    text-decoration: none;
    border-bottom: none;
    transition: all 0.2s ease;
}

.tabs-nav-link:hover {
    color: var(--primary-saffron);
}

.tabs-nav-link.active {
    color: var(--primary-saffron);
    border-bottom: none;
}

/* Section Spacing & Layout */
.puja-detail-content-section {
    padding: 50px 0;
}

.detail-section-wrapper {
    margin-bottom: 60px;
}

.detail-section-wrapper:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.6rem;
    color: var(--navy-blue);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-section-title i {
    color: var(--primary-saffron);
    font-size: 1.35rem;
}

/* Description Text styling */
.desc-rich-text {
    font-size: 1.02rem;
    color: var(--slate-700);
    line-height: 1.75;
}

.desc-rich-text p {
    margin-bottom: 16px;
}

/* Benefits layout */
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.benefit-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 122, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-saffron);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.benefit-card-title {
    font-size: 1.15rem;
    color: var(--slate-800);
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* Puja Process layout */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
    margin-top: 15px;
}

.process-grid-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 2px;
}

.process-badge {
    background-color: #ff7a00;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 20px;
    padding-right: 5px;
    clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
    flex-shrink: 0;
}

.process-step-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0f172a !important; /* Slate-900 */
    margin: 0 !important;
    line-height: 1.2 !important;
}

.process-step-desc {
    font-size: 0.92rem !important;
    color: #475569 !important; /* Slate-600 */
    line-height: 1.6 !important;
    margin: 0 !important;
}

.step-5-card {
    grid-column: 1;
}

/* Responsive Puja Process styles */
@media (max-width: 1024px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-5-card {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Temple details layout */
.temple-details-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.temple-image {
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    width: 100%;
}

.temple-text {
    padding: 30px;
}

.temple-text p {
    font-size: 0.96rem;
    color: var(--slate-600);
    line-height: 1.65;
}

/* Package select layout */
.packages-headline-box {
    background: rgba(9, 130, 99, 0.05);
    border: 1px solid rgba(9, 130, 99, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.packages-headline-box i {
    color: var(--epuja-green);
    font-size: 1.25rem;
}

.packages-headline-box p {
    font-size: 0.94rem;
    color: var(--slate-700);
    font-weight: 500;
}

.packages-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.package-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.package-card.selected {
    border-color: var(--primary-saffron) !important;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15);
    transform: translateY(-4px);
}

.package-popular-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-saffron);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.package-img-box {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.package-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.package-desc {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.package-price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.package-price-box .curr {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-saffron);
}

.package-price-box .price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-saffron);
}

.package-price-box .desc {
    font-size: 0.78rem;
    color: var(--slate-400);
    font-weight: 500;
}

.btn-select-pkg {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.package-card.selected .btn-select-pkg {
    background: var(--primary-saffron);
    border-color: var(--primary-saffron);
    color: #fff;
}

/* Sticky Bottom Checkout Seva Bar */
.sticky-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.06);
    padding: 16px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-checkout-bar.active {
    transform: translateY(0);
}

.checkout-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-selected-info {
    display: flex;
    flex-direction: column;
}

.checkout-pkg-name {
    font-size: 0.82rem;
    color: var(--slate-500);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.checkout-price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.checkout-price-box .curr {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-saffron);
}

.checkout-price-box .val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-saffron);
}

.checkout-price-box .label {
    font-size: 0.88rem;
    color: var(--slate-400);
    margin-left: 4px;
}

.checkout-action-btn {
    background: var(--epuja-green);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(9, 130, 99, 0.25);
    transition: all 0.2s ease;
}

.checkout-action-btn:hover {
    background-color: var(--epuja-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(9, 130, 99, 0.35);
}

/* FAQs Accordion styling */
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-accordion-header:hover {
    background-color: var(--bg-ivory);
}

.faq-accordion-icon {
    font-size: 0.9rem;
    color: var(--slate-400);
    transition: transform 0.2s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
}

.faq-accordion-content {
    padding: 0 24px 20px 24px;
    font-size: 0.94rem;
    color: var(--slate-500);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 300px;
}

.faq-accordion-item.active .faq-accordion-content {
    border-top-color: #f1f5f9;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Grid adjustment */
@media (max-width: 1024px) {
    .puja-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .benefits-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .packages-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .temple-details-block {
        grid-template-columns: 1fr;
    }
    .temple-image {
        min-height: 200px;
    }
}

@media (max-width: 600px) {
    .packages-cards-grid {
        grid-template-columns: 1fr;
    }
    .detail-countdown {
        gap: 10px;
    }
    .countdown-num {
        min-width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
    .checkout-bar-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 0 15px;
    }
    .checkout-action-btn {
        width: 100%;
        text-align: center;
    }
}

/* About Puja / Description Redesign */
#description .detail-section-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 12px !important;
    font-size: 1.45rem !important;
    color: #0f172a !important; /* Slate-900 */
    font-weight: 800 !important;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4 !important;
}

.sparkle-icon {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.desc-subtitle {
    font-size: 1.05rem !important;
    color: #334155 !important; /* Slate-700 color */
    font-weight: 700 !important;
    margin-top: 6px !important;
    margin-bottom: 14px !important;
    line-height: 1.4;
}

.desc-paragraph-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 0;
}

.purple-circle-bullet {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-top: 2px;
    flex-shrink: 0;
}

.desc-text-line {
    font-size: 0.96rem !important;
    color: #475569 !important; /* Slate-600 color */
    line-height: 1.65 !important;
    margin: 0 !important;
}

.desc-text-line-expanded {
    font-size: 0.96rem !important;
    color: #475569 !important;
    line-height: 1.65 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}

.see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ff7a00 !important; /* Saffron orange */
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.see-more-link:hover {
    color: #e04f00 !important;
    text-decoration: underline;
}

.see-more-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

/* Package Cards Grid */
.packages-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.package-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 190px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Selected state - orange border */
.package-card.selected {
    border-color: #ff7a00;
    box-shadow: 0 10px 15px -3px rgba(255, 122, 0, 0.1), 0 4px 6px -2px rgba(255, 122, 0, 0.05);
}

/* Card Header */
.package-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pkg-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Specific tag backgrounds and text colors */
.pkg-tag-individual {
    background-color: #fff7ed;
    color: #ea580c;
}
.package-card.selected .pkg-tag-individual {
    background-color: #ff7a00;
    color: #ffffff;
}

.pkg-tag-partner {
    background-color: #fce7f3;
    color: #db2777;
}

.pkg-tag-family {
    background-color: #f0fdf4;
    color: #15803d;
}

.pkg-tag-joint {
    background-color: #fef3c7;
    color: #b45309;
}

/* Selection Indicator Dot styling */
.selection-indicator {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.package-card .check-selected {
    display: none;
}
.package-card .check-unselected {
    display: block;
    color: #cbd5e1;
    font-size: 1.25rem;
}

.package-card.selected .check-selected {
    display: block;
    color: #ff7a00;
    font-size: 1.25rem;
}
.package-card.selected .check-unselected {
    display: none;
}

/* Card Body */
.package-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
    margin-top: 12px;
}

.package-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* Card Footer */
.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.package-card-price {
    font-size: 1.45rem;
    font-weight: 800;
}

/* Color codes matching the screenshot */
.price-individual {
    color: #ea580c;
}
.price-partner {
    color: #db2777;
}
.price-family {
    color: #15803d;
}
.price-joint {
    color: #b45309;
}

.package-card-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    margin-right: -10px;
    margin-bottom: -12px;
}

/* Bottom Action Bar */
.packages-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.packages-trust-bar {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 18px 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 600;
}

.trust-item i {
    color: #64748b;
    font-size: 1rem;
}

/* Premium Green Proceed Block */
.packages-proceed-btn-block {
    width: 320px;
    background-color: #098263;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(9, 130, 99, 0.2);
}

.packages-proceed-btn-block:hover {
    background-color: #076b51;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(9, 130, 99, 0.3);
}

.proceed-left {
    display: flex;
    flex-direction: column;
}

.proceed-price {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.proceed-title {
    font-size: 0.78rem;
    opacity: 0.9;
    margin-top: 2px;
    font-weight: 500;
}

.proceed-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.proceed-right i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.packages-proceed-btn-block:hover .proceed-right i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .packages-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .packages-action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .packages-proceed-btn-block {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .packages-cards-grid {
        grid-template-columns: 1fr;
    }
    .packages-trust-bar {
        	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
    }
}

/* Modern Reviews & Ratings Section Redesign */
.reviews-section-container {
    background: linear-gradient(135deg, #FFFBF7 0%, #FFFFFF 100%);
    border: 1px solid rgba(255, 122, 0, 0.14);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.reviews-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    flex-wrap: wrap;
    gap: 20px;
}

.rating-score-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-score-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1E293B;
    line-height: 1;
    letter-spacing: -1px;
}

.rating-stars-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars-col .stars {
    color: #FF7A00;
    font-size: 1.15rem;
    display: flex;
    gap: 3px;
}

.rating-count-text {
    font-size: 0.88rem;
    color: #64748B;
    font-weight: 600;
}

.verified-devotees-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.3);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.08);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.card-stars {
    color: #FF7A00;
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
}

.verified-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #10B981;
    background: #ECFDF5;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.93rem;
    color: #334155;
    line-height: 1.65;
    font-style: italic;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    width: 100%;
}

.user-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    border-radius: 50% !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #FF7A00 0%, #FF5500 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25) !important;
    flex-shrink: 0 !important;
}

.user-info h4 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1E293B !important;
    margin: 0 0 2px 0 !important;
}

.user-info span {
    font-size: 0.8rem !important;
    color: #64748B !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* Reviews Scrollable Container */
.reviews-scroll-wrapper {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
    margin-right: -6px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Reviews */
.reviews-scroll-wrapper::-webkit-scrollbar {
    width: 6px;
}

.reviews-scroll-wrapper::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 10px;
}

.reviews-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #FF7A00;
    border-radius: 10px;
}

.reviews-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #E06900;
}
