/* =========================================================
   lom Footer — professional site footer
   ========================================================= */

.lom-footer {
    --lom-f-orange: #ff532b;
    --lom-f-orange-deep: #e84720;
    --lom-f-ink: #141414;
    --lom-f-muted: #5f5f66;
    --lom-f-line: rgba(20, 20, 20, 0.08);
    --lom-f-soft: #f7f7f9;
    --lom-f-ease: cubic-bezier(0.22, 1, 0.36, 1);

    color: var(--lom-f-ink);
    background: #fff;
    border-top: 2px solid var(--lom-f-orange);
    text-align: start;
}

.lom-footer.is-rtl,
html[dir="rtl"] .lom-footer {
    direction: rtl;
    text-align: right;
}

.lom-footer.is-ltr,
html[dir="ltr"] .lom-footer {
    direction: ltr;
    text-align: left;
}

.lom-footer *,
.lom-footer *::before,
.lom-footer *::after {
    box-sizing: border-box;
}

.lom-footer__shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.lom-footer__main {
    padding: 72px 0 56px;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(255, 83, 43, 0.07), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--lom-f-soft) 100%);
}

.lom-footer.is-rtl .lom-footer__main {
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(255, 83, 43, 0.07), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--lom-f-soft) 100%);
}

.lom-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
    align-items: start;
}

.lom-footer__logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.lom-footer__logo img {
    display: block;
    height: 36px;
    width: auto;
}

.lom-footer__tagline {
    margin: 0 0 22px;
    max-width: 28rem;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--lom-f-muted);
}

.lom-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lom-footer__social-link {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: var(--lom-f-ink);
    background: rgba(255, 83, 43, 0.08);
    border: 1px solid rgba(255, 83, 43, 0.12);
    transition:
        color 0.25s var(--lom-f-ease),
        background 0.25s var(--lom-f-ease),
        border-color 0.25s var(--lom-f-ease),
        transform 0.25s var(--lom-f-ease);
}

.lom-footer__social-link:hover,
.lom-footer__social-link:focus-visible {
    color: #fff;
    background: var(--lom-f-orange);
    border-color: var(--lom-f-orange);
    transform: translateY(-2px);
    outline: none;
}

.lom-footer__heading {
    margin: 0 0 18px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--lom-f-ink);
    letter-spacing: 0.01em;
}

.lom-footer__heading::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    border-radius: 2px;
    background: var(--lom-f-orange);
}

.lom-footer__list,
.lom-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lom-footer__list li + li,
.lom-footer__contact li + li {
    margin-top: 12px;
}

.lom-footer__list a {
    position: relative;
    display: inline-block;
    color: var(--lom-f-muted);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.2s var(--lom-f-ease);
}

.lom-footer__list a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: var(--lom-f-orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.25s var(--lom-f-ease);
}

.lom-footer.is-ltr .lom-footer__list a::after {
    transform-origin: left center;
}

.lom-footer__list a:hover,
.lom-footer__list a:focus-visible {
    color: var(--lom-f-orange);
    outline: none;
}

.lom-footer__list a:hover::after,
.lom-footer__list a:focus-visible::after {
    transform: scaleX(1);
}

.lom-footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lom-f-ink);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    transition: color 0.2s var(--lom-f-ease);
}

/* RTL: icon on the right, text on the left */
.lom-footer.is-rtl .lom-footer__contact-item {
    flex-direction: row;
}

.lom-footer.is-ltr .lom-footer__contact-item {
    flex-direction: row;
}

.lom-footer__contact-icon {
    flex: 0 0 auto;
    order: 0;
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    color: var(--lom-f-orange);
    background: rgba(255, 83, 43, 0.1);
}

.lom-footer__contact-text {
    order: 1;
    min-width: 0;
}

.lom-footer__contact-item:hover,
.lom-footer__contact-item:focus-visible {
    color: var(--lom-f-orange);
    outline: none;
}

