/* ==========================================
   PREMIUM WELLNESS FOOTER
========================================== */

.footer {
    background: #0f1a16;
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}


/* subtle top line */

.footer::before {

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#D4AF37;

}



.footer .container {

    width:90%;
    max-width:1200px;
    margin:auto;

}



/* ==========================================
FOOTER GRID
========================================== */

.footer-grid {

    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:50px;

}




/* ==========================================
LOGO AREA
========================================== */


.footer-logo {

    width:190px;
    margin-bottom:25px;

}



.footer-widget p {

    color:#bfc7c2;
    line-height:1.9;
    font-size:15px;
    max-width:330px;

}



/* ==========================================
HEADINGS
========================================== */


.footer-widget h3 {

    font-size:20px;
    font-weight:600;
    margin-bottom:30px;
    color:#fff;

}



.footer-widget h3::after {

    content:"";
    display:block;
    margin-top:12px;
    width:45px;
    height:3px;
    background:#D4AF37;
    border-radius:5px;

}



/* ==========================================
LINKS
========================================== */


.footer-widget ul {

    padding:0;
    margin:0;
    list-style:none;

}



.footer-widget ul li {

    margin-bottom:14px;

}



.footer-widget ul li a {

    color:#bfc7c2;
    text-decoration:none;
    font-size:15px;
    display:inline-flex;
    transition:.3s;

}



.footer-widget ul li a:hover {

    color:#D4AF37;
    transform:translateX(8px);

}



/* ==========================================
SOCIAL ICONS
========================================== */


.footer-social {

    display:flex;
    gap:12px;
    margin-top:30px;

}



.footer-social a {

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#182720;

    color:#fff;

    font-size:17px;

    transition:.3s;

}



.footer-social a:hover {

    background:#D4AF37;
    color:#111;
    transform:translateY(-5px);

}



/* ==========================================
CONTACT BOX
========================================== */


.footer-contact li {

    display:flex;
    gap:15px;
    align-items:flex-start;

}



.footer-contact i {

    color:#D4AF37;
    font-size:18px;
    margin-top:4px;

}



.footer-contact a,
.footer-contact span {

    color:#bfc7c2;
    text-decoration:none;

}



/* ==========================================
BOTTOM FOOTER
========================================== */


.footer-bottom {

    margin-top:70px;
    padding:25px 0;

    background:#09100d;

}



.footer-bottom .container {

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.footer-bottom p {

    margin:0;
    color:#999;
    font-size:14px;

}



.footer-links {

    display:flex;
    gap:25px;

}



.footer-links a {

    color:#999;
    text-decoration:none;
    font-size:14px;

}



.footer-links a:hover {

    color:#D4AF37;

}



/* ==========================================
SCROLL BUTTON
========================================== */


.scroll-top {

    width:48px;
    height:48px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    border:none;

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}



/* ==========================================
TABLET
========================================== */


@media(max-width:992px){


.footer-grid{

    grid-template-columns:repeat(2,1fr);

}


.footer-bottom .container{

    flex-direction:column;
    gap:15px;
    text-align:center;

}


}




/* ==========================================
MOBILE
========================================== */


@media(max-width:600px){


.footer{

    padding-top:60px;

}



.footer-grid{

    grid-template-columns:1fr;
    text-align:center;

}



.footer-widget p{

    margin:auto;

}



.footer-widget h3::after{

    margin-left:auto;
    margin-right:auto;

}



.footer-social{

    justify-content:center;

}



.footer-contact li{

    justify-content:center;

}



.footer-links{

    flex-direction:column;
    gap:12px;

}


}