.footer {
    background: var(--mid-blue);
    color: var(--white);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__col { display: flex; flex-direction: column; gap: 8px; }

.footer__col p { font-size: 12.5px; line-height: 1; }

.footer__call-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.footer__col i, .footer__col img{ margin-right: 6px; color: var(--white); }

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer__social a, .footer a { color: var(--white); font-size: 16px; transition: color 0.2s; }
.footer__social a:hover, .footer a:hover { color: var(--yellow); }

.footer__col--center {
    align-items: center;
    gap: 14px;
}

.footer__payments {
    margin-top: 4px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    text-align: center;
    min-width: 300px;
}

.footer__payments-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer__payments-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__payments-icons i {
    font-size: 30px;
    color: var(--white);
}

.footer__link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s;
}

.footer__link:hover { color: var(--yellow); border-color: var(--yellow); }

.footer__customer { text-align: center; margin: 8px 0; }

.footer__customer-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer__customer p { font-size: 12px; }

.footer__col--right { align-items: flex-end; justify-content: center; align-self: center; max-width: 200px;}

.footer__logo { width: 100%; object-fit: contain; }

/* =============================================
   RESPONSIVE
   ============================================= */
  @media (max-width: 1024px) {
    .footer__policies { display: flex; flex-direction: column; gap:10px; }
  }

  @media (max-width: 768px) {
    .footer__policies { display: block;}
    .footer { flex-direction: column; align-items: center; padding: 32px 20px; }
    .footer__col {align-items: center;}
    .footer__payments { min-width: 0; width: 100%; max-width: 360px; }
  }
