/**
 * Orion Footer Widgets Styles
 * 
 * @package Orion_Construction
 * @since 1.0.0
 */

/* Footer Logo Widget */
.orion-footer-logo {
    margin-bottom: 20px;
}

.orion-footer-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.orion-footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

.orion-footer-logo a {
    text-decoration: none;
    display: inline-block;
}

.orion-footer-logo a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Footer Navigation Widget */
.orion-footer-navigation {
    margin-bottom: 20px;
}

.orion-footer-nav-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.orion-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orion-footer-nav-item {
    margin-bottom: 8px;
}

.orion-footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.orion-footer-nav-link:hover {
    color: #186F65;
}

/* Footer Services Widget */
.orion-footer-services {
    margin-bottom: 20px;
}

.orion-footer-services-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.orion-footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orion-footer-service-item {
    margin-bottom: 8px;
}

.orion-footer-service-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.orion-footer-service-link:hover {
    color: #186F65;
}

/* Footer Contact Widget */
.orion-footer-contact {
    margin-bottom: 20px;
}

.orion-footer-contact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.orion-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orion-footer-contact-item {
    margin-bottom: 8px;
}

.orion-footer-contact-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.orion-footer-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.orion-footer-contact-link:hover {
    color: #186F65;
}

/* Footer Social Widget */
.orion-footer-social {
    margin-bottom: 20px;
}

.orion-footer-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.orion-footer-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.orion-footer-social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.orion-footer-social-link:hover {
    color: #186F65;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer Copyright Widget */
.orion-footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.orion-footer-copyright-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.orion-footer-copyright-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.orion-footer-copyright-link:hover {
    color: #186F65;
}

.orion-footer-copyright-separator {
    color: #ffffff;
    margin: 0 5px;
}

/* Footer Background Widget */
.orion-footer-background {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.orion-footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orion-footer-background:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .orion-footer-social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .orion-footer-nav-title,
    .orion-footer-services-title,
    .orion-footer-contact-title,
    .orion-footer-social-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .orion-footer-nav-link,
    .orion-footer-service-link,
    .orion-footer-contact-text,
    .orion-footer-contact-link {
        font-size: 13px;
    }
    
    .orion-footer-copyright-text,
    .orion-footer-copyright-link {
        font-size: 12px;
    }
    
    .orion-footer-logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .orion-footer-social-links {
        gap: 10px;
    }
    
    .orion-footer-social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .orion-footer-copyright {
        padding: 15px 0;
        margin-top: 20px;
    }
}




