/* Footer */
.footer {
    background-color: #0f1419;
    color: #ffffff;
}

/* Footer Top Image */
.footer-top-image {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 5px solid #f57b06;
}

.footer-top-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Main */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0 1rem 0;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-about {
    gap: 1rem;
}

h3.footer-logo {
    margin-bottom: 0px;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #ffffff;
    margin: -10px 0 0rem 0;
    font-style: normal;
}

.footer-description {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.footer-view-more {
    color: #fd9204;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-view-more:hover {
    color: #ffed4e;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fd9204;
}

/* Newsletter */
.footer-newsletter {
    gap: 1.5rem;
}

.newsletter-text {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background-color: transparent;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fd9204;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background-color: #fd9204;
    color: #0f1419;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

/* Footer Additional Section */
.footer-additional {
    border-top: 1px solid #1a1f3a;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.footer-services {
    flex: 1;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-service-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-service-link:hover {
    color: #fd9204;
}

.footer-service-link .arrow {
    color: #fd9204;
}

.footer-contact-section {
    flex: 0 0 auto;
    text-align: center;
}

.footer-contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fd9204;
}

.footer-socials-section {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #fd9204;
    color: #0f1419;
    border-color: #fd9204;
}

/* List Items */
li {
    margin-bottom: 0px;
}

/* Footer Links List Items */
.footer-links li {
    border-bottom: 0px dashed #4e4e4e;
    padding-bottom: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #8a8b94;
    padding: 20px 0px;
    text-align: left;
}

.footer-copyright {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-additional {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-contact-section {
        text-align: left;
    }

    .footer-socials-section {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social-icons {
        gap: 0.5rem;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        height: auto;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }

    .footer-column {
        gap: 1rem;
    }

    .footer-title {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .newsletter-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
