 /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .popup-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f7941d;
        }

        .popup-header h3 {
            color: #333;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-header h3 i {
            margin-right: 10px;
            color: #f7941d;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: #f7941d;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f7941d;
        }

        .form-group.readonly input {
            background-color: #f8f9fa;
            color: #666;
            cursor: not-allowed;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: #f7941d;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #e68416;
        }

        /* Enhanced Success Popup Styles */
        .success-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            backdrop-filter: blur(2px);
        }

        .success-popup.active {
            display: flex;
        }

        .success-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 0;
            border-radius: 16px;
            width: 90%;
            max-width: 480px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: successSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        @keyframes successSlideIn {
            from {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .success-header {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px 30px 20px;
            text-align: center;
            position: relative;
        }

        .success-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
        }

        .success-icon-wrapper {
            display: inline-block;
            margin-bottom: 15px;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            animation: successIconPulse 1s ease-in-out;
            position: relative;
        }

        .success-icon::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border-radius: 50%;
            background: linear-gradient(135deg, #28a745, #20c997);
            opacity: 0.3;
            animation: successIconRing 2s infinite;
        }

        @keyframes successIconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes successIconRing {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        .success-icon i {
            font-size: 28px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .success-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 8px;
            letter-spacing: -0.5px;
        }

        .success-subtitle {
            font-size: 16px;
            color: #6c757d;
            margin-bottom: 0;
            font-weight: 500;
        }

        .success-body {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 30px;
        }

        .success-message {
            font-size: 16px;
            color: #495057;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .success-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .success-btn {
            background: linear-gradient(135deg, #f7941d, #e68416);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 100px;
            position: relative;
            overflow: hidden;
        }

        .success-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .success-btn:hover::before {
            left: 100%;
        }

        .success-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
        }

        .success-btn:active {
            transform: translateY(0);
        }

        .success-footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 30px;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .success-footer p {
            font-size: 14px;
            color: #6c757d;
            margin: 0;
            line-height: 1.4;
        }

        .success-footer .contact-infopopup {
            margin-top: 8px;
            font-weight: 600;
            color: #f7941d;
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .success-content {
                width: 95%;
                margin: 20px;
            }
            
            .success-header,
            .success-body,
            .success-footer {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .success-title {
                font-size: 20px;
            }
            
            .success-actions {
                flex-direction: column;
            }
            
            .success-btn {
                width: 100%;
            }
        }