
:root {
    --primary: #d9573d;
    --primary-dark: #c24e37;
    --primary-light: #ff7b5c;
    --accent: #ffd166;
    --accent-light: #ffe4a8;
    --dark: #2a1b0e;
    --light: #fff7ef;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(217, 87, 61, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Floating Elements */
.floating-om {
    position: absolute;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.floating-om.om-2 {
    font-size: 200px;
    bottom: 10%;
    right: 5%;
    animation: float 12s ease-in-out infinite reverse;
}

.floating-dot {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 87, 61, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.floating-dot.dot-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.sacred-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(217, 87, 61, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title span:first-child {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   font-size: 69px;
}

.title-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 25px 0;
    border-radius: 3px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.feature-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--accent);
    font-size: 18px;
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(217, 87, 61, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 87, 61, 0.6);
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-glow:hover::before {
    left: 100%;
}

.btn-outline-glow {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-outline-glow:hover {
    border-color: var(--primary);
    background: rgba(217, 87, 61, 0.1);
    transform: translateY(-3px);
}

/* Stats */
.stats-container {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Booking Card */
.booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.5s ease;
    animation: slideInRight 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-card:hover {
    transform: perspective(1000px) rotateY(-2deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(217, 87, 61, 0.3);
}

.card-header-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header-glow::before {
    content: 'ॐ';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.1;
    color: white;
    transform: rotate(15deg);
}

.card-header-glow h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.card-header-glow p {
    opacity: 0.9;
    font-size: 14px;
}

.booking-form {
    padding: 30px;
}

.form-floating {
    position: relative;
}

.form-floating .form-control {
    height: 60px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding-left: 45px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 87, 61, 0.1);
}

.form-floating label {
    padding-left: 45px;
    color: #666;
    font-size: 14px;
}

.form-floating i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    z-index: 10;
    font-size: 16px;
}

.bg-puja{
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    font-weight: 800 !important;
}

.btn-book-now {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 87, 61, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.trust-item i {
    color: var(--primary);
    font-size: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 60px;
    }
    
    .gradient-text {
        font-size: 70px;
    }
    
    .hero-content {
        text-align: center;
        padding: 40px 0;
    }
    
    .title-decoration {
        margin: 25px auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-list {
        justify-content: center;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .floating-om {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 40px;
    }
    
    .gradient-text {
        font-size: 26px;
    }
    
    .booking-card {
        margin-bottom: 20px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn-primary-glow, .btn-outline-glow {
        width: 100%;
        text-align: center;
    }
}

/* Add counter animation */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}





/* =======================================================/ */
/* ======================================================= */



/* shop by category css  */

.shop-category {
background: #fff;
}

.section-title {
font-weight: 600;
color: #b44a1f;
}

/* Filters */
.category-filters .filter-btn {
border: none;
background: none;
margin: 0 10px;
font-weight: 500;
color: #666;
position: relative;
}

.category-filters .filter-btn.active {
color: #c1441d;
}

/* Slider */
.slider-wrapper {
position: relative;
}

.category-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
}
.category-slider::-webkit-scrollbar {
    display: none;
}
/* Card */
.product-card-slider {
    flex: 0 0 auto;
min-width: 260px;
}

.product-card-slider h6 {
font-size: 14px;
}

/* Nav Buttons */
.nav-btn {
position: absolute;
top: 40%;
width: 45px;
height: 45px;
border-radius: 50%;
border: none;
background: #fff;
color: #000;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
font-size: 24px;
cursor: pointer;
z-index: 2;
}

.prev-btn {
left: -20px;
}

.next-btn {
right: -20px;
}

/* Mobile – 1 card full */
@media (max-width: 576px) {
.product-card-slider {
min-width: 90%;
}
.prev-btn {
left: -5px;
}

.next-btn {
right: -5px;
}
.slider-wrapper {
padding: 0 20px;
}
}

/* ============================================ */
/* ============================================ */

/* testimonial css  */
.testimonial-section {
padding: 80px 0;
background: #fff7ef;
height: auto;
}

.testimonialSwiper,
.swiper-wrapper,
.swiper-slide {
height: auto !important;
}

.swiper-slide {
display: flex;
}


.testimonial-card {
background: #fff;
border-radius: 20px;
padding: 30px;
/* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
box-shadow: 0 2px 4px 2px rgb(251 140 0 / 61%);
height: auto;
transition: 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-8px);
}

.review {
font-size: 15px;
color: #555;
line-height: 1.7;
margin-bottom: 20px;
}

.user {
display: flex;
align-items: center;
gap: 12px;
}

.user img {
width: 55px;
height: 55px;
border-radius: 50%;
object-fit: cover;
}

.user h6 {
margin: 0;
font-weight: 600;
}

.user span {
font-size: 13px;
color: #888;
}

.testi-prev-btn::after,
.testi-next-btn::after {
display: none;
}

.testi-btn {
position: absolute;
top: 40%;
width: 45px !important;
height: 45px !important;
border-radius: 50%;
border: none;
background: #b44a1f;
color: #fff !important;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
font-size: 24px;
cursor: pointer;
z-index: 5 !important;
}

.testi-prev-btn {
left: 10px !important;
}

.testi-next-btn {
right: 10px !important;
}

/* =========================================== */
/* ============================================ */

/* faq css  */
.faq-section {
background: #fff7ef;
}

.faq-accordion .accordion-item {
border: none;
margin-bottom: 15px;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-accordion .accordion-button {
background: #fff;
font-weight: 600;
color: #8a3412;
padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
background: #fff3e6;
color: #8a3412;
box-shadow: none;
}

.faq-accordion .accordion-button:focus {
box-shadow: none;
}

.faq-accordion .accordion-body {
background: #fff;
color: #555;
line-height: 1.7;
}

/* ============================================= */
/* -============================================ */
/* hero section      */

:root {
--primary: #d9573d !important;
--primary-dark: #c24e37 !important;
--accent: #ffd166;
--light: #f8f9fa;
}
.hero-section {
position: relative;
min-height: 100vh;
overflow: hidden;
background: linear-gradient(135deg, #0a0a0acc 0%, #7d777257 100%);
}

.bg-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.3;
z-index: 0;
}

.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0a0a0acc 0%, #7d777257 100%);
z-index: 1;
}
.top-text {
color: var(--accent);
letter-spacing: 3px;
position: relative;
display: inline-block;
}

.top-text::after {
content: '';
position: absolute;
width: 60px;
height: 3px;
background: var(--accent);
bottom: -5px;
left: 0;
}

.main-text {
background: linear-gradient(to right, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.puja-fs-10 {
       background: linear-gradient(to right, #d4412752, #f7c2b836);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 3px 1px 1px #d9563c;
    box-shadow: 0px 1px 4px #d9563d;
    border-radius: 11px;
    /* padding: 10px; */
}


.btn-3d:hover {
transform: perspective(500px) rotateX(0deg) translateY(-5px);
box-shadow: 
0 15px 30px rgba(0, 0, 0, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
background: linear-gradient(145deg, var(--primary-dark), var(--primary));

}

.btn-3d::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.7s ease;
}

.btn-3d:hover::before {
left: 100%;
}

/* 3D Search Card */
.search-card-3d {
background: rgb(255 255 255 / 91%);
/* backdrop-filter: blur(10px); */
box-shadow: 0 0px 7px 2px rgb(212 65 39 / 64%), inset 0 1px 0 rgba(255, 255, 255);
/* transform: perspective(1000px) rotateY(-10deg); */
animation: slideIn 1.5s ease-out forwards;
border: 6px solid rgb(125 39 39 / 12%);

}
/* Form Icons */
.form-group {
position: relative;
}

.form-group i {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
color: var(--primary);
z-index: 111111111132 !important;
background: #ffffff;
}



@keyframes gentleMove {
0%, 100% { transform: translateY(0) rotate(0deg); }
33% { transform: translateY(-10px) rotate(1deg); }
66% { transform: translateY(5px) rotate(-1deg); }
}

/* Om Symbol Animation */
.om-symbol {
animation: spin 10s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* SVG Icons */
.svg-icon {
width: 30px;
height: 30px;
filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* Decorative Line */
.decorative-line {
height: 3px;
width: 100px;
background: linear-gradient(to right, var(--primary), transparent);
border-radius: 3px;
}

/* Pooja Cards Enhancement */
.pooja-card {
transition: all 0.3s ease;
border: none;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pooja-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(255, 122, 0, 0.2);
}

/* Testimonial Cards */
.testimonial-card {
border: none;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(255, 122, 0, 0.15);
}



/* Alternative approach - z-index increase */
.custom-date-input {
    position: relative;
    z-index: 1;
}

.custom-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    opacity: 1;
    z-index: 999;
    cursor: pointer;
    background: transparent;
    color: #d9573d;
}

/* Debug - picker visible hoga */
.custom-date-input::-webkit-calendar-picker-indicator {
    background: #d9573d !important; /* Temporary to see if it's there */
    opacity: 1 !important;
}

/* Puja Booking Card */
.puja-booking-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 420px;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    border: 1px solid rgba(217, 87, 61, 0.1);
}

/* Booking Header */
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.booking-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.3px;
}

.month-year-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8fafc;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #d9573d;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.month-year-selector:hover {
    background: #fff1eb;
    border-color: #d9573d;
}
.date-picker-container {
    position: relative;
    margin-bottom: 12px;
    /* Z-index context create karta hai */
    isolation: isolate;
    z-index: 9999;
}

/* Date Trigger */
.date-trigger {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.date-trigger:hover {
    border-color: #d9573d;
    background: #fffaf5;
}

.date-trigger.active {
    border-color: #d9573d;
    box-shadow: 0 0 0 4px rgba(217, 87, 61, 0.15);
}

.trigger-text {
    color: #64748b;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.trigger-text.selected {
    color: #1e293b;
    font-weight: 500;
}

.date-trigger i {
    color: #d9573d;
    font-size: 18px;
    transition: transform 0.2s;
}

.date-trigger.active i {
    transform: rotate(180deg);
}
/* Calendar Dropdown - Fixed z-index */
.calendar-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    /* Proper z-index with stacking context */
    z-index: 2147483647 !important; /* Max 32-bit integer */
    display: none;
    border: 1px solid rgba(217, 87, 61, 0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    /* Ensure it's above everything */
    pointer-events: auto;
    /* Force new stacking context */
    isolation: isolate;
}

.calendar-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Ensure parent container doesn't clip */
.puja-booking-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 420px;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    border: 1px solid rgba(217, 87, 61, 0.1);
    /* Important: overflow visible hona chahiye */
    overflow: visible !important;
    position: relative;
    /* Ensure card has its own stacking context but doesn't clip */
    z-index: 1;
}

/* Fix for any parent containers that might clip */
.puja-booking-section,
.booking-form,
.col-lg-5,
.container,
.row,
.hero-section {
    overflow: visible !important;
}

/* Ensure body doesn't create issues */
body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Date Trigger - Ensure it's clickable */
.date-trigger {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Fix for modal/dialog if calendar is inside one */
.modal,
.modal-content,
.modal-body {
    overflow: visible !important;
}

/* Force hardware acceleration for smooth rendering */
.calendar-dropdown {
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Debug - temporary border to see boundaries */
.calendar-dropdown.show {
    /* Remove this after testing */
    /* border: 2px solid red; */
}

/* If still not working, try this nuclear option */
@media screen and (min-width: 0px) {
    .calendar-dropdown.show {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90%;
        max-width: 400px;
        z-index: 999999999999 !important;
    }
    
    /* Adjust trigger for fixed positioning */
    .date-trigger.active {
        position: relative;
        z-index: 999999999998 !important;
    }
}
/* Calendar Navigation */
.cal-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f8fafc;
    color: #d9573d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 16px;
}

.nav-btn:hover:not(:disabled) {
    background: #d9573d;
    color: white;
    transform: scale(1.05);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.current-month {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* Week Days */
.week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.week-days div {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #d9573d;
    padding: 8px 0;
    text-transform: uppercase;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
    min-height: 240px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 44px;
    margin: 0 auto;
    border: 2px solid transparent;
}

.cal-day:not(.other-month):not(.disabled):hover {
    background: #d9573d;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(217, 87, 61, 0.2);
}

.cal-day.other-month {
    color: #cbd5e1;
    background: transparent;
    cursor: default;
    pointer-events: none;
}

.cal-day.disabled {
    color: #cbd5e1;
    background: #f1f5f9;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
    text-decoration: line-through;
    text-decoration-color: #d9573d;
    text-decoration-thickness: 1px;
}

.cal-day.selected {
    background: #d9573d;
    color: white;
    font-weight: 600;
    border-color: #d9573d;
    box-shadow: 0 8px 16px rgba(217, 87, 61, 0.3);
}

.cal-day.today {
    border: 2px solid #d9573d;
    font-weight: 700;
    background: #fff1eb;
}

/* Quick Actions */
.cal-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid #f1f5f9;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: #f1f5f9;
    color: #64748b;
}

.action-btn:hover {
    background: #e2e8f0;
    color: #475569;
}

.action-btn.primary {
    background: #d9573d;
    color: white;
}

.action-btn.primary:hover {
    background: #c24e37;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(217, 87, 61, 0.3);
}

/* Field Hint */
.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 20px;
    font-size: 12px;
    color: #64748b;
}

.field-hint i {
    color: #d9573d;
    font-size: 14px;
}

/* Loading State */
.calendar-grid.loading {
    position: relative;
    min-height: 240px;
}

.calendar-grid.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #d9573d;
}

/* Responsive */
@media (max-width: 480px) {
    .puja-booking-card {
        padding: 20px;
        border-radius: 24px;
    }
    
    .calendar-dropdown {
        padding: 12px;
    }
    
    .cal-day {
        max-width: 38px;
        font-size: 13px;
    }
    
    .current-month {
        font-size: 16px;
    }
}


.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.custom-pagination li {
    display: inline-block;
}

.custom-pagination li a,
.custom-pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Normal State */
.custom-pagination li a {
    background: #f1f3f5;
    color: #333;
}

/* Hover Effect */
.custom-pagination li a:hover {
    background: #198754;
    color: #fff;
    transform: translateY(-2px);
}

/* Active Page */
.custom-pagination li.active {
    background: #198754;
    color: #fff;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

/* Disabled */
.custom-pagination li.disabled {
    background: #e9ecef;
    color: #aaa;
    cursor: not-allowed;
}

/* ===================================== */


/* our promise css  */
        .promise-heading {
            font-weight: 500;
            letter-spacing: 1px;
        }

        .promise-heading .highlight {
            font-style: italic;
        }

        .promise-heading .dot {
            color: #c65b2b;
            font-size: 18px;
        }

        .promise-item p {
            margin-top: 12px;
            font-weight: 500;
            color: #c65b2b;
        }

        /* Golden Badge Shape */
        .gold-badge {
            width: 90px;
            height: 90px;
            margin: auto;
            background: linear-gradient(145deg, #f7d58a, #caa24f);
            clip-path: polygon(50% 0%, 65% 10%, 85% 10%, 95% 30%,
                    85% 50%, 95% 70%, 85% 90%,
                    65% 90%, 50% 100%,
                    35% 90%, 15% 90%, 5% 70%,
                    15% 50%, 5% 30%, 15% 10%, 35% 10%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c65b2b;
            font-size: 28px;
            transition: 0.3s ease;
        }

        /* Hover Effect */
        .promise-item:hover .gold-badge {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        /* ================================================ */
        /* ================================================ */