/**
 * Footer Styles
 */

.mafrosha-footer {
    background: #1f2937;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 60px;
}

/* Footer CTA */
.footer-cta {
    background: var(--mfr-gradient);
    padding: 50px 20px;
    color: #fff;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.cta-grid h3 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 10px;
}

.cta-grid p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: #fff;
    color: var(--mfr-purple) !important;
}

.cta-btn.primary:hover {
    background: var(--mfr-yellow);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer Main */
.footer-main {
    padding: 60px 20px 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h4.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--mfr-gradient);
    border-radius: 2px;
}

.footer-about h3,
.footer-logo h3 {
    color: #fff;
    margin: 0 0 15px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-link:hover {
    background: var(--mfr-gradient);
    transform: translateY(-3px);
    color: #fff;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-menu a:hover {
    color: var(--mfr-yellow);
    padding-right: 5px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--mfr-yellow);
}

/* Newsletter */
.footer-newsletter {
    margin-top: 25px;
}

.footer-newsletter h5 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--mfr-gradient);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Payment Methods */
.footer-payments {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payments .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payments-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

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

    .footer-payments .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
    }
}
