/* =========================================================
   RADHA RANI — COMMON FOOTER
   ========================================================= */

.site-footer {
    margin-top: 0;
    background: #2b1118;
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
    padding: 65px 0 50px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1fr;

    gap: 45px;

    align-items: start;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand .brand {
    margin-bottom: 20px;
}

.footer-brand .brand-symbol {
    background: var(--secondary);
    color: #fffaf2;
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-brand .brand-subtitle {
    color: rgba(255, 255, 255, 0.62);
}

.footer-description {
    max-width: 330px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.92rem;

    line-height: 1.8;
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer-heading {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.05rem;

    font-weight: 700;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a {
    display: inline-block;

    width: fit-content;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);

    transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-contact a {
    display: inline-block;

    width: fit-content;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.9rem;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-contact a:hover {
    color: var(--gold-light);

    transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.52);

    font-size: 0.82rem;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   MOBILE STICKY BAR
   ========================================================= */

.mobile-sticky-bar {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 15px;
    }

    .footer-bottom p {
        font-size: 0.76rem;
    }


    /* MOBILE CALL / WHATSAPP / BOOK BAR */

    .mobile-sticky-bar {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 9999;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        min-height: 60px;

        background: #ffffff;

        border-top: 1px solid var(--border);

        box-shadow:
            0 -8px 25px rgba(0, 0, 0, 0.12);
    }

    .mobile-sticky-bar a {
        display: flex;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 3px;

        color: var(--text);

        font-size: 0.75rem;
        font-weight: 700;

        text-decoration: none;
    }

    .mobile-sticky-bar a + a {
        border-left: 1px solid var(--border);
    }

    .mobile-sticky-bar .sticky-icon {
        font-size: 1.05rem;

        line-height: 1;
    }

    .mobile-sticky-bar .sticky-whatsapp {
        color: var(--success);
    }

    .mobile-sticky-bar .sticky-book {
        color: var(--primary);
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .mobile-sticky-bar {
        min-height: 56px;
    }

    .mobile-sticky-bar a {
        font-size: 0.7rem;
    }

    .mobile-sticky-bar .sticky-icon {
        font-size: 0.95rem;
    }

}