.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

.footer h5 {
    color: #f7a442;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    color: #fff;
    line-height: 1.8;
}

.footer .contact-info i {
    color: #f7a442;
    margin-right: 10px;
    width: 20px;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .list-unstyled a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
    color: #f7a442;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.footer .copyright {
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.footer-section {
    background-color: #1a1a1a;
    color: #fff;
}

.main-footer {
    padding: 60px 0 30px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.about-text {
    color: #adadad;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adadad;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:hover {
    color: #f7a442;
    padding-left: 0;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #f7a442;
    margin-right: 10px;
    margin-top: 5px;
}

.contact-info span {
    color: #adadad;
    line-height: 1.6;
}

.footer-section h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f7a442;
}

/* Bottom Bar Styles */
.bottom-bar {
    background-color: #111111;
    padding: 20px 0;
    font-size: 0.9rem;
}

.bottom-bar p {
    color: #adadad;
}

.webolap-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.webolap-link:hover {
    color: #f7a442;
}

.webolap-logo {
    height: 20px;
    margin: 0 5px;
    bottom: 0;
}

.company-logo {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo a:hover .company-logo {
    transform: scale(1.05);
}

.social-link {
    color: #f7a442;
    text-decoration: none;  /* Remove underline */
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.social-link:hover {
    color: #fff;
    background: #f7a442;
    transform: translateY(-3px);
    text-decoration: none;  /* Keep removing underline on hover */
}

/* Add hover colors for specific social icons */
.social-link .fa-facebook-f:hover {
    color: #1877f2;
}

.social-link .fa-whatsapp:hover {
    color: #25d366;
}

.social-link .fa-instagram:hover {
    color: #e4405f;
}

.social-link .fa-map-marker-alt:hover {
    color: #ea4335;
}

.d-flex h5:after {
    bottom: -10px;
}

.about-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.float-whatsapp {
    background: #25d366;
}

.float-whatsapp:hover {
    background: #22c15e;
    transform: translateY(-5px);
    color: white;
}

.float-top {
    background: #f7a442;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.float-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-top:hover {
    background: #e5933a;
    transform: translateY(-5px);
    color: white;
}

.float-btn i {
    font-size: 24px;
}

.footer-contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #f7a442;
}

@media (max-width: 768px) {
    .bottom-bar .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .bottom-bar .col-md-6:first-child {
        text-align: center;
    }
}