:root{
  --brand:#5b0e2d;
  --brand-hover:#7a123f;
  --bg:#0f0f12;
  --white:#ffffff;
  --border:rgba(255,255,255,0.08);
}

.footer {
    background: #5b0e2d;
    color: var(--white);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #fff;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    transition: all .3s ease;
}

.footer-column ul li a:hover {
    color: #fd013a;
    transform: translateX(5px);
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.footer-btn:hover {
    background: #a30545;
    border-color: #a30545;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(163, 5, 69, .35);
}

.footer-btn:active {
    transform: translateY(0);
}

.footer-links {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    margin: 0 10px;
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    background: #35081B;
    border-top: 1px solid var(--border);
    padding: 15px 15px 60px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}

.footer-copy a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-copy a:hover {
    color: var(--brand-hover);
}

.footer-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-security a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-security img {
    display: block;
    max-width: 100%;
    height: 30px;
    width: auto;
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.footer-security a:hover img {
    transform: translateY(-3px);
    opacity: .95;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.footer-trust {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    text-align: right;
}

@media (max-width:991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width:767px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 35px 15px;
    }
    .footer-column h4 {
        font-size: 18px;
    }
    .footer-column ul li {
        margin-bottom: 8px;
    }
    .footer-column ul li a {
        font-size: 14px;
    }
    .footer-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 12px 15px;
        margin-top: 12px;
        box-sizing: border-box;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 20px 15px;
        font-size: 0;
    }
    .footer-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 8px 14px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 5px;
        color: #fff;
        font-size: 13px;
    }
    .footer-links a:hover {
        background: #a30545;
        border-color: #a30545;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy {
        order: 1;
    }
    .footer-security {
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-security img {
        height: 25px;
    }
    .footer-trust {
        order: 3;
        text-align: center;
    }
    .footer-security img {
        height: 28px;
    }
}

@media (max-width:480px) {
    .footer-container {
        gap: 25px 15px;
    }
    .footer-security {
        gap: 8px;
    }
    .footer-security img {
        height: 26px;
    }
    .footer-column h4 {
        font-size: 17px;
    }
    .footer-column ul li a {
        font-size: 13px;
    }
    .footer-links {
        gap: 8px;
    }
    .footer-links a {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* ==========================
   STICKY CONTACT BAR
========================== */

.nowcalling {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 99999;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, .25);
}

.nowcalling a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.call-btn {
    background: #5b0e2d;
}

.call-btn:hover {
    background: #7a123f;
    color: #fff;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1da851;
    color: #fff;
}

.nowcalling i {
    font-size: 18px;
    line-height: 1;
    transform: none !important;
    rotate: 0deg !important;
    scale: 1 !important;
}

.nowcalling .fa-phone,
.nowcalling .fa-phone-alt,
.nowcalling .fa-phone-volume {
    transform: none !important;
    rotate: 0deg !important;
}

@media(max-width:767px) {
    .nowcalling a {
        font-size: 15px;
        padding: 12px 8px;
    }
    .nowcalling i {
        font-size: 16px;
    }
}

/* ==========================
   SCROLL TO TOP
========================== */

.scrollToTop {
    position: fixed;
    right: 20px;
    bottom: 85px;
    width: 50px;
    height: 50px;
    background: #5b0e2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
}

.scrollToTop:hover {
    background: #7a123f;
    color: #fff;
    transform: translateY(-3px);
}

.scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrollToTop i {
    transform: none !important;
}

@media(max-width:767px) {
    .scrollToTop {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 75px;
        font-size: 16px;
    }
}

