
/* Reset and Base Styles */


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



/* Footer Styles */
.footer {
    background: #139a8a;
    color: #fff;
    margin-top: 50px;
}

.footer-top {
    padding: 40px 0 4px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

/* Add vertical border to first three widgets */
.footer-widget:nth-child(1),
.footer-widget:nth-child(2),
.footer-widget:nth-child(3) {
    border-right: 1px solid #ffffff17;
    padding-right: 20px;
}

/* WordPress Widget Titles */
.footer-widget h1,
.footer-widget h2,
.footer-widget h3,
.footer-widget h4,
.footer-widget h5,
.footer-widget h6,
.footer-widget .widget-title,
.footer-widget .widgettitle {
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h1::after,
.footer-widget h2::after,
.footer-widget h3::after,
.footer-widget h4::after,
.footer-widget h5::after,
.footer-widget h6::after,
.footer-widget .widget-title::after,
.footer-widget .widgettitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fbfafa;
    border-radius: 2px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fbfafa;
    border-radius: 2px;
}

.footer-widget p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
}


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

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: #fbfafa;
    padding: 25px 0;
    border-top: 1px solid rgba(156, 17, 22, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}



.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fbfafa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Hide all borders on mobile */
    .footer-widget:nth-child(1),
    .footer-widget:nth-child(2),
    .footer-widget:nth-child(3) {
        border-right: none;
        border-bottom: none;
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    
    
    .widget-title {
        text-align: center;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 20px 0 10px;
    }
    
    .footer-widgets {
        gap: 25px;
    }
    
    
}