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

.footer {
    background: #1E312F;
    color: #CCCCCC;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr;
    gap: 48px;
    padding-bottom: 40px;
}

/* Column 1: Company Info */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.footer-company-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #CCCCCC;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.footer-registration,
.footer-certificate {
    font-size: 11px;
    color: #CCCCCC;
    line-height: 1.6;
    font-weight: 400;
}

.footer-trust-badge {
    display: inline-block;
    margin-top: 8px;
    width: fit-content;
}

.trust-badge-image {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Column 2: Contact Us */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    color: #CCCCCC;
    stroke: currentColor;
    fill: none;
}

.footer-contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-size: 11px;
    font-weight: 400;
    color: #CCCCCC;
    letter-spacing: 0.2px;
}

.footer-contact-value {
    font-size: 12px;
    color: var(--color-white);
    line-height: 1.6;
}

.footer-contact-value a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact-value a:hover {
    color: #E0E0E0;
}

/* Column 3: Download App */
.footer-download {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-download .footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-app-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.btn-app-download {
    background: #2d2d44;
    color: var(--color-white);
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition);
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.btn-app-download:hover {
    background: #3d3d54;
}

.btn-app-download .app-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-white);
}

.btn-app-download .app-text {
    flex: 1;
    text-align: left;
}

/* Column 4: Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-social .footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-image {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-contact-item {
        flex-direction: column;
        gap: 8px;
    }

    .footer-contact-icon {
        align-self: flex-start;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}
