.sm-ftr {
    --ftr-ink: #241422;
    --ftr-ink-soft: #6d5f6c;
    --ftr-paper: #fff7f0;
    --ftr-rose: #da4453;
    --ftr-magenta: #89216b;
    --ftr-gold: #f6af04;
    --ftr-line: rgba(255, 255, 255, 0.14);
    --ftr-radius: 16px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #f4e9f1;
    background: #1c0f1c;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    width: 100%;
}

.sm-ftr * {
    box-sizing: border-box;
}

.sm-ftr a {
    text-decoration: none;
}

/* ---------- ambient animated background ---------- */

.sm-ftr-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 80% at 8% 0%, rgba(137, 33, 107, 0.55), transparent 60%),
        radial-gradient(55% 70% at 100% 15%, rgba(246, 175, 4, 0.28), transparent 60%),
        radial-gradient(70% 90% at 50% 120%, rgba(218, 68, 83, 0.35), transparent 65%),
        #1c0f1c;
}

.sm-ftr-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: sm-ftr-drift 22s ease-in-out infinite;
    will-change: transform;
}

.sm-ftr-blob-1 {
    width: 320px;
    height: 320px;
    left: -80px;
    top: -60px;
    background: radial-gradient(circle, var(--ftr-magenta), transparent 70%);
}

.sm-ftr-blob-2 {
    width: 380px;
    height: 380px;
    right: -100px;
    top: 10%;
    background: radial-gradient(circle, var(--ftr-gold), transparent 70%);
    animation-duration: 28s;
    animation-delay: -6s;
}

.sm-ftr-blob-3 {
    width: 300px;
    height: 300px;
    left: 35%;
    bottom: -140px;
    background: radial-gradient(circle, var(--ftr-rose), transparent 70%);
    animation-duration: 25s;
    animation-delay: -12s;
}

@keyframes sm-ftr-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -18px) scale(1.08); }
    66% { transform: translate(-18px, 16px) scale(0.94); }
}

/* floating heart/sparkle motif, purely decorative */
.sm-ftr-motifs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.sm-ftr-motif {
    position: absolute;
    bottom: -10%;
    font-size: 18px;
    color: rgba(246, 175, 4, 0.35);
    animation: sm-ftr-rise linear infinite;
    opacity: 0;
}

@keyframes sm-ftr-rise {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.55; }
    90% { opacity: 0.35; }
    100% { transform: translateY(-420px) rotate(25deg); opacity: 0; }
}

/* ---------- pre-footer CTA band ---------- */

.sm-ftr-cta {
    position: relative;
    z-index: 1;
    background: linear-gradient(100deg, var(--ftr-magenta), var(--ftr-rose) 55%, var(--ftr-gold) 130%);
    background-size: 220% 220%;
    animation: sm-ftr-gradient-pan 12s ease infinite;
    border-bottom: 1px solid var(--ftr-line);
}

@keyframes sm-ftr-gradient-pan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sm-ftr-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sm-ftr-cta-text h3 {
    margin: 0 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 30px);
    color: #fff;
    letter-spacing: 0.2px;
}

.sm-ftr-cta-text h3 i {
    color: #fff;
    margin-right: 10px;
    animation: sm-ftr-heartbeat 1.8s ease-in-out infinite;
    display: inline-block;
}

@keyframes sm-ftr-heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
    45% { transform: scale(1.18); }
    60% { transform: scale(1); }
}

.sm-ftr-cta-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.sm-ftr-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    background: #1c0f1c;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.sm-ftr-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.sm-ftr-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.sm-ftr-cta-btn:hover::before {
    transform: translateX(120%);
}

.sm-ftr-cta-btn i {
    transition: transform 0.25s ease;
}

.sm-ftr-cta-btn:hover i {
    transform: translateX(4px);
}

/* ---------- main grid ---------- */

.sm-ftr-main {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 991.98px) {
    .sm-ftr-main {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
    }
}

@media (max-width: 575.98px) {
    .sm-ftr-main {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }
}

.sm-ftr-col-title {
    margin: 0 0 18px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.sm-ftr-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--ftr-gold), var(--ftr-rose));
}

/* brand column */

.sm-ftr-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sm-ftr-brand-lockup img {
    height: 40px;
    width: auto;
}

