/* Advanced Footer Styling - FULL RESTORATION */
.footer-section-area {
    background-color: var(--theme-2) !important; 
    color: #fff !important;
    padding-top: 120px !important; 
    padding-bottom: 0;
    position: relative;
    overflow: visible !important; 
    border-radius: 50px 50px 0 0;
    z-index: 5;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 40px;
    padding-bottom: 50px;
}

.footer-widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    display: inline-block;
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 15px;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-btn {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    background-color: var(--theme); 
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* About Section */
.footer-logo img {
    max-width: 200px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 20px;
}

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

.footer-social-links a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: var(--theme-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background-color: var(--theme);
    color: #fff;
}

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

.footer-links-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-links-list li i {
    font-size: 12px !important;
    color: #FFD700 !important; 
    margin-right: 10px;
}

.footer-links-list li a {
    color: rgba(255,255,255,0.9) !important;
    font-size: 16px;
    text-decoration: none;
}

/* Contact Bar */
.footer-contact-bar {
    background-color: #E13833; 
    border-radius: 20px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px; 
    margin-top: 20px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.contact-bar-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.3);
    margin-right: 25px;
    padding-right: 25px;
}

.contact-bar-icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #E13833;
}

.contact-bar-info h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-bar-info p, .contact-bar-info a {
    font-size: 16px;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 20px;
    font-size: 14px;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact-bar { flex-direction: column; align-items: flex-start; gap: 20px; padding: 25px; }
    .contact-bar-item { border-right: none !important; width: 100%; }
}

@media (max-width: 575px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; gap: 10px; }
}