.footer-new {
    background-color: #0b0b0b;
    color: #ffffff;
    padding: 5rem 8% 2rem;
    font-family: inherit;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container-new {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-left {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
}

.footer-col-left .footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-desc-text {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item i {
    color: #a00000;
    margin-top: 4px;
}

.footer-col-links {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.footer-link-group {
    min-width: 130px;
}

.footer-link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-group a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link-group a:hover {
    color: #ffffff;
}

.footer-bottom-row {
    display: flex;
    justify-content: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
}

.social-icons-new {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-circle:hover {
    background-color: #a00000;
    border-color: #a00000;
}

@media (max-width: 1024px) {
    .footer-container-new {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-col-links {
        justify-content: space-between;
        width: 100%;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-col-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom-row {
        justify-content: center;
    }
}

/* --- NEW SUBSCRIBE SECTION --- */
.subscribe-section-new {
    background-color: #000000;
    padding: 6rem 8%;
    text-align: center;
}

.subscribe-container-new {
    max-width: 700px;
    margin: 0 auto;
}

.subscribe-container-new h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.subscribe-container-new p {
    color: #a1a1aa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.subscribe-form-new {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form-new input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    background: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 2px;
}

.subscribe-form-new input:focus {
    outline: 2px solid #a00000;
}

.btn-sub-submit-new {
    background-color: #ffffff;
    color: #000000;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-sub-submit-new:hover {
    background-color: #e4e4e7;
}