.sm-ftr-brand-lockup span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.sm-ftr-brand-lockup span b {
    background: linear-gradient(90deg, var(--ftr-gold), var(--ftr-rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sm-ftr-tagline {
    margin: 0 0 22px;
    color: #d9c6d6;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 34ch;
}

.sm-ftr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.sm-ftr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #f4e9f1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ftr-line);
    backdrop-filter: blur(2px);
}

.sm-ftr-badge i {
    color: var(--ftr-gold);
}

.sm-ftr-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sm-ftr-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--ftr-line);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sm-ftr-social a:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, var(--ftr-magenta), var(--ftr-gold));
    box-shadow: 0 10px 20px rgba(218, 68, 83, 0.35);
    color: #fff;
}

/* link columns */

.sm-ftr-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sm-ftr-links li + li {
    margin-top: 12px;
}

.sm-ftr-links a {
    color: #d9c6d6;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
}

.sm-ftr-links a::before {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 12px;
    color: var(--ftr-gold);
    transition: transform 0.2s ease;
}

.sm-ftr-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.sm-ftr-links a:hover::before {
    transform: translateX(3px);
}

/* contact column */

.sm-ftr-contact {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.sm-ftr-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14.5px;
    color: #d9c6d6;
    line-height: 1.55;
}

.sm-ftr-contact li a {
    color: #d9c6d6;
    transition: color 0.2s ease;
}

.sm-ftr-contact li a:hover {
    color: var(--ftr-gold);
}

.sm-ftr-icon-wrap {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(137, 33, 107, 0.55), rgba(246, 175, 4, 0.35));
    border: 1px solid var(--ftr-line);
    color: var(--ftr-gold);
    font-size: 14px;
}

.sm-ftr-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #6be08a;
    font-size: 13.5px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sm-ftr-whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.28);
    color: #8bffab;
    transform: translateY(-2px);
}

/* ---------- accordion behaviour (mobile only) ---------- */

.sm-ftr-accordion summary {
    cursor: pointer;
    list-style: none;
}

.sm-ftr-accordion summary::-webkit-details-marker {
    display: none;
}

@media (min-width: 576px) {
    .sm-ftr-accordion summary {
        pointer-events: none;
    }
    .sm-ftr-accordion .sm-ftr-caret {
        display: none;
    }
    .sm-ftr-accordion .sm-ftr-links {
        display: block !important;
        max-height: none !important;
    }
}

@media (max-width: 575.98px) {
    .sm-ftr-accordion {
        border-bottom: 1px solid var(--ftr-line);
        padding-bottom: 14px;
    }
    .sm-ftr-accordion summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sm-ftr-caret {
        transition: transform 0.25s ease;
        color: var(--ftr-gold);
    }
    .sm-ftr-accordion[open] .sm-ftr-caret {
        transform: rotate(180deg);
    }
}

/* ---------- bottom bar ---------- */

.sm-ftr-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--ftr-line);
    background: rgba(0, 0, 0, 0.18);
}

.sm-ftr-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: #bda6ba;
}

.sm-ftr-bottom-inner a {
    color: #d9c6d6;
}

.sm-ftr-bottom-inner a:hover {
    color: var(--ftr-gold);
}

.sm-ftr-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.sm-ftr-heart {
    color: var(--ftr-rose);
    display: inline-block;
    animation: sm-ftr-heartbeat 1.8s ease-in-out infinite;
}

/* ---------- back to top ---------- */

.sm-ftr-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 899;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--ftr-magenta), var(--ftr-rose), var(--ftr-gold));
    box-shadow: 0 10px 22px rgba(137, 33, 107, 0.4);
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}

.sm-ftr-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.sm-ftr-top:hover {
    box-shadow: 0 14px 28px rgba(137, 33, 107, 0.55);
    transform: translateY(-3px) scale(1.04);
}

/* ---------- reveal-on-scroll ----------
   Fail-safe by design: everything is fully visible by default (no JS
   dependency). Only after footer-redesign.js confirms it initialised does
   it add .sm-ftr-js to the footer, which then arms the opt-in fade/rise
   transition for elements carrying .sm-ftr-reveal. If JS never runs, the
   footer still renders complete and static -- nothing can make it vanish. */

.sm-ftr-reveal {
    opacity: 1;
    transform: none;
}

.sm-ftr.sm-ftr-js .sm-ftr-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--ftr-reveal-delay, 0s);
}

.sm-ftr.sm-ftr-js .sm-ftr-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .sm-ftr-blob,
    .sm-ftr-motif,
    .sm-ftr-cta,
    .sm-ftr-cta-text h3 i,
    .sm-ftr-heart {
        animation: none !important;
    }
    .sm-ftr.sm-ftr-js .sm-ftr-reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
