/* FIX FOR MOBILE MENU */
@media (max-width: 991px) {
    .drawer,
    .drawer-nav,
    .mobile-menu-container,
    [class*="drawer-"] {
        z-index: 999999 !important;
    }
    
    .drawer-open .privacy-content,
    .drawer-open .privacy-contact-light,
    .drawer-open .privacy-card {
        z-index: 1 !important;
    }
    
    .drawer-overlay {
        z-index: 99999 !important;
    }
}

header {
    z-index: 99999 !important;
}

/* Privacy Page Specific Styles */
.privacy-content {
    background: #ffffff;
    border-radius: 30px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 60px 50px;
    box-shadow: 0 20px 40px -15px rgba(13,31,60,0.15);
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eef2f6;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title-privacy {
    font-size: 32px;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid #f28b38;
}

/* Cards */
.privacy-card {
    background: #f9fafc;
    border-radius: 20px;
    padding: 35px;
    margin: 35px 0;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(13,31,60,0.1);
}

.privacy-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-card h5 i {
    color: #f28b38;
    font-size: 26px;
}

/* Alert */
.privacy-alert {
    background: rgba(242, 139, 56, 0.08);
    border-left: 5px solid #f28b38;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.privacy-alert strong {
    color: #0D1F3C;
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

/* Two Column */
.privacy-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.privacy-col {
    flex: 0 0 50%;
    padding: 0 15px;
}

/* Cookie Notice Box */
.cookie-notice-box {
    background: linear-gradient(135deg, #0B1F33 0%, #0A1729 100%);
    border-radius: 20px;
    padding: 35px;
    margin: 35px 0;
    color: #eef2f6;
    border: 1px solid #1E3B5C;
    position: relative;
    overflow: hidden;
}

.cookie-notice-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30,121,228,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cookie-notice-box h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-notice-box h4 i {
    color: #1E79E4;
}

.cookie-badge {
    display: inline-block;
    background: rgba(30,121,228,0.2);
    color: #1E79E4;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 15px;
}

.cookie-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    flex: 1 1 200px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #1E3B5C;
}

.cookie-type strong {
    color: #1E79E4;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.cookie-type p {
    color: #C0D3E6;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cookie-pref-link {
    color: #1E79E4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.cookie-pref-link:hover {
    color: #f28b38;
    text-decoration: none;
}

/* Contact Section - Light Version */
.privacy-contact-light {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafc 100%);
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 50px 45px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(13,31,60,0.08);
    position: relative;
    overflow: hidden;
}

.privacy-contact-light::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242,139,56,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.privacy-contact-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(23,110,165,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f28b38 0%, #f9a826 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(242,139,56,0.3);
}

.contact-icon i {
    font-size: 36px;
    color: white;
}

.privacy-contact-light h3 {
    font-size: 30px;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.privacy-contact-light p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f28b38;
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(242,139,56,0.3);
}

.contact-btn:hover {
    background: #0D1F3C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13,31,60,0.2);
    text-decoration: none;
}

.contact-btn i {
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-content {
        padding: 40px 30px;
    }
    .section-title-privacy {
        font-size: 28px;
    }
    .privacy-contact-light {
        padding: 40px 30px;
    }
    .privacy-contact-light h3 {
        font-size: 26px;
    }
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    .contact-icon i {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .privacy-content {
        padding: 30px 20px;
        border-radius: 20px;
        z-index: 5;
    }
    .section-title-privacy {
        font-size: 24px;
        padding-left: 15px;
    }
    .privacy-card {
        padding: 25px;
    }
    .privacy-card h5 {
        font-size: 20px;
    }
    .privacy-row {
        flex-direction: column;
    }
    .privacy-col {
        flex: 0 0 100%;
    }
    .privacy-contact-light {
        padding: 35px 20px;
        z-index: 5;
    }
    .privacy-contact-light h3 {
        font-size: 22px;
    }
    .privacy-contact-light p {
        font-size: 16px;
    }
    .contact-btn {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
    }
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    .contact-icon i {
        font-size: 26px;
    }
    .cookie-types {
        flex-direction: column;
        gap: 10px;
    }
}