/* Footer Refactoring - August 31, 2025 */

/* Updated two-column layout for the footer */
.footer_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0 20px;
}

/* Styling for company section */
.footer_company_section {
    flex: 0 0 48%;
    margin-bottom: 20px;
    padding-right: 20px;
}

/* Styling for social media section */
.footer_social_section {
    flex: 0 0 48%;
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Better social media icons alignment and styling */
.footer_social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.footer_social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer_social i {
    font-size: 20px;
    color: #fff;
}

/* Better heading styling */
.footer_1 h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Link styling */
.footer_1 ul {
    padding-left: 0;
    list-style-type: none;
}

.footer_1 ul li {
    margin-bottom: 12px;
}

.footer_1 ul li a {
    color: #fff;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
}

.footer_1 ul li a:hover {
    color: #ccc;
    padding-left: 5px;
    text-decoration: none;
}

/* Logo and description styling */
.footer_1 h2.big {
    margin-bottom: 15px;
}

.footer_1 p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Copyright section */
.footer_2 {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer_2 p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Responsive styles */
@media (max-width: 767px) {
    .footer_company_section,
    .footer_social_section {
        flex: 0 0 100%;
    }
}
