/* ================================
   FOOTER STYLES
   ================================ */

.site-footer {
    padding: 20px;
    background: var(--color-bg);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-inner {
    background: #4E30B3;
    border-radius: 30px;
    padding: 60px;
}

/* ================================
   FOOTER TOP SECTION
   ================================ */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

/* Footer Menus */
.footer-menus {
    display: flex;
    gap: 120px;
    flex: 1;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-menu-title {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #FF7518;
    margin: 0;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-menu-list li a {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #D2D2D2;
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu-list li a:hover {
    color: #FFFFFF;
}

/* Footer Subscribe */
.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 510px;
}

.footer-subscribe-title {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-secondary);
    margin: 0;
}

.footer-subscribe-form {
    display: flex;
    gap: 10px;
}

.footer-subscribe-input {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    width: 351px;
    height: 56px;
    background: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: #333333;
}

.footer-subscribe-input::placeholder {
    color: #AAAAAA;
}

.footer-subscribe-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 117, 24, 0.3);
}

.footer-subscribe-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    width: 159px;
    height: 56px;
    background: #FF7518;
    border: none;
    border-radius: 50px;
    font-family: 'Manrope', var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: var(--transition);
}

.footer-subscribe-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.footer-subscribe-note {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #D2D2D2;
    margin: 0;

    padding-left: 32px;
}

/* ================================
   FOOTER BOTTOM SECTION
   ================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-end;
}

.footer-bottom-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-copyright {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #D2D2D2;
    margin: 0;
}

.footer-bottom-right {
    margin: 0;
}

.footer-credits {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #D2D2D2;
    margin: 0;
}

/* ================================
   RESPONSIVE - TABLET
   ================================ */

@media (max-width: 1024px) {
    .footer-inner {
        padding: 50px;
    }
    
    .footer-top {
        flex-direction: column;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    
    .footer-menus {
        gap: 80px;
    }
    
    .footer-subscribe {
        max-width: 100%;
    }
    
    .footer-subscribe-input {
        width: 300px;
    }
}

.footer-subscribe-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.footer-subscribe-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 15px;
    }
    
    .footer-inner {
        padding: 40px 30px;
    }
    
    .footer-top {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-menus {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-subscribe {
        width: 100%;
    }
    
    .footer-menu-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .footer-menu-list li a {
        font-size: 18px;
        line-height: 26px;
    }
    
    .footer-subscribe-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .footer-subscribe-form {
        flex-direction: column;
    }
    
    .footer-subscribe-input {
        width: 100%;
        font-size: 18px;
    }
    
    .footer-subscribe-button {
        width: 100%;
        font-size: 18px;
    }
    
    .footer-subscribe-note {
        font-size: 16px;
        line-height: 26px;
    }
    
    .footer-bottom {
flex-direction: column;
        gap: 30px;
        text-align: center;
        display: flex;
        align-items: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
                display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 30px 20px;
    }
    
    .footer-top {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-menus {
        gap: 30px;
    }
    
    .footer-menu-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .footer-menu-list {
        gap: 10px;
    }
    
    .footer-menu-list li a {
        font-size: 16px;
        line-height: 24px;
    }
    
    .footer-subscribe-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .footer-subscribe-input {
        padding: 14px 24px;
        height: 52px;
        font-size: 16px;
    }
    
    .footer-subscribe-button {
        padding: 14px 28px;
        height: 52px;
        font-size: 16px;
    }
    
    .footer-subscribe-note {
        font-size: 14px;
        line-height: 22px;
    }
    
    .footer-bottom-left {
        gap: 12px;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 14px;
        line-height: 22px;
    }
}