
/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    margin-top: 60px;
    position: relative;
}
.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    background-size: 200% 100%;
    animation: grad-flow 4s ease infinite;
}
@keyframes grad-flow {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.footer-grid {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 48px 20px 32px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
}
.foot-logo {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    text-decoration: none;
}
.foot-logo em  { color: var(--red); font-style: normal; }
.foot-logo__dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 3px;
    display: inline-block;
}
.foot-desc {
    color: #555;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 300px;
}

/* Newsletter */
.newsletter { margin-bottom: 20px; }
.newsletter__label {
    color: #555;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.newsletter__label .bi { color: var(--gold); }
.newsletter__row {
    display: flex;
    border: 1px solid #222;
    border-radius: var(--r);
    overflow: hidden;
}
.newsletter__input {
    flex: 1;
    background: #141414;
    border: none;
    padding: 10px 13px;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    outline: none;
    min-width: 0;
}
.newsletter__input::placeholder { color: #333; }
.newsletter__btn {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--t);
    flex-shrink: 0;
}
.newsletter__btn:hover { background: var(--red-d); }

/* Socials */
.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.soc-btn {
    width: 34px; height: 34px;
    background: #141414;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    transition: var(--t);
    text-decoration: none;
}
.soc-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(200,16,46,.3);
}

