/* ============================================
   Footer Styles - SEO-compliant
   ============================================ */

.main-footer {
    background-color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgb(47, 47, 47);
    margin-bottom: 20px;
}

/* ============================================
   Contacts Column
   ============================================ */
.footer-address {
    font-style: normal;
    margin-bottom: 15px;
}

.footer-contact-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgb(47, 47, 47);
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item a {
    color: rgb(47, 47, 47);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ac10ea;
}

.contact-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.footer-support {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-top: 10px;
}

.footer-support a {
    color: #ac10ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-support a:hover {
    text-decoration: underline;
}

/* ============================================
   Brand Column (Center)
   ============================================ */
.footer-brand {
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Subscribe Column
   ============================================ */
.footer-subscribe {
    align-items: flex-start;
}

.footer-subscribe-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.5;
}

.subscribe-form {
    width: 100%;
    margin-bottom: 20px;
}

.subscribe-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgb(47, 47, 47);
    display: block;
    margin-bottom: 8px;
}

.subscribe-input-group {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    outline: none;
    flex: 1;
    transition: border-color 0.3s ease;
}

.subscribe-input:focus {
    border-color: #ac10ea;
}

.subscribe-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    background-color: #ac10ea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #8a0dc2;
}

/* ============================================
   Social Links
   ============================================ */
.footer-social-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgb(47, 47, 47);
    margin: 20px 0 15px;
}

.footer-social-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-link-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgb(47, 47, 47);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link-item a:hover {
    color: #ac10ea;
}

/* ============================================
   Footer Bottom
   ============================================ */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.footer-legal-nav {
    display: flex;
    gap: 20px;
}

.legal-link-item {
    margin: 0;
}

.legal-link-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link-item a:hover {
    color: #ac10ea;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        order: -1;
    }
}

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

    .footer-brand {
        order: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal-nav {
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-input-group {
        flex-direction: column;
    }

    .footer-social-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 0 15px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-contact-item {
        font-size: 13px;
    }
}
