/* Footer Styles - Clean & Professional */
.footer {
    background-color: #fafafa;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid var(--border-light);
}

/* Newsletter Section */
.footer-newsletter {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-light);
}

.newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.newsletter-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #e09100;
}

/* Main Footer */
.footer-main {
    padding: 60px 0 40px;
}

.footer-widget .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-widget .footer-logo i {
    font-size: 28px;
    color: var(--primary);
}

.footer-widget .footer-logo span {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.footer-about {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-widget h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    background-color: var(--white);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.design-credit {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.design-credit span {
    color: var(--primary);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .newsletter-content {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .newsletter-form .form-group {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}