/* Dropdown Menus */
.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    flex-direction: column;
    padding: 10px 0;
    gap: 0 !important;
}
.dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #333 !important;
    font-weight: 500 !important;
}
.dropdown-menu li a:hover { background-color: #f8f9fa; color: #005b9f !important; }

/* --- MODERN DISCLAIMER MODAL --- */
.modern-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 32, 91, 0.6); /* Air Seychelles deep blue tint */
    backdrop-filter: blur(12px); /* Glassmorphism blur */
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease; /* Smooth fade out */
}

.modern-modal-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    animation: modalSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-logo {
    height: 45px;
    margin-bottom: 20px;
}

.modern-modal-card h2 {
    color: #00205b; /* Deep corporate blue */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-badge {
    display: inline-block;
    background: #e3000f; /* Red accent from the logo */
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.modal-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-modern-primary {
    background: #0067b1; /* Air Seychelles light blue */
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 103, 177, 0.3);
}

.btn-modern-primary:hover {
    background: #005b9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 103, 177, 0.4);
}

.btn-modern-secondary {
    background: transparent;
    color: #0067b1;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    background: #f0f7fc;
}

.modal-footer-text {
    margin-top: 25px;
    font-size: 12px;
    color: #aaa;
}

/* Footer Updates */
.social-icons a { color: white; font-size: 24px; margin-right: 15px; }
.social-icons a:hover { color: #ccc; }
.footer-credits {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    font-size: 14px;
}
.footer-credits a { font-weight: bold; text-decoration: underline; }
