/* =============================================
   FOOTER - LikeStyling Style
   3-column layout: Explore | Newsletter | Get In Touch
   Responsive + no :root variables
   ============================================= */

/* ---- Main footer wrapper ---- */
#site-footer {
    background: #fff;
    padding: 60px 0 0px;
}

/* ---- Container ---- */
.ftr-inner {
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: start;
}

/* ---- Vertical divider ---- */
.ftr-divider {
    width: 1px;
    align-self: stretch;
    background: #000;
}

/* ---- Column shared ---- */
.ftr-col {
    padding: 0 40px;
    text-align: center;
}

/* ---- Column headings ---- */
.ftr-col h2 {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.ftr-col ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftr-col ul li,
.ftr-col ul li a {
    font-size: 16px;
}

.ftr-col ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

/* =============================================
   COL 1 – EXPLORE SITE
   ============================================= */

/* Language selector */
.ftr-lang-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    padding: 6px 14px 6px 12px;
    font-size: 12px;
    color: #555;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    transition: border-color .2s;
}

.ftr-lang-select:focus {
    outline: none;
    border-color: var(--color-3);
}

/* =============================================
   COL 2 – NEWSLETTER
   ============================================= */
.ftr-col.col-2 p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto 22px;
}

.ftr-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
}

.ftr-newsletter__input {
    width: 100%;
    padding: 16px;
    border: 1px solid #000;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    transition: border-color .2s;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.ftr-newsletter__input::placeholder {
    color: #000;
}

.ftr-newsletter__btn {
    width: 100%;
    padding: 13px 16px;
    background: var(--color-3);
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s, background .2s;
}

.ftr-newsletter__btn:hover {
    opacity: .88;
}

/* =============================================
   COL 3 – GET IN TOUCH
   ============================================= */
.ftr-contact__info {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-contact__info li {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.ftr-contact__info li a {
    color: var(--color-3);
    text-decoration: none;
    transition: opacity .2s;
}

.ftr-contact__info li a:hover {
    opacity: .75;
    text-decoration: underline;
}

/* Social icons row */
.ftr-social ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-direction: row;
}

.ftr-social ul li a {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: var(--color-3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ftr-social ul li a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Enquire button */
.ftr-enquire-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-3);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
}

.ftr-enquire-btn:hover {
    opacity: .88;
    color: #fff;
    text-decoration: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet: stack to 1 column */
@media (max-width: 900px) {
    .ftr-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ftr-divider {
        width: auto;
        height: 1px;
        margin: 32px 0;
        align-self: auto;
    }

    .ftr-col {
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #site-footer {
        padding: 40px 0 0px;
    }

    .ftr-inner {
        padding: 0 16px;
    }

    .ftr-newsletter__form {
        max-width: 100%;
    }
}

/* ====================================================
   Back to top button
   ==================================================== */
.backtotop {
    cursor: pointer;
    background: var(--color-3);
    bottom: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px;
    position: fixed;
    right: 12px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 999;
    border-radius: 4px;
    border: 1px solid #FFF;
}

.backtotop svg {
    width: 26px;
    height: 18px;
    margin-bottom: -1px;
}

.backtotop svg path {
    stroke: #fff;
}

/* ====================================================
   Support Widget / Contact Panel
   ==================================================== */
.support-widget {
    position: fixed;
    bottom: 69px;
    right: 15px;
    z-index: 9999;
    display: none;
}

.trigger-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-5);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 167, 84, 0.4);
    transition: transform 0.2s;
}

.trigger-btn:hover {
    transform: scale(1.05);
}

.trigger-btn .icon-bvc-member img {
    border-radius: 50%;
    object-fit: cover;
}

.trigger-btn .icon-close-main {
    display: none;
    width: 22px;
    height: 22px;
    fill: #111;
}

.trigger-btn.active .icon-bvc-member {
    display: none;
}

.trigger-btn.active .icon-close-main {
    display: block;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-5);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.contact-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #1a1c22;
    border: 1px solid rgba(212, 167, 84, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.contact-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--color-3);
    color: #fff;
}

.panel-title {
    display: grid;
    grid-template-columns: 38px auto;
    align-items: center;
    gap: 10px;
}

.panel-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.panel-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.panel-info span {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.panel-greeting {
    padding: 14px 16px;
    font-size: 13px;
    color: #bbb;
    margin: 0;
    border-bottom: 1px solid #2a2c32;
}

.contact-list {
    padding: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #eee;
    transition: background 0.2s;
    gap: 10px;
}

.contact-item:hover {
    background: rgba(212, 167, 84, 0.1);
    text-decoration: none;
}

.contact-item .icon-wrap {
    flex-shrink: 0;
}

.contact-item .icon-wrap img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.contact-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
}

.contact-text p {
    font-size: 13px;
}

.contact-arrow {
    margin-left: auto;
    color: var(--color-5);
    font-size: 20px;
}

/* ====================================================
   Instagram Grid & Badge (Enhanced UI)
   ==================================================== */
.ftr-instagram {
    position: relative;
    margin-top: 60px;
}

.ftr-instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.ftr-instagram__item {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ftr-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ftr-instagram__item:hover img {
    transform: scale(1.05);
}

/* Centered badge pointing right */
.ftr-insta-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    height: 48px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftr-insta-badge:hover {
    transform: translate(-50%, -50%) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.ftr-insta-badge__text {
    padding: 20px 40px;
    background-color: #f2efe9;
    color: var(--color-3);
    /* #8e7e64 */
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    transition: background-color 0.2s ease;
}

.ftr-insta-badge:hover .ftr-insta-badge__text {
    background-color: #ebe7de;
}

/* .ftr-insta-badge__arrow {
    width: 16px;
    height: 48px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: block;
} */

/* ====================================================
   Footer Copyright Bottom Bar
   ==================================================== */
.ftr-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-items: center;
}

.ftr-bottom__links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.ftr-bottom__links ul li {
    margin-bottom: 0 !important;
}

.ftr-bottom__links ul li:not(:last-child) {
    border-right: 1px solid #ddd;
    padding-right: 15px;
}

/* ====================================================
   RESPONSIVE LAYOUT MODIFICATIONS
   ==================================================== */
@media (max-width: 900px) {
    .ftr-instagram__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ftr-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 0;
    }

    .ftr-bottom__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }
}

@media (max-width: 480px) {
    .ftr-instagram__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ftr-instagram {
        margin-top: 25px;
    }

    .ftr-insta-badge {
        height: 40px;
    }

    .ftr-insta-badge__arrow {
        width: 12px;
        height: 40px;
    }
}