/* Footer New */
.footer-new {
    background-color: #0a2540;
    padding: 80px 0 0;
    color: #94a3b8;
}

.footer-main {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

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

/* Footer Brand Column */
.footer-brand-col {
    max-width: 400px;
}

.footer-logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* .footer-logo-new i {
    font-size: 32px;
    color: #38bdf8;
} */

.footer-logo-new span {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.footer-brand-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
}

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

.newsletter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #1e293b;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #38bdf8;
    background: rgba(15, 23, 42, 0.8);
}

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

.newsletter-btn {
    background: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #7dd3fc;
    transform: translateY(-2px);
}

.newsletter-btn i {
    font-size: 14px;
}

/* Footer Links Columns */
.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links-new a:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

/* Footer Contact Column */
.footer-contact-info {
    color: #94a3b8;
}

.footer-address {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-contact-item strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-contact-item p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-3px);
    border-color: #38bdf8;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

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

    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

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

    .newsletter-input {
        border-radius: 8px;
        border-right: 1px solid #1e293b;
    }

    .newsletter-btn {
        border-radius: 8px;
        justify-content: center;
    }
}