
:root {
    --footer-bg: #181c23;
    --footer-accent: #F36300;
    --footer-text: #f5f5f7;
    --footer-link: #b0b3b8;
    --footer-link-hover: #fff;
    --footer-border: #23272f;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 0 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    border-top: 1px solid var(--footer-border);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    justify-content: space-between;
    gap: 32px;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 32px;
}

.footer-section h2,
.footer-section h3 {
    color: var(--footer-accent);
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: var(--footer-link);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--footer-link-hover);
}

.footer-newsletter {
    border-top: 1px solid var(--footer-border);
    padding: 32px 0 0 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 1rem;
    width: 60%;
    background: #23272f;
    color: var(--footer-text);
    transition: background 0.2s;
}

.newsletter-form input[type="email"]:focus {
    background: #23272f;
    box-shadow: 0 0 0 2px var(--footer-accent);
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    background: var(--footer-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #d35400;
}

.footer-bottom {
    border-top: 1px solid var(--footer-border);
    margin-top: 32px;
    padding: 24px 0 16px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-social {
    margin-bottom: 8px;
}

.footer-social a {
    display: inline-block;
    margin: 0 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social img {
    width: 28px;
    height: 28px;
    filter: grayscale(1) brightness(1.2);
}

.footer-bottom p {
    color: var(--footer-link);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
    }
    .footer-section {
        margin-bottom: 24px;
    }
    .newsletter-form input[type="email"] {
        width: 100%;
    }
}