/* =========================================================
   BANGALORE AREA PAGES
   Radha Rani Puja Services
========================================================= */


/* =========================================================
   PAGE BASE
========================================================= */

.area-page {
    background: var(--bg);
    color: var(--text);
}

.area-page main {
    overflow: hidden;
}

.area-page section {
    position: relative;
}


/* =========================================================
   HERO
========================================================= */

.area-page-hero {
    padding: 55px 0 75px;
    background:
        radial-gradient(circle at 85% 20%, rgba(198,146,50,.12), transparent 30%),
        linear-gradient(135deg, #fffaf2 0%, #fff5e7 100%);
    border-bottom: 1px solid var(--border);
}

.area-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 60px;
    align-items: center;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.area-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;

    color: var(--text-soft);
    font-size: .85rem;
}

.area-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.area-breadcrumb a:hover {
    text-decoration: underline;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.area-page-hero-content {
    min-width: 0;
}

.area-page-hero h1 {
    max-width: 780px;
    margin: 0 0 22px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.area-hero-description {
    max-width: 720px;
    margin: 0;

    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.area-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.area-page-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 12px;

    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.area-page-actions a:hover {
    transform: translateY(-3px);
}

.area-call {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(122,18,48,.18);
}

.area-call:hover {
    background: var(--primary-dark);
}

.area-whatsapp {
    background: #168a4b;
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(22,138,75,.16);
}

.area-whatsapp:hover {
    background: #10733e;
}


/* =========================================================
   TRUST CARDS
========================================================= */

.area-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    max-width: 700px;
    margin-top: 32px;
}

.area-trust-item {
    padding: 18px 12px;

    text-align: center;

    background: rgba(255,255,255,.82);
    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(43,17,24,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.area-trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(198,146,50,.5);
    box-shadow: 0 14px 30px rgba(43,17,24,.09);
}

.area-trust-item strong {
    display: block;
    margin-bottom: 5px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}

.area-trust-item span {
    display: block;

    color: var(--text-soft);
    font-size: .75rem;
    line-height: 1.4;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.area-page-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 420px;
}

.area-visual-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: min(100%, 430px);
    min-height: 390px;

    padding: 45px;

    overflow: hidden;

    border: 1px solid rgba(198,146,50,.38);
    border-radius: 28px;

    background:
        radial-gradient(circle at 50% 40%, rgba(198,146,50,.16), transparent 40%),
        linear-gradient(145deg, #fff 0%, #fff4df 100%);

    box-shadow:
        0 25px 60px rgba(43,17,24,.12),
        inset 0 0 0 1px rgba(255,255,255,.6);
}

.area-visual-card::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(198,146,50,.18);
    border-radius: 50%;
}

.area-visual-card::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(198,146,50,.10);
    border-radius: 50%;
}

.area-visual-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--gold-light);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 6rem;
    line-height: 1;

    box-shadow:
        0 20px 40px rgba(122,18,48,.25),
        0 0 0 12px rgba(122,18,48,.06);
}

.area-visual-label {
    position: relative;
    z-index: 2;

    max-width: 280px;
    margin-top: 30px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   CONTENT
========================================================= */

.area-page-content {
    padding: 80px 0;
    background: var(--white);
}

.area-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 55px;
    align-items: start;
}

.area-main-content {
    min-width: 0;
}

.area-main-content h2 {
    margin: 0 0 20px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.area-main-content h3 {
    margin: 45px 0 15px;

    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
}

.area-main-content p {
    margin: 0 0 18px;

    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.9;
}


/* =========================================================
   LOCAL HIGHLIGHTS
========================================================= */

.local-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    margin-top: 32px;
}

.local-highlight-card {
    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--bg);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.local-highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198,146,50,.45);
    box-shadow: 0 15px 30px rgba(43,17,24,.08);
}

