/* =======================================================
   FOOTER STYLES
   ======================================================= */
.site-footer {
    width: 100%;
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 80px 24px 40px;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.newsletter-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #ffffff;
    white-space: nowrap;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    background-color: #262626;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.newsletter-form:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #ffffff;
    background: transparent;
}

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

.newsletter-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
    background-color: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    max-width: 70px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.04);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #999999;
    max-width: 320px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    width: fit-content;
}

.footer-nav a:hover {
    color: #a0a0a0;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .newsletter-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 40px;
    }

    .newsletter-form { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-text { max-width: 100%; }
}

@media (max-width: 480px) {
    .newsletter-title { font-size: 1.4rem; }
    .newsletter-form { flex-direction: column; background: transparent; border: none; gap: 10px; }
    .newsletter-input {
        background-color: #262626;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 6px;
        padding: 14px;
    }
    .newsletter-btn { width: 100%; padding: 14px; border-radius: 6px; }
}