/* Enhanced Footer Styling */

#footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

/* Trust Badge */
.trust-badge {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: -2rem -1rem 2rem;
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    display: inline-block;
    background: white;
    color: #28a745;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-right: 0.5rem;
    font-weight: bold;
}

.trust-text {
    font-size: 1.1rem;
}

/* Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Three Column Layout */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-column a:hover {
    color: #667eea;
    transform: translateX(3px);
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-info {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-info em {
    font-style: normal;
    color: #555;
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    padding: 1rem 0;
}

.powerby {
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-column h4 {
        font-size: 1rem;
    }

    .trust-text {
        font-size: 1rem;
    }

    .footer-column a:hover {
        transform: none;
    }

    .trust-badge {
        margin: -2rem -1rem 1.5rem;
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    #footer {
        padding: 1.5rem 0 1rem;
    }

    .trust-text {
        font-size: 0.9rem;
    }

    .footer-info p {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    #footer {
        background-color: #1a1a1a;
        border-top-color: #333;
    }

    .footer-column h4 {
        color: #f0f0f0;
        border-bottom-color: #764ba2;
    }

    .footer-column a {
        color: #aaa;
    }

    .footer-column a:hover {
        color: #a78bfa;
    }

    .footer-info {
        color: #999;
    }

    .footer-info em {
        color: #bbb;
    }

    .copyright {
        color: #888;
    }

    .footer-bottom {
        border-top-color: #333;
    }

    .powerby {
        color: #666;
        border-top-color: #2a2a2a;
    }
}