/* Footer Styles */
.site-footer {
    width: 100%;
    background-color: #000000;
    color: #fff;
    margin-top: 50px;
}

/* First Section: Footer Main Content */
.footer-main {
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

/* Left Section: Logo and Social Media (30% width) */
.footer-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.social-media h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #df7c60;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: red;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(223, 124, 96, 0.4);
}

/* Right Section: Four Columns (70% width) */
.footer-right {
    width: 70%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 2px solid #df7c60;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 2; /* Adjusted for larger font size */
    letter-spacing: 0.6px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #df7c60;
    padding-left: 5px;
}

/* Last Section: Footer Bottom */
.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left,
.footer-bottom-right {
    font-size: 19px;
    color: #fff;
    line-height: 1.5; /* Adjusted for larger font size */
    letter-spacing: 0.6px;
}

.footer-bottom-left strong {
    color: #df7c60;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 22px;
    }
    
    .footer-links a {
        font-size: 17.5px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        font-size: 17.5px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-bottom-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        font-size: 16px;
    }
}