.lom-footer__contact a {
    color: inherit;
    text-decoration: none;
}

.lom-footer__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 11px 22px;
    background: var(--lom-f-orange);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 83, 43, 0.28);
    white-space: nowrap;
    transition:
        background 0.25s ease,
        transform 0.25s var(--lom-f-ease),
        box-shadow 0.25s ease;
}

.lom-footer__cta:hover,
.lom-footer__cta:focus-visible {
    background: var(--lom-f-orange-deep);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 83, 43, 0.36);
    outline: none;
}

.lom-footer__bar {
    border-top: 1px solid var(--lom-f-line);
    background: #fff;
    padding: 18px 0;
}

.lom-footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 24px;
}

.lom-footer__copy {
    margin: 0;
    flex: 1 1 240px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--lom-f-muted);
}

.lom-footer__copy a {
    color: var(--lom-f-orange);
    font-weight: 700;
    text-decoration: none;
}

.lom-footer__copy a:hover,
.lom-footer__copy a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.lom-footer__bar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lom-footer__lang {
    position: relative;
}

.lom-footer__lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--lom-f-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid var(--lom-f-line);
    background: #fff;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.lom-footer__lang-btn:hover,
.lom-footer__lang-btn:focus-visible,
.lom-footer__lang.is-open > .lom-footer__lang-btn {
    color: var(--lom-f-orange);
    border-color: rgba(255, 83, 43, 0.35);
    background: rgba(255, 83, 43, 0.08);
    outline: none;
}

.lom-footer__lang-icon {
    flex-shrink: 0;
}

.lom-footer__lang-code {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.lom-footer__lang-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 180px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--lom-f-line);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(20, 20, 20, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transition:
        opacity 0.28s var(--lom-f-ease),
        transform 0.28s var(--lom-f-ease),
        visibility 0.28s;
    z-index: 30;
}

.lom-footer__lang.is-open > .lom-footer__lang-dropdown,
.lom-footer__lang:focus-within > .lom-footer__lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.lom-footer__lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--lom-f-ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.lom-footer__lang-dropdown a .lom-footer__lang-code {
    min-width: 28px;
    color: var(--lom-f-orange);
}

.lom-footer__lang-dropdown a:hover,
.lom-footer__lang-dropdown a:focus-visible,
.lom-footer__lang-dropdown a.is-active {
    background: rgba(255, 83, 43, 0.08);
    color: var(--lom-f-orange);
    outline: none;
}

.lom-footer__top {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: var(--lom-f-orange) !important;
    background: rgba(255, 83, 43, 0.08);
    border: 1px solid rgba(255, 83, 43, 0.14);
    text-decoration: none;
    transition:
        background 0.25s var(--lom-f-ease),
        color 0.25s var(--lom-f-ease),
        transform 0.25s var(--lom-f-ease);
}

.lom-footer__top:hover,
.lom-footer__top:focus-visible {
    background: var(--lom-f-orange);
    color: #fff !important;
    transform: translateY(-2px);
    outline: none;
}

.lom-footer__top i {
    font-size: 14px;
    line-height: 1;
}

/* Override legacy BeTheme footer chrome when lom-footer is active */
#Footer.lom-footer {
    background: transparent;
}

#Footer.lom-footer a {
    color: inherit;
}

@media (max-width: 1024px) {
    .lom-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
    }

    .lom-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .lom-footer__main {
        padding: 56px 0 40px;
    }

    .lom-footer__shell {
        width: min(1180px, calc(100% - 28px));
    }

    .lom-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lom-footer__bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .lom-footer__bar-actions {
        justify-content: space-between;
    }
}

/* Smaller floating WhatsApp button */
.venom-button .venom-button-button {
    width: 48px !important;
    height: 48px !important;
}

.venom-button .venom-button-popup.active {
    bottom: 60px;
}

@media (max-width: 640px) {
    .venom-button .venom-button-button {
        width: 44px !important;
        height: 44px !important;
    }
}
