/*====================================================
    ONLINE PUJA
    Divine Dharma
====================================================*/

/*====================================================
    PAGE
====================================================*/

.puja-page {
    background: var(--bg-color);
    color: var(--text-color);
}

/*====================================================
    SECTION
====================================================*/

.section {
    padding: 80px 0;
    position: relative;
}

.light-bg {
    background: #faf8f2;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--heading-color);
}

.section-subtitle {
    width: min(700px, 100%);
    margin: auto;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 60px;
}

/*====================================================
    BADGE
====================================================*/

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(255, 153, 0, .12);

    color: #d97706;

    font-size: .9rem;

    font-weight: 600;

    letter-spacing: .5px;
}

/*====================================================
    BUTTONS
====================================================*/

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 10px;

    cursor: pointer;

    text-decoration: none;

    font-weight: 600;

    transition: .30s ease;

    border: none;

    font-size: .95rem;
}

.btn-primary {

    background: #f97316;

    color: #fff;
}

.btn-primary:hover {

    background: #ea580c;

    transform: translateY(-3px);
}

.btn-outline {

    border: 2px solid #f97316;

    color: #f97316;

    background: transparent;
}

.btn-outline:hover {

    background: #f97316;

    color: white;

    transform: translateY(-3px);
}

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 35px;

    flex-wrap: wrap;
}

/*====================================================
    LOADER
====================================================*/

#loader {

    position: fixed;

    inset: 0;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;
}

.loader-spinner {

    width: 60px;

    height: 60px;

    border: 6px solid #f1f1f1;

    border-top: 6px solid #f97316;

    border-radius: 50%;

    animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {

    from {

        transform: rotate(0deg);
    }

    to {

        transform: rotate(360deg);
    }

}

/*====================================================
    REVEAL ANIMATION
====================================================*/

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition: .7s ease;
}

.reveal.active {

    opacity: 1;

    transform: translateY(0);
}

/*====================================================
    COMMON GRID
====================================================*/

.puja-grid,
.category-grid,
.featured-grid,
.highlight-grid,
.benefits-grid,
.testimonial-grid {

    display: grid;

    gap: 30px;
}

