.footer {
    background: #fff;
    width: 100%;
    padding: 38px 0 18px 0;
    font-family: 'AvantGardeTR', Arial, sans-serif;
}
.footer-container {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1350px;
    margin: 0 auto;
    width: 95vw;
    flex-wrap: wrap;
    padding: 0 2vw;
}

/* --------- Brand & Sosyal Medya --------- */
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 170px;
    flex: 1 1 180px;
    gap: 14px;
}
.footer-brand .footer-logo {
    width: 178px;
    margin-bottom: 14px;
}
.footer-social-title {
    font-size: 27px;
    color: #191919;
    font-family: 'AvantGardeTR', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
}
.footer-socials {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
}
.footer-socials a {
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 15px;
    color: #191919;
    font-size: 2rem;
    border-radius: 50%;
    transition: color .18s, background .14s;
    background: none;
}
.footer-socials a:last-child { margin-right: 0; }
.footer-socials a:hover {
    color: #e27924;
    background: #f7ebe0;
}

/* --------- İletişim Bilgileri --------- */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 24px;
    color: #191919;
    margin-bottom: 2px;
    font-family: 'AvantGardeTR', Arial, sans-serif;
}
.footer-contact-icon {
    width: 28px;
    height: 28px;
    margin-top: 1px;
}

/* --------- Menü --------- */
.footer-menu ul {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    color: #191919;
    font-family: 'AvantGardeTR', Arial, sans-serif;
    margin-bottom: 8px;
}
.footer-dot {
    width: 10px;
    height: 10px;
    background: #e27924;
    border-radius: 50%;
    display: inline-block;
}

/* --------- Form --------- */
.footer-form-title {
    font-size: 32px;
    font-family: 'AvantGardeTR', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    color: #191919;
}
.footer-mail-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-form-row {
    display: flex;
    width: 100%;
    gap: 0;
    margin-bottom: 3px;
}
.footer-mail-form input[type="email"] {
    flex: 1 1 auto;
    padding: 12px 14px;
    border: none;
    border-radius: 22px 0 0 22px;
    background: #e27924;
    color: #fff;
    font-size: 20px;
    outline: none;
    font-family: 'AvantGardeTR', Arial, sans-serif;
}
.footer-mail-form input[type="email"]::placeholder {
    color: #fff;
    opacity: .91;
    font-family: 'AvantGardeTR', Arial, sans-serif;
}
.footer-mail-form button {
    background: #191919;
    color: #fff;
    font-size: 20px;
    border: none;
    border-radius: 0 22px 22px 0;
    padding: 0 28px;
    font-family: 'AvantGardeTR', Arial, sans-serif;
    cursor: pointer;
    transition: background .14s;
}
.footer-mail-form button:hover {
    background: #e27924;
}
.footer-policy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #191919;
}
.footer-policy input[type="checkbox"] {
    width: 19px;
    height: 19px;
    accent-color: #e27924;
}

@media (max-width: 1200px) {
    .footer-container { gap: 26px; }
    .footer { flex-wrap: wrap; gap: 26px; }
    .footer-col { min-width: 140px; }
    .footer-brand .footer-logo { width: 135px; }
    .footer-form-title { font-size: 22px; }
}
@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        gap: 22px;
        align-items: stretch;
        padding: 0 3vw;
    }
    .footer {
        flex-direction: column;
        gap: 22px;
        align-items: stretch;
        padding: 30px 3vw 14px 3vw;
    }
    .footer-col { min-width: 0; }
}