/* Footer columns */
.footer-col__title {
    color: var(--white);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 11px;
    border-bottom: 1px solid #1e1e1e;
    position: relative;
}
.footer-col__title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 22px; height: 2px;
    background: var(--red);
}
.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    list-style: none;
    padding: 0; margin: 0;
}
.footer-col__list li a {
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: var(--t);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.footer-col__list li a .bi { font-size: 11px; color: #2a2a2a; transition: color .2s; }
.footer-col__list li a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-col__list li a:hover .bi { color: var(--gold); }

/* Footer bottom */
.footer-btm {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 16px 20px;
    border-top: 1px solid #171717;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-btm__copy { color: #3a3a3a; font-size: 12px; margin: 0; }
.pay-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.pay-b {
    background: #141414;
    border: 1px solid #222;
    border-radius: 3px;
    padding: 3px 9px;
    color: #444;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    transition: border-color .2s, color .2s;
}
.pay-b:hover { border-color: #3a3a3a; color: #666; }

/* Responsive footer */
@media(max-width:1000px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
    .footer-col--brand { grid-column: 1/-1; }
    .foot-desc { max-width: 100%; }
    .newsletter__row { max-width: 380px; }
}
@media(max-width:640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding: 28px 14px 20px; }
    .footer-col--brand { grid-column: 1/-1; }
    .footer-btm { flex-direction: column; text-align: center; padding: 12px; }
    .site-footer { margin-top: 0; }
}
@media(max-width:380px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   FLOATING CHAT WIDGET
   ✅ লাল (red) সম্পূর্ণ সরানো হয়েছে
   fc-notif এবং fc-sub-btn--phone এর red বাদে
   শুধু green/blue/messenger রং রাখা হয়েছে
══════════════════════════════════════════ */
.fc-wrap {
    position: fixed;
    bottom: 86px; right: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
@media(min-width:768px) {
    .fc-wrap { bottom: 24px; }
}

/* ✅ Main button — সবুজ, কোনো লাল নেই */
.fc-main-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;       /* সবুজ — WhatsApp */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,.45);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s;
    position: relative;
    z-index: 2;
}
.fc-main-btn:hover  { transform: scale(1.1); background: #1ebe5d; }
.fc-main-btn.is-open { background: #444; box-shadow: 0 4px 18px rgba(0,0,0,.3); }

.fc-icon-open  { display: block; }
.fc-icon-close { display: none; }
.fc-main-btn.is-open .fc-icon-open  { display: none; }
.fc-main-btn.is-open .fc-icon-close { display: block; }

/* ✅ fc-notif (লাল pulsing dot) — সম্পূর্ণ মুছে দেওয়া হয়েছে */

/* Sub list */
.fc-sub-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px) scale(.96);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.3,.64,1);
}
.fc-sub-list.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.fc-sub-list .fc-sub-item:nth-child(1) { transition-delay: .03s; }
.fc-sub-list .fc-sub-item:nth-child(2) { transition-delay: .07s; }
.fc-sub-list .fc-sub-item:nth-child(3) { transition-delay: .11s; }
.fc-sub-list .fc-sub-item:nth-child(4) { transition-delay: .15s; }

.fc-sub-item { display: flex; align-items: center; gap: 10px; }
.fc-label {
    background: #fff;
    color: #222;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: .02em;
}
.fc-sub-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.fc-sub-btn:hover { transform: scale(1.12); color: #fff; }

/* Sub button colors — ✅ phone button এর red সরিয়ে dark করা হয়েছে */
.fc-sub-btn--chat      { background: #1DB954; box-shadow: 0 3px 12px rgba(29,185,84,.4); }
.fc-sub-btn--messenger { background: #0084ff; box-shadow: 0 3px 12px rgba(0,132,255,.4); }
.fc-sub-btn--whatsapp  { background: #25d366; box-shadow: 0 3px 12px rgba(37,211,102,.4); }
.fc-sub-btn--phone     { background: #374151; box-shadow: 0 3px 12px rgba(55,65,81,.35); } /* ✅ লাল → dark gray */

.fc-sub-btn--chat:hover      { background: #17a349; }
.fc-sub-btn--messenger:hover { background: #0073e0; }
.fc-sub-btn--whatsapp:hover  { background: #1ebe5d; }
.fc-sub-btn--phone:hover     { background: #1f2937; }

/* ══════════════════════════════════════════
   LIVE CHAT MODAL
   ✅ header green রাখা হয়েছে, কোনো red নেই
══════════════════════════════════════════ */
.lc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}
.lc-overlay.is-open { opacity: 1; pointer-events: auto; }

.lc-modal {
    position: fixed;
    bottom: 160px; right: 18px;
    width: 330px;
    max-height: 520px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,.22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(.97);
    transition: opacity .28s ease, transform .28s cubic-bezier(.34,1.3,.64,1);
}
.lc-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
@media(max-width:400px) {
    .lc-modal { width: calc(100vw - 36px); bottom: 150px; }
}

/* Modal header — green, no red */
.lc-header {
    background: #25d366;  /* ✅ green — লাল নেই */
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.lc-header__info { display: flex; align-items: center; gap: 10px; }
.lc-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}
.lc-header__name  { color: #fff; font-size: 13px; font-weight: 700; margin: 0; }
.lc-header__status {
    color: rgba(255,255,255,.85);
    font-size: 11px;
    margin: 2px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.lc-dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: lc-pulse 1.8s ease infinite;
}
@keyframes lc-pulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.3); }
}
.lc-close {
    background: rgba(255,255,255,.2);
    border: none;
    border-radius: 50%;
    width: 30px; height: 30px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lc-close:hover { background: rgba(255,255,255,.35); }

/* Guest form */
.lc-guest-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f0f4f8;
}
.lc-gf-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lc-gf-title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
    text-align: center;
}
.lc-gf-input {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: border-color .2s;
}
.lc-gf-input:focus  { border-color: #25d366; }
.lc-gf-btn {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    font-family: 'Nunito', sans-serif;
}
.lc-gf-btn:hover { background: #1ebe5d; }

/* Chat body */
.lc-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f0f4f8;
}
.lc-bubble {
    max-width: 78%;
    padding: 10px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.55;
}
.lc-bubble p { margin: 0; }
.lc-bubble--in {
    background: #fff;
    color: #222;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.lc-bubble--out {
    background: #25d366;  /* ✅ green — লাল নেই */
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.lc-time { display: block; font-size: 10px; color: #aaa; margin-top: 4px; }
.lc-bubble--out .lc-time { color: rgba(255,255,255,.7); }

/* Chat footer */
.lc-footer {
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}
.lc-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 22px;
    padding: 9px 14px;
    font-size: 13px;
    outline: none;
    font-family: 'Nunito', sans-serif;
    transition: border-color .2s;
}
.lc-input:focus { border-color: #25d366; }
.lc-send {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.lc-send:hover { background: #1ebe5d; transform: scale(1.08); }

/* Typing indicator */
.lc-typing {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    width: fit-content;
}
.lc-typing span {
    width: 7px; height: 7px;
    background: #bbb;
    border-radius: 50%;
    animation: lc-bounce .9s ease infinite;
}
.lc-typing span:nth-child(2) { animation-delay: .15s; }
.lc-typing span:nth-child(3) { animation-delay: .30s; }
@keyframes lc-bounce {
    0%,80%,100% { transform: translateY(0); }
    40%          { transform: translateY(-6px); }
}
