/* Footer Main Styles */
.footer-main {
    background-color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.footer-main a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-main a:hover {
    padding-left: 5px;
    text-decoration: none !important;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}

/* Footer Content */
.footer-main-content {
    padding: 3rem 0;
}

/* Footer Headings */
.footer-main h5 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-main h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--palmiye-primary, #FFD700);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff !important;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    color: var(--palmiye-primary, #FFD700);
}

/* Social Icons */
.social-links .btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
}

.social-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: var(--palmiye-primary, #FFD700) !important;
    color: var(--primary-text, #000) !important;
}

/* Contact Info */
.contact-info i {
    font-size: 1.2rem;
    color: var(--palmiye-primary, #FFD700);
    margin-right: 1rem;
    min-width: 20px;
}

.contact-info p, .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: #4e9525 !important;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #111;
    padding: 1rem 0;
    border-top: 1px solid #2d2d2d;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: #4e9525 !important;
    text-decoration: none;
}

/* Payment Methods */
.payment-methods img {
    height: 18px;
    margin-left: 10px;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-main .col-md-6, 
    .footer-main .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer-main-content {
        padding: 2rem 0;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        text-align: center;
    }
    
    .footer-main h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
