.footer-container {
    background: #e9ecef;
    padding: 80px 0 0;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    overflow: hidden;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    width: 100%;
}

.footer-content.footer-animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-left {
    display: flex;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
    flex-shrink: 0;
}

.footer-left.footer-animate-left {
    opacity: 1;
    transform: translateY(0);
}

.footer-menu-section {
    min-width: 140px;
}

.footer-menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.footer-menu-list {
    list-style: none;
}

.footer-menu-item {
    margin-bottom: 16px;
}

.footer-menu-link {
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-menu-link:hover {
    color: #009653;
    transform: translateX(2px);
}

.footer-right {
    flex: 1;
    max-width: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.4s;
    min-width: 0;
}

.footer-right.footer-animate-right {
    opacity: 1;
    transform: translateY(0);
}

.footer-brand {
    font-size: 32px;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    display: block;
    margin-bottom: 40px;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.footer-brand:hover {
    color: #009653;
}

.footer-social-section {
    margin-bottom: 50px;
}

.footer-social-title {
    font-size: 13px;
    color: #999999;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}

.footer-social-link:hover {
    color: #009653;
    transform: translateY(-2px);
}

.footer-company-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 300px;
}

.footer-newsletter-column {
    flex: 1;
    max-width: 320px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.6s;
    min-width: 0;
}

.footer-newsletter-column.footer-animate-newsletter {
    opacity: 1;
    transform: translateY(0);
}

.footer-newsletter-section {
    max-width: 320px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-newsletter-title {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.footer-newsletter-subtitle {
    font-size: 13px;
    color: #999999;
    margin-bottom: 24px;
    line-height: 1.4;
}

.footer-email-wrapper {
    position: relative;
    display: flex;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    width: 100%;
}

.footer-email-wrapper:focus-within {
    border-color: #009653;
}

.footer-email-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #333333;
    min-width: 0;
}

.footer-email-input::placeholder {
    color: #cccccc;
    font-size: 16px;
}

.footer-email-button {
    padding: 14px 18px;
    background: #009653;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 2px;
    flex-shrink: 0;
}

.footer-email-button:hover {
    background: #007a44;
    transform: translateX(1px);
}

.footer-email-button i {
    font-size: 16px;
}

.footer-contact-section {
    margin-top: 0;
}

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

.footer-contact-label {
    font-size: 13px;
    color: #999999;
    margin-bottom: 6px;
    font-weight: 500;
}

.footer-contact-value {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
    word-wrap: break-word;
}

.footer-contact-value:hover {
    color: #009653;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #888;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.6s;
}

.footer-bottom-content.footer-animate-bottom {
    opacity: 1;
    transform: translateY(0);
}

.footer-copyright {
    font-size: 12px;
    color: #222;
    text-align: center;
}

.footer-copyright-link {
    color: #009653;
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 0 30px;
        font-size: 14px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-left {
        gap: 40px;
    }
}

@media (max-width: 875px) {
    .footer-container {
        padding: 60px 0 0;
    }

    .footer-wrapper {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-left {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .footer-right {
        max-width: 100%;
        width: 100%;
    }

    .footer-newsletter-column {
        max-width: 100%;
        width: 100%;
    }

    .footer-newsletter-section {
        max-width: 100%;
    }

    .footer-brand {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .footer-menu-section {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 0 0;
    }

    .footer-wrapper {
        padding: 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-left {
        gap: 25px;
    }

    .footer-menu-section {
        min-width: auto;
        width: 100%;
    }

    .footer-brand {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .footer-company-description {
        max-width: 100%;
    }

    .footer-email-wrapper {
        border-radius: 12px;
    }

    .footer-email-input {
        padding: 16px 20px;
        font-size: 16px;
    }

    .footer-email-button {
        padding: 16px 18px;
        border-radius: 12px;
        margin: 2px;
    }

    .footer-newsletter-title {
        font-size: 15px;
    }

    .footer-contact-value {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .footer-wrapper {
        padding: 0 12px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-brand {
        font-size: 22px;
    }

    .footer-menu-title {
        font-size: 13px;
    }

    .footer-menu-link {
        font-size: 13px;
    }
}

