#footer-section {
    background: #ffffff;
    color: #000000;
    padding: 60px 20px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 2px solid #d4af37;
}

.footer-tagline {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #d4af37;
    letter-spacing: 1px;
}

.footer-description {
    color: #ccc;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 6, 6, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp:hover { background: #25D366; transform: translateY(-5px); }
.gmail:hover { background: #DB4437; transform: translateY(-5px); }
.instagram:hover { background: #E1306C; transform: translateY(-5px); }
.twitter:hover { background: #1DA1F2; transform: translateY(-5px); }
.youtube:hover { background: #FF0000; transform: translateY(-5px); }

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px solid #000000;
    padding-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    transition: color 0.3s;
}

.contact-item i {
    color: #d4af37;
}

.contact-item:hover {
    color: #8e8787;
    font-size: large;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #222;
}



/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #d4af37; /* Matches your gold theme */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; /* Flexbox to center the icon */
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000; /* Ensures it stays above other elements */
    
    /* Hidden by default, toggled via JavaScript */
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background-color: #000000; /* Switches to black on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Class to be added via JS when scrolling */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}