/* Footer Component Styles */
:root {
    --primary-color: #ff7a59;
    --secondary-color: #ff8f73;
    --text-color: #2c3e50;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

.modern-footer {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand img {
    transition: transform 0.3s ease;
}

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

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-made-with {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.footer-made-with i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: none;
}

.footer-social-icon:hover {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 122, 89, 0.1);
    text-decoration: none;
}


@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 20px 0;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

    /* Ensure 2-column layout for footer sections */
    .modern-footer .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }

    .footer-heading {
        text-align: left;
        margin-top: 30px;
        font-size: 1rem;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .footer-heading:first-of-type {
        margin-top: 0;
    }

    .footer-links {
        text-align: left;
        padding-left: 0;
        margin-bottom: 0;
    }

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

    .footer-links a {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-made-with {
        justify-content: center;
    }
}