 /* -------------------------------
            DROPDOWN FIX
        ------------------------------- */
 .dropdown>a::after {
     content: "" !important;
 }

 .dropdown-menu {
     display: none !important;
     position: absolute !important;
     top: 35px;
     left: 0;
     background: #fff !important;
     border: 1px solid #ddd !important;
     padding: 10px 15px !important;
     min-width: 180px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
     z-index: 9999;
 }

 .dropdown:hover .dropdown-menu {
     display: block !important;
 }

 /* -------------------------------
            COMPLAINT PAGE SECTION
        ------------------------------- */
 .complaint-section {
     width: 100%;
     padding: 80px 0;
     background-image: url('images/png/4.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .complaint-item {
     width: 80%;
     max-width: 700px;
     background: #f7f9fc;
     padding: 22px 25px;
     border-radius: 12px;
     text-align: center;
     font-size: 22px;
     color: #0a1a3a;
     font-weight: 600;
     cursor: pointer;
     margin: 0 auto 20px auto;
     box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border: 1px solid #e5eef4;
 }

 .complaint-item i {
     margin-right: 10px;
     color: #0095bb;
     font-size: 28px;
 }

 .complaint-item:hover {
     background: #007ea8;
     color: #fff !important;
     transform: translateY(-4px);
     box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
 }

 .complaint-item:hover i {
     color: #fff !important;
 }

 /* -------------------------------
                POPUP STYLING
        ------------------------------- */
 .popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.65);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 99999;
     animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .popup-box {
     background: #fff;
     padding: 0;
     width: 90%;
     max-width: 700px;
     border-radius: 14px;
     position: relative;
     overflow: hidden;
     max-height: 90vh;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
     transform: scale(0.85);
     animation: zoomIn 0.25s ease forwards;
 }

 @keyframes zoomIn {
     from {
         transform: scale(0.85);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .popup-header {
     background: linear-gradient(90deg, #0095bb, #007a92);
     padding: 18px 25px;
     color: white;
     font-size: 22px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .popup-header i {
     font-size: 26px;
 }

 .popup-content {
     padding: 25px;
     border-top: 1px solid #e5e5e5;
 }

 .popup-content p,
 .popup-content li {
     font-size: 17px;
     line-height: 1.7;
     color: #333;
 }

 .close-btn {
     position: absolute;
     top: 14px;
     right: 18px;
     font-size: 28px;
     background: white;
     border: none;
     border-radius: 50%;
     width: 34px;
     height: 34px;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #333;
     cursor: pointer;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: 0.2s;
 }

 .close-btn:hover {
     background: #ff4d4d;
     color: #fff;
 }