/* ============================================
   Footer Styles
   ============================================ */

:root {
    --primary-red: #DA0000;
    --primary-dark: #1D1D1D;
    --primary-white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E8E8E8;
    --text-primary: #1D1D1D;
    --text-secondary: #626060;
}

* {
    font-family: 'Courier New', Courier, monospace;
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 100px;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    max-width: 320px;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: var(--primary-white);
    color: var(--primary-red);
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4 img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.footer-section p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-socials {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 13px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .newsletter {
        padding: 60px 0;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .newsletter p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input {
        max-width: 100%;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-socials {
        justify-content: center;
    }
}
