/* Custom Footer Styles - Easy Funds 4 You */

.footer-area {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.footer-area .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-top: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 15px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-pera p {
    color: #b8c5d1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer-tittle h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-tittle h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #409645, #52c41a);
    border-radius: 2px;
}

.footer-tittle ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-tittle ul li {
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.footer-tittle ul li:hover {
    transform: translateX(5px);
}

.footer-tittle ul li a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 18px;
}

.footer-tittle ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #409645;
    transition: all 0.3s ease;
}

.footer-tittle ul li a:hover {
    color: #409645;
    padding-left: 25px;
}

.footer-tittle ul li a:hover::before {
    left: 5px;
}

/* Contact Info Styles */
.footer-contact-info {
    margin-top: 12px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #b8c5d1;
    font-size: 14px;
}

.footer-contact-info .contact-item i {
    color: #409645;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 2px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-info .contact-item a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-item a:hover {
    color: #409645;
}

/* Social Media Styles */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8c5d1;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: #409645;
    color: #ffffff;
    transform: translateY(-5px);
    border-color: #409645;
    box-shadow: 0 5px 15px rgba(64, 150, 69, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.footer-copy-right p {
    color: #b8c5d1;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.footer-copy-right p i {
    color: #e74c3c;
    margin: 0 5px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-copy-right p a {
    color: #409645;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-copy-right p a:hover {
    color: #52c41a;
    text-decoration: underline;
}

/* Newsletter Section (if added) */
.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    width: 100%;
    margin-bottom: 10px;
}

.footer-newsletter input::placeholder {
    color: #b8c5d1;
}

.footer-newsletter button {
    background: #409645;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.footer-newsletter button:hover {
    background: #52c41a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 150, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-top {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .footer-pera p {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-tittle {
        margin-bottom: 25px;
    }
    
    .footer-copy-right {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding-top: 35px;
        padding-bottom: 25px;
    }
    
    .footer-tittle h4 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-social {
        margin-top: 12px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-contact-info .contact-item {
        margin-bottom: 10px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .footer-top {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    
    .footer-logo img {
        max-width: 120px;
        margin-bottom: 12px;
    }
    
    .footer-pera p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-tittle h4 {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .footer-tittle ul li {
        margin-bottom: 6px;
    }
    
    .footer-tittle ul li a {
        font-size: 13px;
        padding-left: 16px;
    }
    
    .footer-contact-info .contact-item {
        margin-bottom: 8px;
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-copy-right p {
        font-size: 12px;
    }
}