.puja-grid {

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.category-grid {

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.featured-grid {

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.highlight-grid {

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.benefits-grid {

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-grid {

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/*====================================================
    SECTION ACTION
====================================================*/

.section-action {

    text-align: center;

    margin-top: 50px;
}


/*====================================================
    HERO SECTION
====================================================*/

.puja-hero {

    position: relative;

    overflow: hidden;

    padding: 120px 0 90px;

    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.65)),
        url("../images/puja/hero.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    color: #fff;
}

.puja-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
        rgba(255,153,0,.15),
        transparent 45%);

    pointer-events: none;
}

.puja-hero .container {

    position: relative;

    z-index: 2;
}

.hero-content {

    max-width: 760px;

    margin: auto;

    text-align: center;
}

.hero-content h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.15;

    margin-bottom: 25px;

    font-weight: 700;

    color: #fff;
}

.hero-content p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: rgba(255,255,255,.88);

    max-width: 700px;

    margin: auto;
}

/*====================================================
    HERO SEARCH
====================================================*/

.hero-search {

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 850px;

    margin: 45px auto 0;

    padding: 12px;

    background: rgba(255,255,255,.96);

    border-radius: 70px;

    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.hero-search input {

    flex: 1;

    border: none;

    outline: none;

    padding: 16px 24px;

    background: transparent;

    font-size: 1rem;

    color: #333;
}

.hero-search input::placeholder {

    color: #777;
}

.hero-search button {

    border: none;

    cursor: pointer;

    padding: 16px 30px;

    border-radius: 50px;

    background: #f97316;

    color: white;

    font-size: 1rem;

    font-weight: 600;

    transition: .3s;
}

.hero-search button:hover {

    background: #ea580c;

    transform: translateY(-2px);
}

/*====================================================
    HERO STATISTICS
====================================================*/

.hero-stats {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

    margin-top: 70px;
}

.hero-stat {

    text-align: center;

    padding: 30px 20px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 18px;

    transition: .35s ease;
}

.hero-stat:hover {

    transform: translateY(-8px);

    background: rgba(255,255,255,.13);
}

.hero-stat h2 {

    font-size: 2.3rem;

    color: #FFD166;

    margin-bottom: 12px;

    font-weight: 700;
}

.hero-stat span {

    color: rgba(255,255,255,.92);

    font-size: .95rem;

    letter-spacing: .5px;
}

/*====================================================
    HERO BADGE
====================================================*/

.puja-hero .badge {

    background: rgba(255,255,255,.15);

    color: #fff;

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);
}

/*====================================================
    HERO BUTTONS
====================================================*/

.puja-hero .btn-primary {

    background: #f97316;
}

.puja-hero .btn-primary:hover {

    background: #ea580c;
}

.puja-hero .btn-outline {

    border: 2px solid rgba(255,255,255,.8);

    color: white;

    background: transparent;
}

.puja-hero .btn-outline:hover {

    background: white;

    color: #f97316;
}

/*====================================================
    RESPONSIVE HERO
====================================================*/

@media (max-width: 992px) {

    .hero-stats {

        grid-template-columns: repeat(2,1fr);
    }

    .hero-content h1 {

        font-size: 3rem;
    }

}

@media (max-width:768px) {

    .puja-hero {

        padding: 90px 0 70px;
    }

    .hero-search {

        flex-direction: column;

        border-radius: 20px;
    }

    .hero-search input {

        width: 100%;
    }

    .hero-search button {

        width: 100%;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-stats {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .hero-content h1 {

        font-size: 2.4rem;
    }

}

@media (max-width:480px) {

    .hero-content h1 {

        font-size: 2rem;
    }

    .hero-content p {

        font-size: .95rem;
    }

}

/*====================================================
    BREADCRUMB
====================================================*/

.breadcrumb-section {

    background: #fff7ed;

    border-top: 1px solid #f3e8d2;

    border-bottom: 1px solid #f3e8d2;

    padding: 18px 0;
}

.breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    list-style: none;

    margin: 0;

    padding: 0;

    flex-wrap: wrap;
}

.breadcrumb li {

    color: #666;

    font-size: .95rem;
}

.breadcrumb li a {

    color: #f97316;

    text-decoration: none;

    font-weight: 600;

    transition: .30s;
}

.breadcrumb li a:hover {

    color: #ea580c;
}

.breadcrumb i {

    font-size: .8rem;

    color: #999;
}

/*====================================================
    SEARCH CARD
====================================================*/

.search-card {

    background: #fff;

    border-radius: 22px;

    padding: 40px;

    box-shadow: 0 18px 45px rgba(0,0,0,.08);

    border: 1px solid #f1f1f1;
}

.search-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;
}

/*====================================================
    SEARCH FIELD
====================================================*/

.search-field {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.search-field label {

    font-weight: 600;

    color: #444;

    font-size: .95rem;
}

.search-field input,
.search-field select {

    height: 54px;

    padding: 0 18px;

    border-radius: 12px;

    border: 1px solid #ddd;

    background: white;

    font-size: .95rem;

    transition: .30s;
}

.search-field input:focus,
.search-field select:focus {

    outline: none;

    border-color: #f97316;

    box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}

.search-field input::placeholder {

    color: #999;
}

/*====================================================
    SEARCH BUTTONS
====================================================*/

.search-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-top: 35px;

    flex-wrap: wrap;
}

.search-buttons .btn {

    min-width: 180px;
}

/*====================================================
    RESULT INFO
====================================================*/

.search-result-info {

    text-align: center;

    margin-top: 25px;
}

#searchResultCount {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 30px;

    background: #fff7ed;

    color: #ea580c;

    font-weight: 600;

    font-size: .95rem;
}

/*====================================================
    SEARCH LOADING
====================================================*/

.search-loading {

    opacity: .6;

    pointer-events: none;
}

.search-loading::after {

    content: "";

    display: inline-block;

    width: 18px;

    height: 18px;

    margin-left: 10px;

    border: 2px solid #ddd;

    border-top: 2px solid #f97316;

    border-radius: 50%;

    animation: searchSpin .8s linear infinite;
}

@keyframes searchSpin {

    from {

        transform: rotate(0deg);
    }

    to {

        transform: rotate(360deg);
    }

}

/*====================================================
    EMPTY STATE
====================================================*/

.empty-search {

    text-align: center;

    padding: 70px 20px;

    color: #777;
}

.empty-search i {

    font-size: 60px;

    color: #f97316;

    margin-bottom: 20px;
}

.empty-search h3 {

    margin-bottom: 12px;

    color: #333;
}

.empty-search p {

    max-width: 500px;

    margin: auto;

    line-height: 1.8;
}

/*====================================================
    RESPONSIVE SEARCH
====================================================*/

@media (max-width:1200px){

    .search-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .search-card{

        padding:28px;
    }

    .search-grid{

        grid-template-columns:1fr;
    }

    .search-buttons{

        flex-direction:column;
    }

    .search-buttons .btn{

        width:100%;
    }

}

