/* ===== FOOTER STYLING ===== */
footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border-top: 1px solid #eee;
}

footer hr {
    border: none;
    height: 3px;
    background-color: #d4af37; /* Gold accent */
    width: 50px;
    margin: 0 auto 20px auto;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

footer a {
    color: #800000; /* Maroon */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

footer a:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* ===== DATA PRIVACY MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999; /* Higher than navbar */
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 550px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-10%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    color: #800000;
    margin-top: 0;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.modal-content p {
    line-height: 1.6;
    color: #444;
}

.btn-close {
    background-color: #800000;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-close:hover {
    background-color: #a00000;
}