/* Footer */
.site-footer {
    background: #2d3748;
    color: #e5e7eb;
    padding: 60px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer CTA */
.footer-cta {
    margin-top: 8px;
}

.cta-text {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 12px 0;
}

.footer-cta-button {
    display: inline-block;
    padding: 10px 24px;
    background: #fbbf24;
    color: #1f2937;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 20px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-social {
        margin-bottom: 20px;
    }

    .footer-cta-button {
        width: 100%;
        text-align: center;
        max-width: 250px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .site-footer {
        padding: 40px 16px 0;
    }

    .footer-top {
        gap: 28px;
    }

    .footer-logo img {
        height: 36px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 14px;
    }
}