.local-highlight-card strong {
    display: block;
    margin-bottom: 8px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.local-highlight-card span {
    display: block;

    color: var(--text-soft);
    font-size: .88rem;
    line-height: 1.65;
}


/* =========================================================
   SIDEBAR
========================================================= */

.service-sidebar {
    position: sticky;
    top: 110px;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background:
        linear-gradient(145deg, #fffaf2, #fff);

    box-shadow: 0 15px 35px rgba(43,17,24,.08);
}

.service-sidebar h3 {
    margin: 0 0 12px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.35;
}

.service-sidebar p {
    margin: 0 0 22px;

    color: var(--text-soft);
    font-size: .9rem;
    line-height: 1.7;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-actions a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 16px;

    border-radius: 10px;

    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.sidebar-actions a:hover {
    transform: translateY(-2px);
}

.sidebar-call {
    background: var(--primary);
    color: #fff !important;
}

.sidebar-whatsapp {
    background: #168a4b;
    color: #fff !important;
}

.sidebar-enquiry {
    background: var(--bg-soft);
    color: var(--primary) !important;
    border: 1px solid var(--border);
}


/* =========================================================
   SERVICE SECTION
========================================================= */

.area-services-section {
    padding: 85px 0;

    background: var(--bg);
}

.area-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;

    text-align: center;
}

.area-section-heading > span {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--secondary);

    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.area-section-heading h2 {
    margin: 0 0 15px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.area-section-heading p {
    margin: 0;

    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.8;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.area-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-service-card {
    display: flex;
    flex-direction: column;

    min-height: 285px;
    padding: 26px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--white);

    box-shadow: 0 8px 25px rgba(43,17,24,.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.area-service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(198,146,50,.45);

    box-shadow: 0 18px 38px rgba(43,17,24,.10);
}

.area-service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin-bottom: 18px;

    border-radius: 14px;

    background: var(--bg-soft);

    font-size: 1.55rem;
}

.area-service-card h3 {
    margin: 0 0 10px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.35;
}

.area-service-card p {
    flex: 1;

    margin: 0 0 20px;

    color: var(--text-soft);
    font-size: .86rem;
    line-height: 1.7;
}

.area-service-card a {
    color: var(--primary);

    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

.area-service-card a:hover {
    text-decoration: underline;
}

.area-all-services-link {
    margin-top: 35px;
    text-align: center;
}

.area-all-services-link a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.area-all-services-link a:hover {
    text-decoration: underline;
}


/* =========================================================
   POPULAR PUJAS
========================================================= */

.popular-area-section {
    padding: 80px 0;
    background: var(--white);
}

.popular-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    max-width: 900px;
    margin: 0 auto;
}

.popular-area-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 22px 24px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--bg);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.popular-area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(43,17,24,.07);
}

.popular-area-card strong {
    display: block;
    margin-bottom: 5px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.popular-area-card span {
    color: var(--text-soft);
    font-size: .8rem;
}

.popular-area-card a {
    flex-shrink: 0;

    color: var(--primary);

    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
}


/* =========================================================
   BENEFITS
========================================================= */

.area-benefit-section {
    padding: 85px 0;
    background: var(--bg);
}

.area-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-benefit-card {
    padding: 28px 24px;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--white);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.area-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(43,17,24,.08);
}

.area-benefit-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin: 0 auto 17px;

    border-radius: 50%;

    background: var(--bg-soft);

    font-size: 1.5rem;
}

.area-benefit-card h3 {
    margin: 0 0 10px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}

.area-benefit-card p {
    margin: 0;

    color: var(--text-soft);
    font-size: .84rem;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.area-process-section {
    padding: 85px 0;
    background: var(--white);
}

.area-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    max-width: 1000px;
    margin: 0 auto;
}

.area-process-card {
    position: relative;

    padding: 32px 28px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--bg);

    text-align: center;
}

.area-process-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 700;
}

.area-process-card h3 {
    margin: 0 0 10px;

    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.area-process-card p {
    margin: 0;

    color: var(--text-soft);
    font-size: .88rem;
    line-height: 1.75;
}


/* =========================================================
   FAQ
========================================================= */

.area-faq-section {
    padding: 85px 0;
    background: var(--bg);
}

.area-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.area-faq-item {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--white);
}