@media (max-width:480px){

    .search-card{

        padding:20px;
    }

    .section-title{

        font-size:2rem;
    }

}

/*====================================================
    POPULAR PUJA CARDS
====================================================*/

.puja-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,.08);

    transition: .35s ease;

    display: flex;

    flex-direction: column;

    position: relative;
}

.puja-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.puja-image {

    position: relative;

    height: 240px;

    overflow: hidden;
}

.puja-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.puja-card:hover .puja-image img {

    transform: scale(1.08);
}

.puja-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    background: #f97316;

    color: #fff;

    padding: 6px 14px;

    border-radius: 50px;

    font-size: .8rem;

    font-weight: 600;
}

.puja-price {

    position: absolute;

    right: 18px;

    bottom: 18px;

    background: rgba(255,255,255,.95);

    padding: 8px 15px;

    border-radius: 30px;

    font-weight: 700;

    color: #f97316;
}

.puja-content {

    padding: 24px;

    flex: 1;

    display: flex;

    flex-direction: column;
}

.puja-content h3 {

    font-size: 1.3rem;

    color: #222;

    margin-bottom: 12px;
}

.puja-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 20px;

    flex: 1;
}

.puja-meta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 22px;

    font-size: .9rem;

    color: #777;
}

.puja-meta span {

    display: flex;

    align-items: center;

    gap: 8px;
}

.puja-actions {

    display: flex;

    gap: 12px;
}

.puja-actions .btn {

    flex: 1;

    padding: 12px;
}

/*====================================================
    CATEGORY CARD
====================================================*/

.category-card {

    background: #fff;

    border-radius: 18px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);

    transition: .35s;
}

.category-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.category-icon {

    width: 80px;

    height: 80px;

    margin: auto auto 22px;

    border-radius: 50%;

    background: rgba(249,115,22,.10);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #f97316;

    font-size: 2rem;
}

.category-card h3 {

    margin-bottom: 15px;

    color: #222;
}

.category-card p {

    color: #666;

    line-height: 1.7;

    margin-bottom: 20px;
}

.category-count {

    display: inline-block;

    background: #fff7ed;

    color: #f97316;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: .85rem;

    font-weight: 600;
}

/*====================================================
    FEATURED TEMPLE CARD
====================================================*/

.temple-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: .35s;
}

.temple-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.temple-image {

    height: 240px;

    overflow: hidden;
}

.temple-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.temple-card:hover img {

    transform: scale(1.08);
}

.temple-content {

    padding: 25px;
}

.temple-content h3 {

    margin-bottom: 10px;

    color: #222;
}

.temple-location {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #777;

    margin-bottom: 16px;
}

.temple-description {

    color: #666;

    line-height: 1.8;

    margin-bottom: 20px;
}

.temple-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.temple-rating {

    color: #ffb400;

    display: flex;

    gap: 4px;

    align-items: center;
}

.temple-footer .btn {

    padding: 10px 18px;
}

/*====================================================
    RESPONSIVE
====================================================*/

@media(max-width:992px){

    .puja-actions{

        flex-direction:column;
    }

}

@media(max-width:768px){

    .puja-image{

        height:220px;
    }

    .temple-image{

        height:220px;
    }

}

@media(max-width:480px){

    .category-card{

        padding:25px;
    }

    .puja-content{

        padding:20px;
    }

}

/*====================================================
    WHY CHOOSE US
====================================================*/

.highlight-card {

    background: #ffffff;

    padding: 35px 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    transition: .35s ease;

    border: 1px solid #f3f3f3;
}

.highlight-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

.highlight-icon {

    width: 85px;

    height: 85px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(249,115,22,.12);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    color: #f97316;
}

.highlight-card h3 {

    margin-bottom: 15px;

    color: #222;

    font-size: 1.35rem;
}

.highlight-card p {

    color: #666;

    line-height: 1.8;
}

/*====================================================
    BOOKING PROCESS
====================================================*/

.booking-process {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;

    margin-top: 70px;

    position: relative;
}

.booking-process::before {

    content: "";

    position: absolute;

    left: 12%;

    right: 12%;

    top: 55px;

    height: 3px;

    background: linear-gradient(to right,#f97316,#FFD166);

    z-index: 0;
}

.process-card {

    position: relative;

    background: #fff;

    padding: 35px 25px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    z-index: 2;

    transition: .35s;
}

.process-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.process-number {

    position: absolute;

    top: -18px;

    left: 50%;

    transform: translateX(-50%);

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #f97316;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;
}

.process-icon {

    font-size: 2.8rem;

    color: #f97316;

    margin: 25px 0 20px;
}

.process-card h3 {

    margin-bottom: 15px;

    color: #222;
}

.process-card p {

    color: #666;

    line-height: 1.8;
}

/*====================================================
    BENEFITS
====================================================*/

.benefit-card {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    display: flex;

    gap: 20px;

    align-items: flex-start;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);

    transition: .35s;
}

