/* =========================================================
   VARKA PREMIUM FOOTER
   Same existing HTML + same existing classes
   ========================================================= */

.site-footer {
    position: relative;
    margin-top: 100px;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(201, 164, 92, 0.055),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(126, 24, 36, 0.035),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #fbf8f1 0%,
            #f8f3ea 100%
        );
    color: var(--varka-text, #292321);
    overflow: hidden;
}

/* =========================================================
   DECORATIVE ARCHES
   ========================================================= */

.site-footer::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    top: -350px;
    left: -210px;
    border: 1px solid rgba(201, 164, 92, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -300px;
    bottom: -330px;
    border: 1px solid rgba(126, 24, 36, 0.08);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-main {
    position: relative;
    z-index: 2;
    padding: 92px 0 88px;
}

.footer-container {
    width: min(
        var(--container-width, 1380px),
        calc(100% - 120px)
    );
    margin: 0 auto;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.footer-main .footer-container {
    display: grid;
    grid-template-columns:
        minmax(300px, 1.45fr)
        minmax(170px, 0.8fr)
        minmax(190px, 0.95fr)
        minmax(290px, 1.15fr);

    gap: 78px;
    align-items: start;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;
    position: relative;
    align-items: center;

    color: var(--deep-burgundy, #701421);
    font-family: var(--auth-serif, Georgia, serif);

    font-size: clamp(46px, 4vw, 62px);
    font-weight: 600;
    line-height: 0.95;

    letter-spacing: -2.8px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-logo::after {
    content: "";

    position: absolute;

    left: 2px;
    bottom: -18px;

    width: 58px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold, #c9a45c),
            rgba(201, 164, 92, 0.18)
        );
}

.footer-logo:hover {
    color: var(--varka-primary, #7e1824);
    transform: translateY(-2px);
}


/* =========================================================
   TAGLINE
   ========================================================= */

.footer-tagline {
    max-width: 370px;

    margin: 42px 0 29px;

    color: var(--varka-text-soft, #665d59);

    font-size: 17px;
    font-weight: 400;

    line-height: 1.8;
    letter-spacing: 0.005em;
}


/* =========================================================
   BRAND NOTE
   ========================================================= */

.footer-brand-note {
    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--muted, #77706b);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.055em;
}

.footer-brand-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--gold, #c9a45c);

    box-shadow:
        0 0 0 6px rgba(201, 164, 92, 0.10);
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer-label {
    display: block;

    margin: 3px 0 28px;

    color: var(--varka-primary, #7e1824);

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.30em;
    text-transform: uppercase;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 16px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links li {
    color: var(--varka-text-soft, #665d59);

    font-size: 15px;
    line-height: 1.45;
}

.footer-links a {
    display: inline-flex;
    position: relative;

    color: var(--varka-text-soft, #665d59);

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 1px;

    background: var(--gold, #c9a45c);

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--varka-primary, #7e1824);

    transform: translateX(3px);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   BRANCHES
   ========================================================= */

.footer-branches {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-branches li {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--varka-text-soft, #665d59);

    font-size: 15px;
    line-height: 1.45;
}

.footer-branches li::before {
    content: "";

    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background: var(--gold, #c9a45c);

    box-shadow:
        0 0 0 4px rgba(201, 164, 92, 0.07);
}


/* =========================================================
   COMING SOON
   ========================================================= */

.footer-coming-soon {
    flex-wrap: wrap;
}

.footer-coming-soon small {
    display: inline-flex;
    align-items: center;

    margin-left: 3px;

    padding: 5px 10px;

    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.42);

    color: #a46c25;

    font-size: 9px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 19px;
}

.footer-contact-item {
    display: flex;
    align-items: center;

    gap: 16px;

    min-width: 0;

    color: var(--varka-text, #292321);

    text-decoration: none;

    transition:
        transform 0.25s ease;
}

.footer-contact-item:hover {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT ICON
   ========================================================= */

.footer-contact-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border: 1px solid rgba(201, 164, 92, 0.28);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.90),
            rgba(248, 240, 226, 0.70)
        );

    color: var(--varka-primary, #7e1824);

    box-shadow:
        0 8px 24px rgba(70, 44, 30, 0.045);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background:
        linear-gradient(
            145deg,
            #fff,
            #f8eee1
        );

    border-color: rgba(126, 24, 36, 0.22);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(70, 44, 30, 0.08);
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.55;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CONTACT TEXT
   ========================================================= */

.footer-contact-item > span:last-child {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 0;
}

.footer-contact-item small {
    color: var(--varka-muted, #8b817b);

    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.footer-contact-item strong {
    display: block;

    color: var(--varka-text, #292321);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.35;

    white-space: nowrap;
}


/* =========================================================
   MIDDLE / PROMISE STRIP
   ========================================================= */

.footer-middle {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(117, 86, 54, 0.11);
    border-bottom: 1px solid rgba(117, 86, 54, 0.11);

    background:
        rgba(255, 255, 255, 0.36);
}

.footer-middle-inner {
    width: min(
        var(--container-width, 1380px),
        calc(100% - 120px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}


/* =========================================================
   PROMISE ITEM
   ========================================================= */

.footer-promise {
    display: flex;
    align-items: center;

    gap: 20px;

    min-height: 112px;

    padding: 24px 42px;

    border-right: 1px solid rgba(117, 86, 54, 0.11);
}

.footer-promise:first-child {
    padding-left: 0;
}

.footer-promise:last-child {
    border-right: 0;
    padding-right: 0;
}


/* =========================================================
   PROMISE ICON
   ========================================================= */

.footer-promise-mark {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border: 1px solid rgba(201, 164, 92, 0.32);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(248, 239, 226, 0.72)
        );

    color: var(--varka-primary, #7e1824);

    font-size: 17px;

    box-shadow:
        0 7px 22px rgba(70, 44, 30, 0.045);
}


/* =========================================================
   PROMISE TEXT
   ========================================================= */

.footer-promise > div {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 0;
}

.footer-promise strong {
    color: var(--varka-text, #292321);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.35;
}

.footer-promise span:not(.footer-promise-mark) {
    color: var(--varka-muted, #8b817b);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    background:
        linear-gradient(
            135deg,
            #650d19 0%,
            #720f1c 48%,
            #5c0b16 100%
        );

    color: rgba(255, 255, 255, 0.80);
}

.footer-bottom-inner {
    width: min(
        var(--container-width, 1380px),
        calc(100% - 120px)
    );

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0.015em;
}


/* =========================================================
   LEGAL LINKS
   ========================================================= */

.footer-legal {
    display: flex;
    align-items: center;

    gap: 29px;
}

.footer-legal a {
    position: relative;

    color: rgba(255, 255, 255, 0.70);

    font-size: 12px;
    font-weight: 400;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.footer-legal a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -6px;

    height: 1px;

    background: rgba(201, 164, 92, 0.90);

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal a:hover::after {
    transform: scaleX(1);
}

/* =========================================================
   VARKA FLOATING WHATSAPP
========================================================= */

.varka-whatsapp-button {
    position: fixed;

    right: 24px;
    bottom: 88px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    text-decoration: none;

    font-size: 30px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    z-index: 9998;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.varka-whatsapp-button:hover {
    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.varka-back-to-top {

    position: fixed;

    right: 24px;
    bottom: 22px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e2d5c5;

    border-radius: 50%;

    background: #ffffff;

    color: #95172b;

    font-size: 25px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.varka-back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.varka-back-to-top:hover {

    background: #95172b;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (max-width: 1250px) {

    .footer-main .footer-container {
        grid-template-columns:
            minmax(270px, 1.35fr)
            minmax(150px, .8fr)
            minmax(170px, .9fr)
            minmax(250px, 1.1fr);

        gap: 55px;
    }

    .footer-container,
    .footer-middle-inner,
    .footer-bottom-inner {
        width: min(
            var(--container-width, 1380px),
            calc(100% - 80px)
        );
    }

    .footer-promise {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-promise:first-child {
        padding-left: 0;
    }

    .footer-promise:last-child {
        padding-right: 0;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1050px) {

    .footer-main {
        padding: 75px 0 65px;
    }

    .footer-main .footer-container {
        grid-template-columns:
            1.35fr
            1fr
            1fr;

        gap: 55px 40px;
    }

    .footer-contact-column {
        grid-column: span 3;

        padding-top: 8px;
    }

    .footer-contact {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;
    }

    .footer-contact-item strong {
        font-size: 13px;
    }

    .footer-middle-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-promise {
        min-height: 105px;

        padding: 20px;
    }

    .footer-promise:first-child {
        padding-left: 0;
    }

    .footer-promise:last-child {
        padding-right: 0;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .site-footer {
        margin-top: 75px;
    }

    .footer-main {
        padding: 65px 0 58px;
    }

    .footer-container,
    .footer-middle-inner,
    .footer-bottom-inner {
        width: min(
            var(--container-width, 1380px),
            calc(100% - 48px)
        );
    }

    .footer-main .footer-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 35px;
    }

    .footer-brand {
        grid-column: span 2;

        max-width: 560px;
    }

    .footer-contact-column {
        grid-column: span 2;
    }

    .footer-contact {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .footer-middle-inner {
        grid-template-columns: 1fr;
    }

    .footer-promise,
    .footer-promise:first-child,
    .footer-promise:last-child {
        min-height: 92px;

        padding: 20px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(117, 86, 54, 0.11);
    }

    .footer-promise:last-child {
        border-bottom: 0;
    }

    .footer-bottom-inner {
        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 12px 22px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 58px 0 48px;
    }

    .footer-container,
    .footer-middle-inner,
    .footer-bottom-inner {
        width: calc(100% - 36px);
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-brand,
    .footer-contact-column {
        grid-column: auto;
    }

    .footer-logo {
        font-size: 48px;

        letter-spacing: -2.2px;
    }

    .footer-logo::after {
        bottom: -15px;

        width: 48px;
    }

    .footer-tagline {
        max-width: 340px;

        margin-top: 36px;

        font-size: 15px;

        line-height: 1.75;
    }

    .footer-label {
        margin-bottom: 22px;

        font-size: 10px;

        letter-spacing: 0.26em;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-links li,
    .footer-branches li {
        font-size: 14px;
    }

    .footer-contact {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .footer-contact-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 15px;
    }

    .footer-contact-item strong {
        font-size: 13px;
    }

    .footer-promise {
        gap: 16px;
    }

    .footer-promise-mark {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 15px;
    }

    .footer-promise strong {
        font-size: 13px;
    }

    .footer-promise span:not(.footer-promise-mark) {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-legal {
        gap: 10px 17px;
    }

    .footer-legal a {
        font-size: 10px;
    }

	 .varka-whatsapp-button {

        right: 16px;
        bottom: 82px;

        width: 52px;
        height: 52px;

        font-size: 27px;
    }

    .varka-back-to-top {

        right: 16px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 22px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .footer-container,
    .footer-middle-inner,
    .footer-bottom-inner {
        width: calc(100% - 28px);
    }

    .footer-main {
        padding-top: 50px;
    }

    .footer-logo {
        font-size: 44px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-promise {
        align-items: flex-start;
    }

    .footer-promise-mark {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-logo,
    .footer-links a,
    .footer-contact-item,
    .footer-contact-icon,
    .footer-legal a {
        transition: none;
    }
}