/* ========== FOOTER STYLING ========== */

.footer {
    background: #0F172A;
    color: #e2e8f0;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Section Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* About Section */
.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.social-icon:hover {
    background: #f97316;
    color: white;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f97316;
    margin-left: 8px;
}

/* Contact Info */
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: #f97316;
    margin-top: 2px;
}

.contact-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.newsletter-desc {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.newsletter-form button {
    padding: 12px 30px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
}

.footer-bottom-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f97316;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }

    .footer-section {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

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

    .newsletter-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-links {
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .contact-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
        margin-top: 40px;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-content {
        gap: 20px;
        padding: 30px 0;
    }

    .footer-section {
        padding-bottom: 15px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-item svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-value {
        font-size: 13px;
    }

    .newsletter-section {
        background: rgba(249, 115, 22, 0.05);
        border: 1px solid rgba(249, 115, 22, 0.2);
        padding: 20px 16px;
        border-radius: 8px;
        margin-bottom: 20px;
        text-align: center;
    }

    .newsletter-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .newsletter-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .newsletter-form input {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .newsletter-form button {
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        min-height: 40px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 12px;
    }

    .copyright {
        font-size: 12px;
        width: 100%;
    }

    .footer-bottom-links {
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }
}