.area-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;
    padding: 20px 22px;

    border: 0;
    background: transparent;

    color: var(--text);

    font-family: inherit;
    font-size: .95rem;
    font-weight: 800;
    text-align: left;

    cursor: pointer;
}

.area-faq-question span:last-child {
    flex-shrink: 0;

    color: var(--primary);
    font-size: 1.35rem;
}

.area-faq-answer {
    display: none;

    padding: 0 22px 22px;

    color: var(--text-soft);

    font-size: .88rem;
    line-height: 1.8;
}

.area-faq-item.active .area-faq-answer {
    display: block;
}


/* =========================================================
   FINAL CTA
========================================================= */

.area-final-cta {
    padding: 85px 0;

    background:
        radial-gradient(circle at 50% 0%, rgba(231,200,120,.12), transparent 40%),
        var(--primary);

    text-align: center;
}

.area-final-cta h2 {
    max-width: 760px;
    margin: 0 auto 15px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.area-final-cta p {
    max-width: 650px;
    margin: 0 auto;

    color: rgba(255,255,255,.78);

    font-size: .98rem;
    line-height: 1.8;
}

.area-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 30px;
}

.area-final-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 26px;

    border-radius: 12px;

    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.area-final-actions a:hover {
    transform: translateY(-3px);
}

.area-final-call {
    background: #fff;
    color: var(--primary) !important;
}

.area-final-whatsapp {
    background: #168a4b;
    color: #fff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .area-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .area-page-visual {
        min-height: auto;
    }

    .area-visual-card {
        min-height: 340px;
    }

    .area-content-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        max-width: 600px;
    }

    .area-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .area-page-hero {
        padding: 35px 0 50px;
    }

    .area-page-hero-grid {
        gap: 35px;
    }

    .area-page-hero h1 {
        font-size: 2.35rem;
        line-height: 1.18;
    }

    .area-hero-description {
        font-size: .94rem;
        line-height: 1.8;
    }

    .area-page-actions {
        flex-direction: column;
    }

    .area-page-actions a {
        width: 100%;
    }

    .area-trust-row {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 9px;
        margin-top: 24px;
    }

    .area-trust-item {
        padding: 15px;
    }

    .area-page-visual {
        display: block;
    }

    .area-visual-card {
        width: 100%;
        min-height: 300px;
        padding: 30px;
        border-radius: 22px;
    }

    .area-visual-icon {
        width: 120px;
        height: 120px;
        font-size: 4.8rem;
    }

    .area-visual-label {
        margin-top: 24px;
        font-size: 1rem;
    }


    .area-page-content,
    .area-services-section,
    .popular-area-section,
    .area-benefit-section,
    .area-process-section,
    .area-faq-section,
    .area-final-cta {
        padding: 60px 0;
    }


    .area-main-content h2 {
        font-size: 2rem;
    }

    .area-main-content h3 {
        font-size: 1.4rem;
    }


    .local-highlight {
        grid-template-columns: 1fr;
    }


    .area-service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .area-service-card {
        min-height: auto;
    }


    .popular-area-grid {
        grid-template-columns: 1fr;
    }

    .popular-area-card {
        padding: 19px;
    }


    .area-benefit-grid {
        grid-template-columns: 1fr;
    }


    .area-process-grid {
        grid-template-columns: 1fr;
    }


    .area-section-heading {
        margin-bottom: 32px;
    }

    .area-section-heading h2 {
        font-size: 2rem;
    }


    .area-final-actions {
        flex-direction: column;
    }

    .area-final-actions a {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .area-page-hero h1 {
        font-size: 2rem;
    }

    .area-page-hero {
        padding-top: 25px;
    }

    .area-breadcrumb {
        font-size: .75rem;
    }

    .area-visual-card {
        min-height: 270px;
    }

}