.benefit-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.benefit-icon {

    min-width: 70px;

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: rgba(249,115,22,.10);

    color: #f97316;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.8rem;
}

.benefit-content {

    flex: 1;
}

.benefit-content h3 {

    margin-bottom: 12px;

    color: #222;

    font-size: 1.2rem;
}

.benefit-content p {

    color: #666;

    line-height: 1.8;
}

/*====================================================
    HOVER EFFECTS
====================================================*/

.puja-card,
.category-card,
.temple-card,
.highlight-card,
.process-card,
.benefit-card {

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.puja-card:hover,
.category-card:hover,
.temple-card:hover,
.highlight-card:hover,
.process-card:hover,
.benefit-card:hover {

    cursor: pointer;
}

/*====================================================
    RESPONSIVE
====================================================*/

@media (max-width:1100px){

    .booking-process{

        grid-template-columns:repeat(2,1fr);
    }

    .booking-process::before{

        display:none;
    }

}

@media (max-width:768px){

    .benefit-card{

        flex-direction:column;

        text-align:center;

        align-items:center;
    }

    .highlight-card{

        padding:30px 22px;
    }

}

@media (max-width:576px){

    .booking-process{

        grid-template-columns:1fr;
    }

    .process-card{

        padding:30px 22px;
    }

}

/*====================================================
    TESTIMONIALS
====================================================*/

.testimonial-card {

    background: #fff;

    border-radius: 22px;

    padding: 35px;

    box-shadow: 0 12px 35px rgba(0,0,0,.08);

    transition: .35s;

    position: relative;
}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.testimonial-card::before {

    content: "\201C";

    position: absolute;

    top: 20px;

    right: 25px;

    font-size: 70px;

    color: rgba(249,115,22,.10);

    font-family: serif;

    line-height: 1;
}

.testimonial-rating {

    display: flex;

    gap: 5px;

    color: #ffb400;

    margin-bottom: 18px;
}

.testimonial-text {

    color: #555;

    line-height: 1.9;

    margin-bottom: 30px;
}

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 15px;
}

.testimonial-user img {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    object-fit: cover;
}

.testimonial-user h4 {

    margin-bottom: 4px;

    color: #222;
}

.testimonial-user span {

    color: #777;

    font-size: .9rem;
}

/*====================================================
    FAQ
====================================================*/

.faq-container {

    max-width: 900px;

    margin: auto;
}

.faq-item {

    background: #fff;

    border-radius: 16px;

    margin-bottom: 18px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    padding: 22px 25px;

    font-weight: 600;

    color: #222;

    transition: .3s;
}

.faq-question:hover {

    background: #fff7ed;
}

.faq-question i {

    transition: .35s;
}

.faq-item.active .faq-question i {

    transform: rotate(180deg);
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-item.active .faq-answer {

    max-height: 300px;
}

.faq-answer p {

    padding: 0 25px 25px;

    color: #666;

    line-height: 1.8;
}

/*====================================================
    SPIRITUAL PROMISE
====================================================*/

.promise-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;
}

.promise-card {

    background: #fff;

    padding: 35px 25px;

    text-align: center;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    transition: .35s;
}

.promise-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

.promise-card i {

    font-size: 2.8rem;

    color: #f97316;

    margin-bottom: 20px;
}

.promise-card h3 {

    margin-bottom: 15px;

    color: #222;
}

.promise-card p {

    color: #666;

    line-height: 1.8;
}

/*====================================================
    RESPONSIVE
====================================================*/

@media(max-width:1100px){

    .promise-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .testimonial-card{

        padding:28px;
    }

    .promise-grid{

        grid-template-columns:1fr;
    }

    .faq-question{

        padding:20px;
    }

}

@media(max-width:480px){

    .testimonial-user{

        flex-direction:column;

        text-align:center;
    }

}

/*====================================================
    NEWSLETTER
====================================================*/

