/* =========================================================
   RADHA RANI PUJA SERVICES
   SERVICE PAGE STYLES
   ========================================================= */

.service-page {
    background: var(--bg);
}

/* =========================
   SERVICE HERO
   ========================= */

.service-hero {
    padding: 75px 0 65px;
    background:
        radial-gradient(circle at 85% 20%, rgba(198, 146, 50, 0.14), transparent 35%),
        linear-gradient(135deg, #fffaf2 0%, #fff4df 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 55px;
}

.service-breadcrumb {
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 0.82rem;
}

.service-breadcrumb a {
    color: var(--primary);
    font-weight: 700;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(198, 146, 50, 0.35);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.7);

    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.service-title {
    margin-bottom: 20px;

    color: var(--text);
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.service-title span {
    color: var(--primary);
}

.service-description {
    max-width: 680px;
    margin-bottom: 28px;

    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.service-trust-item {
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: var(--surface);

    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
}


/* =========================
   HERO VISUAL
   ========================= */

.service-hero-visual {
    position: relative;
}

.service-visual-card {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 28px;

    background:
        radial-gradient(circle at 50% 45%, rgba(231, 200, 120, 0.3), transparent 30%),
        linear-gradient(145deg, var(--primary), var(--primary-dark));

    box-shadow: var(--shadow-lg);
}

.service-visual-om {
    color: rgba(255, 255, 255, 0.94);

    font-size: 9rem;
    font-family: serif;
    line-height: 1;
}

.service-floating-card {
    position: absolute;

    padding: 14px 17px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);

    color: var(--white);

    font-size: 0.78rem;
    font-weight: 800;
}

.service-floating-one {
    top: 25px;
    left: 25px;
}

.service-floating-two {
    right: 25px;
    bottom: 25px;
}


/* =========================
   QUICK INFO
   ========================= */

.service-info-section {
    padding: 60px 0;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-info-card {
    padding: 24px 18px;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--surface);

    box-shadow: var(--shadow-sm);
}

.service-info-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 12px;

    border-radius: 14px;

    background: var(--bg-soft);

    color: var(--primary);

    font-size: 1.3rem;
}

.service-info-card h3 {
    margin-bottom: 6px;

    color: var(--text);
    font-size: 0.95rem;
}

.service-info-card p {
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}


/* =========================
   CONTENT SECTION
   ========================= */

.service-content-section {
    padding: 75px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 55px;
    align-items: start;
}

.service-content h2 {
    margin-bottom: 18px;

    color: var(--text);
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 1.25;
}

.service-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;

    color: var(--primary);
    font-size: 1.2rem;
}

.service-content p {
    margin-bottom: 16px;

    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.85;
}

.service-content ul {
    margin: 18px 0 25px;
    padding-left: 0;

    list-style: none;
}

.service-content li {
    position: relative;

    margin-bottom: 12px;
    padding-left: 28px;

    color: var(--text-soft);
    line-height: 1.6;
}

.service-content li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--success);
    font-weight: 900;
}


/* =========================
   BOOKING SIDEBAR
   ========================= */

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-booking-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--surface);

    box-shadow: var(--shadow-md);
}

.service-booking-card h3 {
    margin: 0 0 8px;

    color: var(--text);
    font-size: 1.25rem;
}

.service-booking-card > p {
    margin-bottom: 20px;

    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.6;
}

.service-booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-booking-note {
    margin-top: 18px;
    padding-top: 15px;

    border-top: 1px solid var(--border);

    color: var(--text-soft);
    font-size: 0.74rem;
    line-height: 1.6;
}


/* =========================
   PUJA PROCESS
   ========================= */

.puja-process-section {
    padding: 75px 0;

    background: var(--bg-soft);
}

.puja-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.puja-process-card {
    position: relative;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--surface);
}

.puja-process-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-weight: 900;
}

.puja-process-card h3 {
    margin-bottom: 9px;

    color: var(--text);
    font-size: 1rem;
}

.puja-process-card p {
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.7;
}


/* =========================
   FAQ
   ========================= */

.service-faq-section {
    padding: 75px 0;
}

.service-faq-list {
    max-width: 850px;
    margin: 35px auto 0;
}

.service-faq-item {
    margin-bottom: 10px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--surface);
}

.service-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    background: transparent;
    border: 0;

    color: var(--text);

    text-align: left;
    font-size: 0.9rem;
    font-weight: 800;

    cursor: pointer;
}

.service-faq-icon {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.service-faq-item.active .service-faq-icon {
    transform: rotate(45deg);
}

.service-faq-answer {
    display: none;

    padding: 0 20px 20px;

    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.7;
}

.service-faq-item.active .service-faq-answer {
    display: block;
}


/* =========================
   FINAL CTA
   ========================= */

.service-final-cta {
    padding: 70px 0;
}

.service-final-cta-box {
    padding: 55px 35px;

    text-align: center;

    border-radius: 28px;

    background:
        radial-gradient(circle at 50% 0%, rgba(231, 200, 120, 0.22), transparent 35%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));

    box-shadow: var(--shadow-lg);
}

.service-final-cta-box h2 {
    margin-bottom: 12px;

    color: var(--white);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.service-final-cta-box p {
    max-width: 650px;
    margin: 0 auto 25px;

    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.service-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 950px) {

    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-content {
        max-width: 750px;
    }

    .service-hero-visual {
        max-width: 650px;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .service-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .service-hero {
        padding: 50px 0;
    }

    .service-title {
        font-size: 2.15rem;
    }

    .service-description {
        font-size: 0.92rem;
    }

    .service-actions {
        flex-direction: column;
    }

    .service-actions .btn {
        width: 100%;
    }

    .service-visual-card {
        min-height: 300px;
    }

    .service-visual-om {
        font-size: 7rem;
    }

    .service-info-section,
    .service-content-section,
    .puja-process-section,
    .service-faq-section {
        padding: 55px 0;
    }

    .service-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-info-card {
        padding: 18px 10px;
    }

    .puja-process-grid {
        grid-template-columns: 1fr;
    }

    .service-booking-card {
        padding: 22px;
    }

    .service-final-cta-box {
        padding: 40px 20px;
    }

}


@media (max-width: 450px) {

    .service-info-grid {
        grid-template-columns: 1fr;
    }

    .service-trust {
        flex-direction: column;
    }

    .service-trust-item {
        text-align: center;
    }

}
/* =========================================================
   SERVICE GALLERY
   ========================================================= */

.service-gallery-section {
    padding: 75px 0;
    background: var(--surface);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 35px;
}

.service-gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-soft);
}

.service-gallery-placeholder {
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(198, 146, 50, 0.16),
            transparent 55%
        ),
        var(--bg-soft);

    color: var(--text);
}

.service-gallery-placeholder span {
    margin-bottom: 12px;
    font-size: 3rem;
}

.service-gallery-placeholder strong {
    color: var(--primary);
    font-size: 1rem;
}

.service-gallery-placeholder small {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 0.75rem;
}


@media (max-width: 700px) {

    .service-gallery-section {
        padding: 55px 0;
    }

    .service-gallery-grid {
        grid-template-columns: 1fr;
    }

}