/* Dynamic Footer Styling - Optimized to match the provided image */
.footer__one {
    background: #222222;
    padding: 60px 0 30px;
    position: relative;
    color: #E2E8F0;
}

.footer__one .container {
    position: relative;
    z-index: 1;
}

/* Logo styling */
.footer__one-widget .logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer__one-widget .logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.footer__one-widget .logo:hover img {
    opacity: 0.9;
}

/* Widget content */
.footer__one-widget p {
    color: #fff;
    line-height: 1.8;
    margin: 0 0 25px 0;
    font-size: 15px;
    font-weight: 400;
}

/* Footer section headings */
.footer__one .footer-title,
.footer__one h6 {
    color: #F7FAFC;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Social media styling */
.footer__one-widget.social ul {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__one-widget.social ul li {
    margin: 0;
}

.footer__one-widget.social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #E2E8F0;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer__one-widget.social ul li a:hover {
    background: #4A5568;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-2px);
}

/* Menu styling */
.footer-widget-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-widget-menu ul li {
    margin-bottom: 0px;
}

.footer-widget-menu ul li:last-child {
    margin-bottom: 0;
}

.footer-widget-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.6;
    padding: 2px 0;
}

.footer-widget-menu ul li a:hover {
    color: #e6bb7b;
    padding-left: 8px;
}

/* Contact information styling */
.footer__one-widget.contact .contact-item {
    margin-bottom: 20px;
}

.footer__one-widget.contact .contact-item:last-child {
    margin-bottom: 0;
}

.footer__one-widget.contact .contact-item-info span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__one-widget.contact .contact-item-info p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.footer__one-widget.contact .contact-item-info p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__one-widget.contact .contact-item-info p a:hover {
    color: #F7FAFC;
}

/* Copyright area */
.copyright__area {
    margin-top: 50px;
    padding: 25px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright__area-content {
    text-align: center;
}

.copyright__area-content p {
    color: var(--color-8);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

/* Responsive design */
@media (max-width: 1199px) {
    .ml-40 {
        margin-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .footer__one {
        padding: 50px 0 30px;
    }

    .footer__one-widget {
        margin-bottom: 40px;
    }

    .footer__one-widget:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .footer__one {
        padding: 40px 0 30px;
    }

    .footer__one-widget {
        margin-bottom: 35px;
        
    }
 

    .copyright__area {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .footer__one {
        padding: 35px 0 25px;
    }

    .footer__one-widget {
        margin-bottom: 30px;
    }

    .footer__one .footer-title,
    .footer__one h6 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .copyright__area {
        margin-top: 35px;
    }
}

/* Widget spacing adjustments */
.footer__one-widget {
    padding-right: 15px;
}

@media (max-width: 991px) {
    .footer__one-widget {
        padding-right: 0;
    }
}
