.footer {
    background-color: #1b1728;
    color: white;
    padding: 60px 20px 30px;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}



.footer-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    width: 90%;
    margin-left: 10%;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Left Section - Logo & Social Media */
.logo-section {
    align-items: flex-start;
}

footer .logo {
    margin-top: 10%;
    width: 35%;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1b1728;
    font-size: 18px;
    margin-bottom: 25px;
}

footer .logo img {
    width: 100%;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 7%;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    color: #1b1728;
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background-color: #3b5998;
    border-color: #3b5998;
    color: white;
}

.social-icon.whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: white;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
}

/* Middle Section - Company Links */
.company-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.company-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.company-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.company-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Right Section - Inquiries */
.inquiries-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 16px;
}

.contact-item i {
    width: 20px;
    color: #fff;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address {
    line-height: 1.6;
    max-width: 250px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 16px;
    height: 35px;
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
    opacity: 0.5;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .logo-section {
        align-items: center;
    }

    .social-media {
        justify-content: center;
    }

    .company-section,
    .inquiries-section {
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .address {
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8em;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    footer .logo {
        width: 120px;
        height: 50px;
        font-size: 16px;
    }
}


.pre-footer-blank {
    width: 100%;
    height: 100px;
}