.newsletter-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:50px;

    background:linear-gradient(135deg,#fff7ed,#ffffff);

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.newsletter-content{

    flex:1;
}

.newsletter-content h2{

    font-size:2rem;

    margin:15px 0;

    color:#222;
}

.newsletter-content p{

    color:#666;

    line-height:1.8;
}

.newsletter-form{

    display:flex;

    gap:15px;

    flex:1;
}

.newsletter-form input{

    flex:1;

    height:56px;

    padding:0 20px;

    border-radius:12px;

    border:1px solid #ddd;

    outline:none;

    font-size:1rem;
}

.newsletter-form input:focus{

    border-color:#f97316;

    box-shadow:0 0 0 4px rgba(249,115,22,.12);
}

/*====================================================
    CTA
====================================================*/

.puja-cta{

    padding:90px 0;

    background:linear-gradient(135deg,#f97316,#ea580c);

    color:#fff;
}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;
}

.cta-box h2{

    font-size:3rem;

    margin:20px 0;
}

.cta-box p{

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:40px;

    color:rgba(255,255,255,.92);
}

.puja-cta .badge{

    background:rgba(255,255,255,.15);

    color:#fff;

    border:1px solid rgba(255,255,255,.2);
}

.puja-cta .btn-outline{

    border-color:#fff;

    color:#fff;
}

.puja-cta .btn-outline:hover{

    background:#fff;

    color:#f97316;
}

/*====================================================
    FOOTER
====================================================*/

.footer{

    background:#181818;

    color:#ddd;

    padding:70px 0 25px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:50px;
}

.footer-widget h3,
.footer-widget h4{

    color:#fff;

    margin-bottom:20px;
}

.footer-widget p{

    color:#bbb;

    line-height:1.9;
}

.footer-widget ul{

    list-style:none;

    padding:0;

    margin:0;
}

.footer-widget ul li{

    margin-bottom:14px;
}

.footer-widget a{

    color:#bbb;

    text-decoration:none;

    transition:.3s;
}

.footer-widget a:hover{

    color:#f97316;
}

.contact-list li{

    display:flex;

    align-items:center;

    gap:12px;
}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.social-links a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#292929;

    color:#fff;

    transition:.3s;
}

.social-links a:hover{

    background:#f97316;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

    color:#aaa;
}

/*====================================================
    BOOKING MODAL
====================================================*/

.modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.65);

    z-index:9999;
}

.modal.active{

    display:flex;
}

.modal-content{

    width:min(500px,90%);

    background:#fff;

    border-radius:20px;

    padding:40px;

    position:relative;

    text-align:center;
}

.close-modal{

    position:absolute;

    top:18px;

    right:18px;

    border:none;

    background:none;

    cursor:pointer;

    font-size:1.3rem;
}

/*====================================================
    FLOATING BUTTONS
====================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:110px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#f97316;

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;
}

.back-to-top.show{

    display:block;
}

.whatsapp-button{

    position:fixed;

    right:25px;

    bottom:40px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#25D366;

    color:#fff;

    font-size:2rem;

    z-index:999;
}

.floating-book-button{

    position:fixed;

    left:25px;

    bottom:40px;

    border:none;

    border-radius:50px;

    background:#f97316;

    color:#fff;

    padding:15px 26px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:0 12px 30px rgba(0,0,0,.2);

    z-index:999;
}

.floating-book-button:hover{

    background:#ea580c;
}

/*====================================================
    RESPONSIVE
====================================================*/

@media(max-width:992px){

    .newsletter-box{

        flex-direction:column;

        text-align:center;
    }

    .newsletter-form{

        width:100%;
    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .newsletter-form{

        flex-direction:column;
    }

    .cta-box h2{

        font-size:2.2rem;
    }

}

@media(max-width:576px){

    .footer-grid{

        grid-template-columns:1fr;
    }

    .floating-book-button{

        left:15px;

        bottom:25px;

        padding:14px 18px;

        font-size:.9rem;
    }

    .whatsapp-button{

        right:15px;

        bottom:25px;
    }

    .back-to-top{

        right:15px;

        bottom:100px;
    }

}

/*====================================================
    Search Results
====================================================*/

.search-results-section{

    padding:70px 0;

    background:#fafafa;

}

.result-summary{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

#resultCount{

    font-weight:600;

    color:var(--primary-color);

}

#filteredPujaGrid{

    margin-top:40px;

    min-height:120px;

}

/*====================================
    SEARCH RESULTS
====================================*/

.filtered-puja-section{

    padding:70px 0;

    background:#fafafa;

}

.result-summary{

    display:flex;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;

}

#resultCount{

    font-size:15px;

    font-weight:600;

    color:var(--primary-color);

}

#filteredPujaGrid{

    margin-top:40px;

    min-height:120px;

}